Skip to content

Resize Columns

Resize columns by code

Syntax

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.setWidth(index, width);
});

Parameters

  • index (numeric, required)
    Zero-based index of the column

  • width (numeric, required)
    Numeric value in pixels (px)

Example

1
2
3
jQuery(document).ready(function() {
    AppGiniHelper.tv.setWidth(0, 80);
});

See also