SMART datagrid v1.4 > Classes > GridBase

[ grids ver.1.3.0]   Back  Forward

DataLudi.GridBase.displayRowCount  property

현재 화면에 표시되고 있는 그리드행 개수. 

아래쪽에 일부만 표시되는 행도 포함된 개수다. 전체가 표시된 행들의 개수는 fullDisplayRowCount로 알 수 있다. 

Getter
function displayRowCount(): Integer
Code -1
    $('#scroll').click(function () {
        var count = grid.displayRowCount();
        grid.setTopIndex(100 - count / 2);
    });
See Also
fullDisplayRowCount
GridRow
topIndex
Examples
Focused Cell