package eliom

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Client and shared values

See the <<a_manual chapter="clientserver-language"|manual>> .

type 'a t = 'a

An 'a client value on the client is just an 'a. See also <<a_api subproject="server" text="the abstract representation on the server" | type Eliom_client_value.t >> .

exception Exception_on_server of string

This exception is raised (in Lwt) on the client if a call to a server function <<a_api subproject="server"|val Eliom_client.server_function>> fails (in Lwt) on the server side.

The argument describes the original exception by Printexc.to_string.

Event handlers like <<a_api | Eliom_content.Html.F.a_onclick >> may raise False to cancel the event (as if the JavaScript function returned false).

exception False