File: state.loaded%28%29.xml

package info (click to toggle)
datatables.js 1.11.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 22,848 kB
  • sloc: javascript: 65,075; xml: 10,712; php: 4,741; sh: 544; makefile: 18
file content (42 lines) | stat: -rw-r--r-- 1,641 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8" ?>
<dt-api group="core">
	<name>state.loaded()</name>
	<summary>Get the table state that was loaded during initialisation.</summary>
	<since>1.10.1</since>

	<type type="function">
		<signature>state.loaded()</signature>
		<description>Get the table state that was loaded during initialisation</description>
		<returns type="object">State saved object. See `dt-api state()` for the object format.</returns>
	</type>

	<description>
		This method is primarily made available for plug-in authors who wish to get the state of a DataTable when it is initialised to restore state saved functionality of their own plug-in.

		The structure of the object returned by this method matches the state object, as defined by `dt-api state()`.
	</description>

	<example title="Listen for DataTables initialisation and get the state"><![CDATA[

$(document).on( 'init.dt', function ( e, settings ) {
	var api = new $.fn.dataTable.Api( settings );
	var state = api.state.loaded();

	// ... use `state` to restore information
} );

]]></example>

	<related type="api">state()</related>
	<related type="api">state.clear()</related>
	<related type="api">state.save()</related>
	<related type="option">stateSave</related>
	<related type="option">stateSaveCallback</related>
	<related type="option">stateLoadCallback</related>
	<related type="option">stateLoadParams</related>
	<related type="option">stateSaveParams</related>
	<related type="option">stateLoaded</related>
	<related type="event">stateLoaded</related>
	<related type="event">stateLoadParams</related>
	<related type="event">stateSaveParams</related>
</dt-api>