:: Forum >>
add attribute to cell
How would one add a tag or other attribute to a cell?
For example, if the cell at (2,3) is blank, I want to add an attribute
called "tag" or "info" that says "thisFieldWasBlank"
Later, when I go to cell (2,3) I can check the attribute in some manner
obj.cellGetAttribute("tag")
eric juvet
Wednesday, August 9, 2006
You should create new property in the cell model with defineCellProperty() method -
obj.defineCellProperty("tag");
obj.setCellTag("abc", 2, 3);
alert(obj.getCellTag(2, 3));
Alex (ActiveWidgets)
Thursday, August 10, 2006
- getCellTag() and setCellTag() methods will be created automatically by defineCellProperty("tag") call.
Alex (ActiveWidgets)
Thursday, August 10, 2006
This topic is archived.
Back to support forum
Forum search