我有具有4列像下方的網格視圖:排序是不工作的IP地址列以ng柵
IP | Name | Status |Value
192.168.1.3 |MAS | UP |x
192.168.1.5 |HGR | UP |Y
192.168.1.10 |UYR |DOWN |Z
192.168.1.7 |IOR |UP |P
我使用納克格框架來顯示這些。這裏的排序不適用於IP地址列,對其他列的工作正常。 我的專欄定義如下: -
columnDefs : [{
field : 'ip',
displayName : 'IP',
width : '25%'
},
{
field : 'name',
displayName : 'NAME',
width : '25%'
},
{
field : 'status',
displayName : 'Status',
width : '25%'
},
{
field : 'value',
displayName : 'Value',
width : '25%'
}];
對此有何想法?
是它給予任何錯誤? – shakib
不,它沒有給出任何錯誤..雖然數據顯示所有的列,但唯一的問題是排序不工作在IP地址列。 –