GWT Datagrid does not show data , but contains it

前端 未结 3 1048
刺人心
刺人心 2020-12-09 05:29

I\'m trying to convert a cellTable into adatagrid, because I want to add a search handler later and therefor I need fixed column headers. At the mo

相关标签:
3条回答
  • 2020-12-09 06:07

    DataGrid requires to be put in a LayoutPanel or Panel that implements the ProvidesResize interface to be visible. ScrollPanel implements that interface.

    Furthermore this chain of LayoutPanels from your DataGrid up to your root element/panel has to be unbroken. That seems to be the case in your panel hierarchy.

    Finally you have to use the RootLayoutPanel instead of the RootPanel to add your LayoutPanels. So did you make sure that you add your SimpleLayoutPanel to the RootLayoutPanel ?

    Also refer to this GWT: DataGrid - set height 100% not rendering properly

    0 讨论(0)
  • 2020-12-09 06:10

    Here are my 2 cents.

    When it comes to render a DataGrid outside of a properly formed "LayoutPanel or Panel that implements the ProvidesResize" tree structure, I found out I always need to keep the following in mind:

    1. As this question explains, the height DataGrid property needs an explicit value, for example, "123px". Without this, DataGrid does not show its data rows (even if they are in the DOM).

    2. If put a DataGrid inside an unfocused DecoratedTabPanel tab, DataGrid.redraw() needs to be called when such tab gets focus . Again, without this, DataGrid does not show its data rows (even if they are in the DOM).

    I hope this helps.

    0 讨论(0)
  • 2020-12-09 06:20

    In my case it was caused by this: DataGrid rows not visible in second tab of TabLayoutPanel

    0 讨论(0)
提交回复
热议问题