comments of ui.spreadsheet, Others Webix Docs
a module for working with comments in cells
object comments;
Example
// adding a comment into the cell B3 of Sheet1
$$("ssheet").comments.add(3, 2, "text", "Sheet1");
Details
The comments module has three self-explanatory methods: add, get and remove.
// getting a comment for the cell B3 of Sheet1
$$("ssheet").comments.get(3, 2, "Sheet1");
// removing a comment from the cell B3 of Sheet1
$$("ssheet").comments.remove(3, 2, "Sheet1");
See also
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.