[xwiki-users] Todos application display
I'm as green as the grass itself with xWiki. This is from the Todos Application. What do I need to do to have the display rendered correctly instead of seeing all the HTML tags ? Thanks. <http://xwiki.475771.n2.nabble.com/file/n7586260/todos1.png> -- View this message in context: http://xwiki.475771.n2.nabble.com/Todos-application-display-tp7586260.html Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi Gilles, the ToDo app might need a little bit of renovation .... Anyway, the fix is to go the the main page of the application (where you see the HTML in the table). then edit this either in the "Wiki" editor, or use the "Source" tab of the WYSIWYG Editor, and then look for the column definitions of the LiveTable listing the ToDo entries. That should look like: #set($columnsProperties = { "doc.name" : { "type" : "none", "link" : "none", "html" : "true", "sortable":false }, "TargetDate" : { "type" : "text" , "size" : 20, "link" : "view"}, "Assignee" : { "type" : "text", "link" : "view"}, "Description" : { "type" : "text" }, "_actions": { "actions": ["copy","delete","rename","rights"]} }) What is missing here is to mark the "Description" as HTML; that line should read: "Description" : { "type" : "text", "html": "true" }, Docs on the LiveTable macro here: http://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro without that I would have been at loss how to fix it ;) Hope this helps, Clemens
I'm as green as the grass itself with xWiki. This is from the Todos Application. What do I need to do to have the display rendered correctly instead of seeing all the HTML tags ?
Thanks.
<http://xwiki.475771.n2.nabble.com/file/n7586260/todos1.png>
-- View this message in context: http://xwiki.475771.n2.nabble.com/Todos-application-display-tp7586260.html Sent from the XWiki- Users mailing list archive at Nabble.com. _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
mit freundlichen Grüßen Clemens Klein-Robbenhaar -- Clemens Klein-Robbenhaar Software Development EsPresto AG Breite Str. 30-31 10178 Berlin/Germany Tel: +49.(0)30.90 226.763 Fax: +49.(0)30.90 226.760 [email protected] HRB 77554 B - Berlin-Charlottenburg Vorstand: Maya Biersack, Peter Biersack Vorsitzender des Aufsichtsrats: Dipl.-Wirtsch.-Ing. Winfried Weber Zertifiziert nach ISO 9001:2008
Hi Clemens, Well, I would have looked for that forever. This worked as I expected. Thanks for the tip. I know nothing of these wiki things so I start from way way back. Have a good day, Gilles
Date: Tue, 23 Jul 2013 18:49:52 +0200 From: [email protected] To: [email protected] Subject: Re: [xwiki-users] Todos application display
Hi Gilles,
the ToDo app might need a little bit of renovation ....
Anyway, the fix is to go the the main page of the application (where you see the HTML in the table). then edit this either in the "Wiki" editor, or use the "Source" tab of the WYSIWYG Editor, and then look for the column definitions of the LiveTable listing the ToDo entries.
That should look like:
#set($columnsProperties = { "doc.name" : { "type" : "none", "link" : "none", "html" : "true", "sortable":false }, "TargetDate" : { "type" : "text" , "size" : 20, "link" : "view"}, "Assignee" : { "type" : "text", "link" : "view"}, "Description" : { "type" : "text" }, "_actions": { "actions": ["copy","delete","rename","rights"]} })
What is missing here is to mark the "Description" as HTML; that line should read:
"Description" : { "type" : "text", "html": "true" },
Docs on the LiveTable macro here: http://extensions.xwiki.org/xwiki/bin/view/Extension/Livetable+Macro without that I would have been at loss how to fix it ;)
Hope this helps, Clemens
I'm as green as the grass itself with xWiki. This is from the Todos Application. What do I need to do to have the display rendered correctly instead of seeing all the HTML tags ?
Thanks.
<http://xwiki.475771.n2.nabble.com/file/n7586260/todos1.png>
-- View this message in context: http://xwiki.475771.n2.nabble.com/Todos-application-display-tp7586260.html Sent from the XWiki- Users mailing list archive at Nabble.com. _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
mit freundlichen Grüßen Clemens Klein-Robbenhaar
-- Clemens Klein-Robbenhaar Software Development EsPresto AG Breite Str. 30-31 10178 Berlin/Germany Tel: +49.(0)30.90 226.763 Fax: +49.(0)30.90 226.760 [email protected]
HRB 77554 B - Berlin-Charlottenburg Vorstand: Maya Biersack, Peter Biersack Vorsitzender des Aufsichtsrats: Dipl.-Wirtsch.-Ing. Winfried Weber Zertifiziert nach ISO 9001:2008 _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
participants (3)
-
Clemens Klein-Robbenhaar -
Gilles -
Gilles Morin