Widgets
Samples
Demos
Forum
Services
Documentation
clear
get
put
remove
Start
API Reference
storage.session
Methods
put
puts data into the storage
void
put
(
string
name
,
object
value
);
name
string
the data key
value
object
a data item that should be associated with the specified data key
Example
webix.
storage
.
session
.
put
(
'weather'
,
{
temperature
:
23
,
rain
:
false
}
)
;
Back to top