On 04/12/2013 10:25 PM, Francisco Chacón wrote:
One of my major dudes, is the markup language used for rounduce costumizable? I read the documentation of the languageś elements, but most of them are oriented to desktop visualization, for example the * messagelist * element is a table, but, in my opinion, the table is not practical in a mobile device (needs too much work whit css).
Messages list widget is indeed very desktop-specific and changing it to other HTML element would be very hard. There's a lot of logic (selecting, dragging, threading, sorting, etc.) that depends on TABLE structure. Many actions depends on this and list.js code.
If you really want to do it. You could keep the table, but make it invisible (display:none) and bind to insertrow event to create your own list (and add rows to it). However, you'll still need to write a lot of javascript code to handle all actions on the list. You'll need at least to re-write the whole list.js code.
I'm not sure it is worth a try.