Special charters in select option.

Special charters in select option.

oxpeopleoxpeople Posts: 1Questions: 0Answers: 0
edited February 2014 in General
I have define the data table has >, >=, <, <= options. during the edit the cell, don't select the right data and can't be save. Anyone has any suggestion.

Here is data column defined.

$('#table1').dataTable({ bJQueryUI: true,
"sPaginationType": "full_numbers"
"aoColumns": [ {"mData":"oper","sTitle":"Operation"}]
}).makeEditable({
"aoColumns": [
{
indicator: 'Saving Operation...',
tooltip: 'Click to select operator',
loadtext: 'loading...',
type: 'select',
onblur: 'submit',
data: "{'':'Please select...', '>':'>','>=':'>=','<':'<','<=':'<'}"
}]

});
This discussion has been closed.