package eliom
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=87e171413ab2714514019b533f3f7ab3
sha512=e3ed10c599dd54bc5d4b1bf67debb7068f439d33e30dd39e5ed0cebbddd700b9765a751e16fa93dbd1fa6d934fbb6b2d1677fce817fbfea70565192a0a7e1025
doc/eliom.client/Eliom_content_core/Html/Custom_data/index.html
Module Html.Custom_data
Source
Type-safe custom data for HTML5. See the <<a_manual chapter="clientserver-html"
fragment="custom_data"|examples in the manual>>
.
Custom data with values of type 'a
.
val create :
name:string ->
?default:'a ->
to_string:('a -> string) ->
of_string:(string -> 'a) ->
unit ->
'a t
Create a custom data field by providing string conversion functions. If the default
is provided, calls to <<a_api project="eliom" subproject="client" |
val Eliom_content.Html.Custom_data.get_dom>>
return that instead of throwing an exception Not_found
.
Create a custom data from a Json-deriving type.
attrib my_data value
creates a HTML5 attribute for the custom-data type my_data
with value value
for injecting it into an a HTML5 tree ( <<a_api | type Eliom_content.Html.elt >>
).
get_dom element custom_data
gets the custom_data
from a JavaScript element
( <<a_api project="js_of_ocaml"|class type Js_of_ocaml.Dom_html.element>>
).
set_dom element custom_data value
sets the custom data attribute for custom_data
of an JavaScript element
( <<a_api project="js_of_ocaml"|class type Js_of_ocaml.Dom_html.element>>
) to value
.