Initialize Edit Single Row Mode
How it works
Initializing the editor in Edit Single Row Mode
type ClientConfig = {
workspace?: {
editSingleRow?: boolean
// ....
}
// ....
}
const beeConfig: ClientConfig = {
workspace:{
editSingleRow: true
// ....
}
// ....
}
// Create the instance
function BeePlugin.create(token, beeConfig, (beePluginInstance) => {
//....
beePluginInstance.start(template, { shared: false })
}

Implementing the Save action
Example:
Example:
Merging saved rows in existing messages
Last updated
Was this helpful?

