-
Bug
-
Resolution: Fixed
-
Normal
-
7.0.4
-
Security Level: Jimmy
-
None
Reproducible sample:
<zk> <zscript><![CDATA[ ListModelList model = new ListModelList(); model.add("Dwayne Spielman"); RowRenderer renderer = new RowRenderer() { public void render(Row row, Object obj, int index) { row.appendChild(new Label(obj.toString())); } }; void test() { grid.getChildren().clear(); } void buildGrid() { Auxhead head = new Auxhead(); head.appendChild(new Auxheader()); head.appendChild(new Auxheader("Task1")); head.appendChild(new Auxheader()); grid.appendChild(head); Frozen f = new Frozen(); f.setColumns(1); grid.appendChild(f); Columns columns = new Columns(); Column name = new Column("Name"); name.setWidth("180px"); name.setStyle("text-align:right"); columns.appendChild(name); Column col = new Column(""); col.setWidth("90px"); columns.appendChild(col); grid.appendChild(columns); } ]]></zscript> <vlayout> Scroll the grid to the right. Afterwards focus in textbox and press enter <textbox id="filter" onOK="test()" /> <grid id="grid" model="${model}" rowRenderer="${renderer}" onCreate="buildGrid()"> </grid> </vlayout> </zk>
- relates to
-
ZK-238 Grid with frozen, scrolled then delete frozen, some columns is hidden
- Closed