I have a list grid, that has multiples of records, after i remove remove a record, the record is removed initially from the grid, however, when i mouse over any records, the removed record reappears, and it also invalidates the entire grid, meaning that i cannot perform any other actions, such as subsequant removes.
Here is the list grid properties.
alternateRecordStyles: true,
canSort: true,
dragTrackerMode: "record",
canReorderRecords: true,
canDragRecordsOut: false,
canEdit: false,
canRemoveRecords: true,
cellPadding: 3,
cellHeight: 28,
alternateRecordStyles: true,
showEdges: true,
edgeSize: 1,
filterOnKeypress: true,
removeFieldProperties: { width: 28 },
I am using RESTDATASOURCE, the remove event and response from the server is perfect, e.g. returning the primary key of the table, the table datsource has the primary key values set and all seems to be fine.
One thing to note, is that after i refresh the entire page, the record that was removed, is actually remove, from the DB and does not appear in the grid anymore, which is fine, so there is no issue with the removal server side.
Can you point me in some direction here, because i cannot seem to figure out why this is occuring... the consol shows no errors or warnings and i have step debuged my JS file..
Also, If i reorder/sort the record by clicking the column header, the duff record goes again, and never returns on any mouse over events. However i'm still unable to click remove record for remaining records?
Any ideas? pointers here?
Here is the list grid properties.
alternateRecordStyles: true,
canSort: true,
dragTrackerMode: "record",
canReorderRecords: true,
canDragRecordsOut: false,
canEdit: false,
canRemoveRecords: true,
cellPadding: 3,
cellHeight: 28,
alternateRecordStyles: true,
showEdges: true,
edgeSize: 1,
filterOnKeypress: true,
removeFieldProperties: { width: 28 },
I am using RESTDATASOURCE, the remove event and response from the server is perfect, e.g. returning the primary key of the table, the table datsource has the primary key values set and all seems to be fine.
One thing to note, is that after i refresh the entire page, the record that was removed, is actually remove, from the DB and does not appear in the grid anymore, which is fine, so there is no issue with the removal server side.
Can you point me in some direction here, because i cannot seem to figure out why this is occuring... the consol shows no errors or warnings and i have step debuged my JS file..
Also, If i reorder/sort the record by clicking the column header, the duff record goes again, and never returns on any mouse over events. However i'm still unable to click remove record for remaining records?
Any ideas? pointers here?
Comment