LyteNyte Grid fires events in response to specific user interactions
or when imperative API methods are called. For instance, when a cell
is being edited, the system triggers both onCellEditBegin
.
This guide explores how to respond to events fired by LyteNyte Grid and demonstrates methods for triggering events imperatively when needed.
For a comprehensive list of available events and their triggers, please refer to the Events API Reference Page.
The useLyteNyte
hook returns the LyteNyte Grid state object,
which provides two approaches for listening to events:
useEvent
hook on the state objectapi.eventAddListener
methodIf you're not familiar with the grid state object concept, we strongly recommend reviewing our Getting Started guide first. This guide covers the essential fundamentals needed to effectively utilize LyteNyte Grid.
Whenever possible, we recommend using the useEvent
hook
as it automatically handles event cleanup when components
unmount or dependencies change.
The useEvent
method is a React hook and therefore must follow
all standard hook rules. The following example demonstrates this hook in action:
api.eventAddListener
methodThere may be situations where you need to add an event listener
to LyteNyte Grid outside of a render function. In such cases,
the api.eventAddListener
method provides an alternative approach.
This method adds a listener that will be called whenever the specified event
fires, and returns a function that can be used to remove the listener. Alternatively,
you can call the api.eventRemoveListener
method to remove a previously attached listener.
When using api.eventAddListener
, developers are responsible for implementing proper
cleanup procedures. The example below demonstrates correct usage with appropriate cleanup:
The LyteNyte Grid API provides the eventFire
method that allows developers to manually
trigger an event as though it came from the grid. This is useful when building custom
functionality that should mimic the grid's event behavior.