Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网格中使用 GWT 单元表来维护数据行,我也需要在同一行中的列和其他行之间进行一些事件
例如:
如果我从第一列的组合框中选择了一些值,我需要禁用最后一列中的文本框。
我尝试了很多方法,但未能将这些列连接起来。
CellTable 对于这些类型的交互非常尴尬。您必须在任何时候想要更改任何单元格时重新绘制整个表格。
所以:当第一个单元格发生变化时,更新第二个单元格的状态,并重新绘制表格。
如果可能,请为此界面使用除 CellTable 之外的其他东西,例如 Grid 或 FlexTable。