Use the /collab command on Discord to gain access to the OneJS private repo. The repo offers early access to the latest features and fixes that may not yet be available on the Asset Store. An early preview of OneJS V2 is available on branch onejs-v2. It brings major performance improvements, zero-allocation interop, and a new esbuild workflow.
Menu

Controls

Referencing VisualElements

The JSX association with UI Toolkit VisualElement controls is in the 'jsx.d.ts' file in ScriptLib\definitions

To access the VisualElement, create a 'ref' reference to the Element, then typecast the ref.current.ve as here.

TYPESCRIPT
const tfref = useRef<Dom>();

function onEvent(){
  const tf = tfref.current.ve as TextField;
  log(tf.text);
}

return <textfield ref={tfref} text="foo" />
  • Button
  • TextElement
  • TextField
  • SimpleList
  • DropdownField
  • [[VirtualList|Example---Control---List---VirtualList]] ...