我无法对选项进行排序,我不明白为什么。 代码很简单
cliente: {
title: 'Cliente',
options: 'FattureActions.php?action=ragionisociali',
optionsSorting: 'text',
width: '20%'
},
在php页面上
//Get records for ragione_sociale
else if($_GET["action"] == "ragionisociali")
{
//Get records from database
$result2 = mysql_query("SELECT ragione_sociale, id FROM clienti");
//Add all records to an array
$righe = array();
while($row = mysql_fetch_array($result2)) {
$tmp = array();
$tmp['DisplayText'] = $row['ragione_sociale'];
$tmp['Value'] = $row['id'];
$righe[] = $tmp;
}
//Return result to jTable
$jTableResult['Result'] = "OK";
$jTableResult['Options'] = $righe;
print json_encode($jTableResult);
}
问题1: 为什么我不能在sql中使用sytanx命令,如$ result2 = mysql_query(“SELECT ragione_sociale,id FROM clienti order by ragione_sociale”); ?? 问题2: optionsSorting:'text',没有效果
怎么了? 谢谢你的帮助。