package eliom

  1. Overview
  2. Docs
Advanced client/server Web and mobile framework

Install

dune-project
 Dependency

Authors

Maintainers

Sources

11.0.0.tar.gz
md5=1c1f8e90f27f81f0e7f002e79340d200
sha512=4c4266c2f979e6d23a7ed385d92e3c6513e27e6372e532171a1d03e385c5fb15ad791e23cee22d9411b253526094eba8496d5bd564b1feea8c6ded738cddda24

doc/eliom.client/Eliom_content_core/Html/Custom_data/index.html

Module Html.Custom_dataSource

Type-safe custom data for HTML5. See the <<a_manual chapter="clientserver-html" fragment="custom_data"|examples in the manual>> .

Sourcetype 'a t

Custom data with values of type 'a.

Sourceval 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.

Sourceval create_json : name:string -> ?default:'a -> 'a Deriving_Json.t -> 'a t

Create a custom data from a Json-deriving type.

Sourceval attrib : 'a t -> 'a -> [> `User_data ] attrib

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>> ).

  • returns

    The value encoded in the respective custom data attribute of element, or the default value, if any.

  • raises Not_found

    if the element does not contain the respective custom data attribute and the custom_data was created without default.

Sourceval set_dom : Js_of_ocaml.Dom_html.element Js_of_ocaml.Js.t -> 'a t -> 'a -> unit

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.

OCaml

Innovation. Community. Security.