Hi
It’s not the first time that JqxGrid show me not existing data from my database.
WHY?
My source is this
var source =
{
datatype: "json",
datafields: [
{ name: 'id', type: 'int'},
...
{ name: 'livello', type: 'string'}
],
cache: false,
id: 'id',
url: 'url',
updaterow: function (rowid, rowdata, commit) {
...
}
And my grid settings:
var dataAdapter = new $.jqx.dataAdapter(source);
// initialize jqxGrid
$("#jqxgrid").jqxGrid(
{
width: '100%',
height: '100%',
selectionmode: 'multiplerowsextended',
filterable: true,
filtermode: 'excel',
sortable: true,
source: dataAdapter,
theme: theme,
localization: getLocalization(),
groupable: true,
editmode: 'dblclick', //'click', 'dblclick', 'selectedcell'
showstatusbar: true,
columnsresize: true,
columnsreorder: true,
enabletooltips: true,
altrows: true,
I don’t see nothing wrong, but the grid contain old datas that no longer exist.
Infact I clean the database’s table.
HELP