Dear Sir/Madam,
I have a grid. and I am binding this grid clientside from an javascript Array.
but when i bind this grid again with an empty array then grid is showing records correctly but
items are not being clear.
Rad Grid binding code that i have written is as follows:
var seltestRows = new Array();
seltestRows[0] = result.rows[0];
seltestRows[1] = result.rows[1];
Does anyone knows please tell me.
Thanks & Regards
Brijendra Pandey
I have a grid. and I am binding this grid clientside from an javascript Array.
but when i bind this grid again with an empty array then grid is showing records correctly but
items are not being clear.
Rad Grid binding code that i have written is as follows:
var seltestRows = new Array();
seltestRows[0] = result.rows[0];
seltestRows[1] = result.rows[1];
var tableView = $find("<%=gvTest.ClientID %>").get_masterTableView();
tableView.set_dataSource(seltestRows);
tableView.dataBind();
Does anyone knows please tell me.
Thanks & Regards
Brijendra Pandey