frozen

Purpose

A frozen component to represent a frozen column or row in grid, like MS Excel.

Examples

<z:grid width="600px">
    <z:frozen columns="2"/>
    <z:columns>
        <z:column width="50px">ID</z:column>
        <z:column width="50px">Priority</z:column>
        <z:column width="50px">Status</z:column>
        <z:column width="150px">Summary</z:column>
        <z:column width="250px">Detail</z:column>
        <z:column width="100px">Group</z:column>
        <z:column width="50px">Assign</z:column>
    </z:columns>
    <z:rows>
        <z:row>
            <z:cell>0001</z:cell>
            <z:cell>1</z:cell>
            <z:cell>closed</z:cell>
            <z:cell>Fix login issue</z:cell>
            <z:cell>Login does not work at all</z:cell>
            <z:cell>Account</z:cell>
            <z:cell>Bob</z:cell>
        </z:row>
        <z:row>
            <z:cell>0002</z:cell>
            <z:cell>3</z:cell>
            <z:cell>open</z:cell>
            <z:cell>Button style broken</z:cell>
            <z:cell>Check main.css</z:cell>
            <z:cell>Styling</z:cell>
            <z:cell>Alice</z:cell>
        </z:row>
        <z:row>
            <z:cell>0003</z:cell>
            <z:cell>2</z:cell>
            <z:cell>open</z:cell>
            <z:cell>Client search result</z:cell>
            <z:cell>Search service returns incomplete result</z:cell>
            <z:cell>Service</z:cell>
            <z:cell>Bob</z:cell>
        </z:row>
    </z:rows>
</z:grid>

Description

Attributes

ZK Official Reference

Component Reference

Show frozen Component Reference

Java API

Show frozen Java API