Special charters in select option.
Special charters in select option.
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...', '>':'>','>=':'>=','<':'<','<=':'<'}"
}]
});
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.