-
FEATURED COMPONENTS
First time here? Check out the FAQ!
There is ability to "freeze" columns and rows in Grid and Listbox components according to the frozen component description (books.zkoss.org/wiki/ZKComponentReference/Supplementary/Frozen):
A frozen component to represent frozen "columns" or "rows" in grid, like MS Excel.
In accordance with the source code of the Frozen component (org.zkoss.zul.Frozen
) there is no support for rows freezing:
/**
* Sets the number of rows to freeze.(from top to bottom)
*
* <p>Note: this feature is reserved and not yet implemented.
* @param rows positive only
*/
public void setRows(int rows) {
}
Zul schema zul.xsd also does not have //frozen/@rows
attribute declaration.
I've looked for artifact on zk issue tracker with this problem and found nothing.
The property start
of int
type relates columns freezing and suggests that implemented API is accomplished and there is no place for the atavistic property rows
support...
So, is there any plans to implement this functionality?
Asked: 2014-07-07 19:45:13 +0800
Seen: 13 times
Last updated: Jul 07 '14