This is a base class for all widgets that are supposed to be part of the document object model

DOMWidget(...)

Arguments

...

Arguments passed to the inializer

Functions

  • DOMWidget(): The DOM widget constructor function

Super classes

RKernel::HasTraits -> RKernel::Widget -> DOMWidget

Public fields

_model_module

Name of the Javascript module with the model

_model_module_version

Version of the module where the model is defined

_model_name

Name of the Javascript model in the frontend

_dom_classes

A set of character strings that indicate the DOM classes the widget is assigned to

layout

The layout, a "LayoutClass" Widget

Methods

Inherited methods


Method add_class()

Add a class attribute to the DOM element

Usage

DOMWidgetClass$add_class(className)

Arguments

className

Name of the class attribute


Method remove_class()

Remove a class attribute to the DOM element

Usage

DOMWidgetClass$remove_class(className)

Arguments

className

Name of the class attribute


Method has_class()

Check whether the DOM element has a class attribute

Usage

DOMWidgetClass$has_class(className)

Arguments

className

Name of the class attribute


Method clone()

The objects of this class are cloneable with this method.

Usage

DOMWidgetClass$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.