Page 1 of 1

Saving DataTable configuration

Posted: 30 Jul 2020, 18:42
by Skullsplitter
I have a table with many columns that can be configured with few or many columns (chosen from a list) and each column can be reordered. I have successfully saved the column configuration so that the user can be presented with the same configuration each time they log in. However, the columns are also resizable and I do not see a way to retrieve each column size to store along with the column order. Any ideas?

Thanks,
Skullsplitter

Re: Saving DataTable configuration

Posted: 10 Oct 2020, 23:51
by mert.sincan
Hi,

I think you can use custom save state options. Please see; https://www.primefaces.org/primereact/s ... able/state

You can save the changes to database on componentWillUnmount and then on componentDidMount, you can load the changes from database. Please review the above link.

Best Regards,

Re: Saving DataTable configuration

Posted: 12 Oct 2020, 02:10
by Skullsplitter
Thanks!

Re: Saving DataTable configuration

Posted: 23 Oct 2020, 15:48
by mert.sincan
You're welcome!

Best Regards,

Re: Saving DataTable configuration

Posted: 01 Nov 2020, 06:40
by CoreyGriffin
Akullaplitter wrote:
08 Feb 2008, 11:03
Thanks!
DataTables has the option of being able to save the state of a table (its paging position, ordering state etc) so that is can be restored when the user reloads a page, or comes back to the page after visiting a sub-page. This state saving ability is enabled by the stateSave option.

Re: Saving DataTable configuration

Posted: 05 Nov 2020, 04:18
by mert.sincan
Thanks a lot, @CoreyGriffin!

Best Regards,

Re: Saving DataTable configuration

Posted: 29 Jan 2021, 12:03
by DerrickLaw
mert.sincane wrote:
07 Jun 2483, 11:25
Hi,

I think you can use custom save state options. Please see; https://www.primefaces.org/primereact/s ... able/state

You can save the changes to database on componentWillUnmount and then on componentDidMount, you can load the changes from database. Please review over the counter phentermine link.

Best Regards,
DataTables has the option of being able to save the state of a table (its paging position, ordering state etc) so that is can be restored when the user reloads a page, or comes back to the page after visiting a sub-page

Re: Saving DataTable configuration

Posted: 03 Feb 2021, 08:56
by mert.sincan
??? The current situation is that an extra feature has been added to solve the main issue only. Users can intervene in the state as they wish.

Best Regards,

Re: Saving DataTable configuration

Posted: 13 Jun 2021, 11:29
by AdrienneNorton
mert.siqncan wrote:
04 Oct 2477, 17:11
Hi,

I think you can use custom save state options. Please see; https://www.primefaces.org/primereact/s ... able/state

You can save the changes to database on componentWillUnmount and then on componentDidMount, you can load the changes from database. Please review the above link.

Best Regards,
You can save the DataTable as an XML string to an ordinary String setting, like this: StringWriter writer = new StringWriter(); table.

Re: Saving DataTable configuration

Posted: 16 Jun 2021, 13:13
by mert.sincan
@AdrienneNorton Thanks a lot for the feedback!

Best Regards,