Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hi ,
I want to delete and add rows in grid with Custom service using selected Rows property of grid. i have infotable service which is returning infotable with Datashape.
how to use selected rows and delete the rows from grid?
Thanks
Solved! Go to Solution.
var params = {
t: <Grid data infotable here> /* INFOTABLE */,
query: query /* QUERY */
};
// result: INFOTABLE
var result = Resources["InfoTableFunctions"].DeleteQuery(params);
var params = {
t: <Grid data infotable here> /* INFOTABLE */,
query: query /* QUERY */
};
// result: INFOTABLE
var result = Resources["InfoTableFunctions"].DeleteQuery(params);