Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Child pages (Children Display)
allChildrentrue

A general raw widget is provided in the Helium Rapid DSL. This is used to facilitate general widget development in Helium Rapid.

The All implementations of the raw widget supports two bindings:

...

Code Block
json rawTabContent() {
  json tabContent = "{}";
  // Logic that populates the widget content goes here
  ...
  return tabContent;
}
Code Block
stringDSL_VIEW tabAction(json actionContent) {
  // Logic based on the actionContent goes here
  ...
  return DSL_VIEWS.TheNextView;
}

...