问题标签 [gwt-celltable]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
gwt - GWT:注入的 PlaceManager 为空
在下面的代码中,我PlaceManager
在第 4 行注入 a,并尝试placeManager.revealPlace()
在最后一行使用。但是,在那一刻我得到一个空异常。
此外,如果我if(placeManager==null){ Window.alert("Hello"); }
在该行之前添加一个,则会显示警报。
任何想法为什么会发生这种情况?也许是因为它是在FieldUpdater
处理程序中执行的?
谢谢
java - GWT 等待 setVisibleRangeAndClearData 完成
这是 GWT 中经典的“等待 rpc 调用问题”的变体。
我在 GWT 中完成了一个完整的 CRUD 屏幕,调用 RPC 来攻击 Oracle 数据库。它有一个用于搜索条件和结果表的面板,另一个用于详细信息字段。我根据需要交换两者的可见性。
结果表是一个 CellTable,我调用“setVisibleRangeAndClearData”方法来填充表,该表负责分页、列排序等(例如,当我从更新 RPC 调用返回时,我保持我来的范围从)。
我曾经通过将“后代码”放在 RPC 调用的“onSuccess”块中(即交换面板)来进行“同步”,但是当调用“setVisibleRangeAndClearData”时,cellTable 本身会启动另一个 RPC 调用以获取新的我无法控制的数据。所以,发生的事情是我交换了面板(这是立即的),然后用户看到表数据更新,这很难看。
所以问题是:我该如何控制它?当“setVisibleRangeAndClearData”完成时,我如何等待或被调用?
提前致谢,
大卫
gwt - How can I get the text in a EmptyTableWidget in GWT CellTable
My code is
Here I want to get this "No" from CellTable
I tried as cellTable.getEmptyTableWidget()).getElement().getInnerText()
But I don't know how to get it.
Can you help me?
gwt - an error while appending data to CellTable second an consequent times in GWT/GWT Platform
I'm using popup panel of gwt platform and the popup contains two panels on the top panel i have some textboxes and a search button.
and in the second panel contails a cell table which automatically loads some data from db as soon as popup pops out. and from the top panel also i should be able to search for specific data and update the cell table. i'm using the following code to update the CellTable
my code is working fine but when i see the gwt development mode window in eclipse i can see the following error when ever i click on search button.
even though i'm app is working i need to understand why this error is coming,
Thanks,
java - GWT celltable 加载列表进表
我在这里阅读了一个 celltable 的示例,它使用这个结构来加载数据:
如果我有一个简单的字符串列表,如何将我的列表放入这种类型的结构中?
gwt - 带有 CheckBoxes 的 GWT CellTable 获取所有选定的框
我的 GWT Projekt 中有一个 CellTable,每行都有一个 CheckBox。不知何故,我需要遍历 cellTable 中的所有行,并需要检查每行的 CheckBox 是否被选中。
我不知道该怎么做,也找不到任何可以说明如何的东西。
gwt - 分页不适用于 GWT DataGrid
我有一个显示员工详细信息的 DataGrid。例如,每一行对应一个员工(姓名,年龄,工资),姓名+年龄是锚点,工资是纯文本。
到目前为止一切正常,但是由于行数非常高,我的浏览器开始挂起。所以我决定在我的 DataGrid 中使用分页。我做了类似的事情:
现在,我的 pager& 表格在前 25 行中显示良好,但是在单击 pager 表格主体上的下一步时,表格主体会消失,并且一些加载栏会永远显示在主体中。
我还在某处读到,不使用 DataProviders 就无法进行分页。是这样吗?
我在这里看到了分页的例子。它看起来很简单,但在我的情况下使用时我搞砸了。非常感谢任何帮助。我也希望你能提供基本的代码让我继续前进。
谢谢,莫希特
events - 使用向上和向下键时,如何在 GWT CellTable 中获取选定的行?
当用户向上或向下按下键时,我想在 GWT CellTable 中获取选定的行。在我的示例中,我有一个包含三列(ID、名称、日期)的表,并且我已经实现了处理点击事件的代码。单击一行时,我得到选定的对象。现在我想在使用向上和向下箭头键移动表格的行时做同样的事情。
这是我的代码:
谢谢大家。
gwt-celltable - 如何在 GWT 中为 Datagrid 的每个单元格提供工具提示
我有一个 Datagrid,我需要在工具提示中显示每个单元格的值。
如果我使用的是 celltable,那么我可以通过以下方式轻松设置每个单元格的标题。
如果我为 Datagrid 编写了相同的逻辑,它只适用于点击事件。mouseover事件未触发。为什么它不为 Datagrid 开火?实际上我的主要问题是如何为数据网格中的每个单元格设置图块?你还有其他选择吗?请回复。