package incr_dom_widgets

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. scroll_margin : Util.Margin.t;
  2. float_header : Util.Float_type.t;
  3. float_first_col : Util.Float_type.t;
  4. height_guess : int;
  5. initial_sort : (Mesa_column.Id.t * Table.Default_sort_spec.Sort_dir.t) option;
  6. classes : string list;
  7. styles : Css.t;
}
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val styles : t -> Css.t
val classes : t -> string list
val initial_sort : t -> (Mesa_column.Id.t * Table.Default_sort_spec.Sort_dir.t) option
val height_guess : t -> int
val float_first_col : t -> Util.Float_type.t
val float_header : t -> Util.Float_type.t
val scroll_margin : t -> Util.Margin.t
module Fields : sig ... end
val create : scroll_margin:Util.Margin.t -> float_header:Util.Float_type.t -> float_first_col:Util.Float_type.t -> height_guess:int -> ?initial_sort:(Mesa_column.Id.t * Table.Default_sort_spec.Sort_dir.t) -> ?classes:string list -> ?styles:Css.t -> unit -> t