Hi All
I am new to telerik amazing controls,and that is the first time for me to use the RadGrid control,In my page i changed the property CommandItemDisplay from 'None' to 'Bottom' to enable the enduser to add new records within the grid as shown on this online demo.
the datasource i used is a method that returns a Datatable.so i bind it to the grid in the page load event as the following
The table i bind to is empty,so when i click the add button in the command row and i used the code exactly provided in the demo for the itemCommand event,sometimes it opens the inster template but most of the time it fires an exception of "Invalid postback or callback argument.",What could be the reason behind that and how can i solve it?? i use Asp.Net 2.0 & Rad controls 2008 Q1.
Thanks
.
I am new to telerik amazing controls,and that is the first time for me to use the RadGrid control,In my page i changed the property CommandItemDisplay from 'None' to 'Bottom' to enable the enduser to add new records within the grid as shown on this online demo.
the datasource i used is a method that returns a Datatable.so i bind it to the grid in the page load event as the following
protected void Page_Load(object sender, EventArgs e) |
{ |
GridSubscribers.DataSource = SubscribersManagement.GetSubcribersByISP(ISP); |
GridSubscribers.DataBind(); |
} |
Thanks
.
