when checkbox is checked but after filter why unchecked in asp.net using telerik grid filter using telerik radgrid.
Loading
when checkbox is checked but after filter why unchecked in asp.net using telerik grid filter using telerik radgrid.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Oct 16, 2022, 2:36 PM
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.