jQWidgets Forums

jQuery UI Widgets Forums Grid features

Tagged: 

This topic contains 3 replies, has 2 voices, and was last updated by  Peter Stoev 12 years, 11 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    features Posts
  • features #4346

    jholcomb
    Member

    I’m evaluating JS grids that have Knockout integration. Here’s the set of features I’m looking for:

    Frozen (pinned) columns
    Two-level column header groups by colspan (not row grouping)
    Column re-ordering (draggable on the header group colspan)
    Add/remove columns programatically at runtime
    Hide/show rows programatically

    I looked through the examples but did not see these types of features mentioned.

    features #4347

    Peter Stoev
    Keymaster

    Hi jholcomb,

    Regarding the features:

    1. Pinned Columns are supported. You can take a look at the “Pinned Columns” demo of the jqxGrid.
    2. Two-level column headers are not supported.
    3. Reordering of Columns is still not supported. The feature will be supported in a future version.
    4. You can change the columns by setting the Grid’s columns property to a new Columns Array.
    5. You can use the ‘hidecolumn’ and ‘showcolumn’ methods to hide or show a column.

    Example:

     $("#jqxgrid").jqxGrid('hidecolumn', 'firstname');

    6. You can use the ‘hiderow’ and ‘showrow’ methods to hide or show a row.

    Example:

    $("#jqxgrid").jqxGrid('hiderow', 0);

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    features #4349

    jholcomb
    Member

    Appreciate for the quick response Peter. I had overlooked the Pinned Columns demo, thanks for pointing it out.

    features #4350

    Peter Stoev
    Keymaster

    Thanks for pointing the grouped header grid demo. We’ll definitely implement columns reordering in the future versions of jqxGrid. Unfortunately, I will need to moderate your post and remove the link according to our Forum Policy – http://www.jqwidgets.com/community/topic/welcome-to-jqwidgets-forum/.

    Best Wishes,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.