1
Answer

checkbox is checked but after filter why unchecked in asp.net

Photo of Rajan Kumar

Rajan Kumar

2y
809
1

when checkbox is checked but after filter why unchecked in asp.net using telerik grid filter using telerik radgrid.

Answers (1)

1
Photo of Sachin Singh
NA 55.8k 87.9k 2y

When you do filter you must be doing a postback and at the same time the  checkbox is also doing the postback (firing the Checked/Changed event) (guessing your Checkbox's IsPostback property is set to true) causing the checkbox unchecked.

To overcome this you need to again set the checkbox after doing the filtering.

Next Recommended Forum