ComponentOne GridView for ASP.NET WebForms
jQuery.wijmo.c1gridview Namespace / options type / showFooter Option
In This Topic
    showFooter Option
    In This Topic
    A value indicating whether the footer row is visible. Footer row is used for displaying of tfoot section of original table, and to show totals.
    Syntax
    // Get value
    var value; // Type:  boolean
    value = $(".selector").c1gridview("option", "showFooter");
    
    // Set value
    var newValue; // Type:  boolean
    $(".selector").c1gridview("option", "showFooter", newValue);
    var showFooter : boolean;
    Example
    // Set showFooter to true to view the footer row.
    $("#element").wijgrid({ showFooter: true });
    Browser Compatibility
    8
    5
    5
    See Also