Jquery Datatable and state saving of fixed column checkbox when using FixedColumns plugin
Jquery Datatable and state saving of fixed column checkbox when using FixedColumns plugin
admirer
Posts: 9Questions: 1Answers: 0
Similar thread: http://datatables.net/forums/discussion/6923/need-help-on-maintaining-the-checkbox-state-when-fixed-columns-enabled/p1
using C# 3.0 data is tranferred to client in the form of table output. Datatable is used to transform it and the plugin used is FixedColumns (latest)
Particulars: First column is a checkbox with state and text bound like: (ASPX code)
[code]
[/code]
Issue: Found that checkbox state is not saved when paging is enabled on the page. When paging is disabled, however there is no issue and the state is getting saved.
All the other checkboxe states are getting saved (visually visible) in this case.
FixedColumn plugin was removed and then it started working (with paging and without paging).
Why is this behaviour happening in Datatable v1.9 with the FixedColumns plugin?
How can I get rid of this?
PS: I tried to update my code with the hints in the thread, but its not helping the cause.
using C# 3.0 data is tranferred to client in the form of table output. Datatable is used to transform it and the plugin used is FixedColumns (latest)
Particulars: First column is a checkbox with state and text bound like: (ASPX code)
[code]
[/code]
Issue: Found that checkbox state is not saved when paging is enabled on the page. When paging is disabled, however there is no issue and the state is getting saved.
All the other checkboxe states are getting saved (visually visible) in this case.
FixedColumn plugin was removed and then it started working (with paging and without paging).
Why is this behaviour happening in Datatable v1.9 with the FixedColumns plugin?
How can I get rid of this?
PS: I tried to update my code with the hints in the thread, but its not helping the cause.
This discussion has been closed.
Replies
I tried to implement the same in a sample aspx page, and the result is same.