Wijmo UI for the Web
staticColumnsAlignment Option
wijmo.grid.wijgrid Namespace > options type : staticColumnsAlignment Option

Gets or sets the alignment of the static columns area. Possible values are "left", "right". Obsoleted, use the scrollingSettings.staticColumnsAlignment property instead.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijgrid("option", "staticColumnsAlignment");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijgrid("option", "staticColumnsAlignment", newValue);
        
});
var staticColumnsAlignment : string;
Example
$("#element").wijgrid({ staticColumnsAlignment: "left" });
Remarks
The "right" mode has limited functionality: - The showRowHeader value is ignored. - Changing staticColumnIndex at run-time by dragging the vertical bar is disabled.
See Also

Reference

options type
wijgrid jQuery Widget