- Thank you received: 62
Hi,
I apologize for accidentally deleting a post asking if checkboxes can be inserted into the grid. To do so, a html tags have to be inserted directly into database.
Regarding the right-to-left languages, there are some css classes defined and can be used for this purpose.
Regards
Please Log in or Create an account to join the conversation.
Does this include combo boxes, and the check boxes be sortable in the table according to the data in them?
In other words if some check-boxes are checked will it sort from the boxes that don't. Also, the combo boxes, - will they sort by the alphabetical data within them?
This is an important requirement for my web site, otherwise I would bother you with it.
Please Log in or Create an account to join the conversation.
Hi,
Those checkboxes and comboboxes will be sorted alphabetically according to the value in the database. Table JX will try to compare html tags alphabetically. So the sorting depends on how you build your html tags.
<input type="checkbox" id = "id1" checked="checked" />
<input checked="checked" type="checkbox" id = "id1" />
Please Log in or Create an account to join the conversation.