Automatic set ID for LinkedCellEditor column
2 posts
• Page 1 of 1
Automatic set ID for LinkedCellEditor column
I have a table with a linked cell editor. If I set the display value via
then the ID is not set automatically.
Is it possible to set the ID automatically?
- Code: Select all
book.setValue("PROJ_NAME")
then the ID is not set automatically.
Is it possible to set the ID automatically?
- johnit
- Posts: 23
- Joined: Fri Nov 16, 2012 5:58 pm
Re: Automatic set ID for LinkedCellEditor column
The DataBook doesn't set the values automatically, but the DataBookUtil does:
But be careful, if you set the ID column it needs a linked cell editor (can be the same as for the PROJ_NAME column) too.
The DataBookUtil.setValue method checks if the given column uses a linked cell editor and updates all referenced columns too. If there's no linked cell editor, a simple setValue of the DataBook will be triggered.
- Code: Select all
DataBookUtil.setValue(book, "PROJ_NAME", value);
But be careful, if you set the ID column it needs a linked cell editor (can be the same as for the PROJ_NAME column) too.
The DataBookUtil.setValue method checks if the given column uses a linked cell editor and updates all referenced columns too. If there's no linked cell editor, a simple setValue of the DataBook will be triggered.
-
Support@SIB - Posts: 207
- Joined: Mon Sep 28, 2009 1:56 pm
2 posts
• Page 1 of 1