Infragistics 2010 v3
We have an issue when adding the RowSelectors behavior dynamically. On initial page load, the row selectors appear, however Sorting or Paging the grid will cause them to disappear (even though the grid has successfully sorted/paged). This occurs with both AJAX and non-AJAX.
Thanks.
Hello OasDev2011,
Thank you for posting in our community.
Adding this in Page_Init will work
if (!IsPostBack) { RowSelectors rowSelectors = new RowSelectors(); rowSelectors.Enabled = true; this.WebDataGrid1.Behaviors.Add(rowSelectors); }
if (!IsPostBack)
{
RowSelectors rowSelectors = new RowSelectors();
rowSelectors.Enabled = true;
this.WebDataGrid1.Behaviors.Add(rowSelectors);
}
For any further questions do not hesitate to contact me.
I hope this helps.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support