CSS
 
1
Loading ...
 / 
 to 
 of 
Some features have classes added to allow to customize the styles.
Header menu
For the header cells configured with menu will have the class has-menu that will help to make some customized styles.
By default the style applied will hide the menu icon when cursor is not hovering the column, only displaying on hover the column and change icon opacity on hover it.
HTML structure:
<div class="wj-cell wj-header wj-header-alt has-menu group-header wj-filter-off">
    <div>

        ColumnName

        <button
 class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
            <span class="wj-glyph-filter">
                ::before
            </span>
        </button>

    </div> 

</div>
ColumnName
CSS applied:
// WijmoCSS.css
.wj-flexgrid .wj-cell.wj-filter-off .wj-elem-filter {
    opacity.5;
}

// GridContainer.css
.wj-glyph-filter:before { /* Filter icon changed to menu icon */
    content"\f0b0";
}

.wj-filter-off.wj-header .wj-elem-filter { /* Hide column menu icon */
    displaynone;
}

.has-menu.wj-header:hover .wj-elem-filter { /* Show the column menu icon on hover the column */
    displayinline-block;
}
Header alignment
To have columns aligned on the header, the styles were customized when have more than one rows on the header. If needed some customization of that type, the styles can be overwritten using that as base CSS.
HTML structure for header with a single row, no group, no customization needed:
<div class="wj-colheaders">
    <div 
class="wj-row">
        <div 
class="wj-cell wj-header has-menu wj-filter-off">
            <div>
                ColumnName1
                <button 
class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
                    <span 
class="wj-glyph-filter"></span>
                </button>
            </div>
        </div>
        <div 
class="wj-cell wj-header has-menu wj-filter-off">
            <div>

                ColumnName2

                <button 
class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
                    <span 
class="wj-glyph-filter"></span>
                </button>
            </div>
        </div>
        <div 
class="wj-cell wj-header has-menu wj-filter-off">
            <div>

                ColumnName3

                <button 
class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
                    <span 
class="wj-glyph-filter"></span>
                </button>
            </div>
        </div>
    </div>
</div>
ColumnName1
ColumnName2
ColumnName3
CSS applied:
/* Align filter icon to bottom */
.group-header.wj-cell.wj-header.has-menu.wj-filter-off .wj-btn.wj-btn-glyph.wj-right,
.group-header.wj-cell.wj-header.has-menu.wj-filter-on .wj-btn.wj-btn-glyph.wj-right {
    topauto;
}

/* Align column text to bottom */
.wj-flexgrid .wj-cell.wj-header {
    displaytable;
    table-layoutfixed;
}

.wj-flexgrid .wj-cell.wj-header div {
    displaytable-cell;
    overflowhidden;
    text-alignleft;
    text-overflowellipsis;
    vertical-alignbottom;
    width100%;
}

.wj-cell.wj-header div:not(:first-child) {
    text-aligncenter;
}

.wj-cell.wj-header.is-select {
    padding: 0;
}

/* On hover column reduce sort icon opacity */
.wj-flexgrid .wj-cell.wj-filter-on:hover .wj-glyph-up,
.wj-flexgrid .wj-cell.wj-filter-off:hover .wj-glyph-up,
.wj-flexgrid .wj-cell.wj-filter-on:hover .wj-glyph-down,
.wj-flexgrid .wj-cell.wj-filter-off:hover .wj-glyph-down {
    opacity.2;
    pointer-eventsnone;
}

/* Place the sort icon closer to the column text in case there is no filter applied */
.wj-flexgrid .wj-cell .wj-glyph-up,
.wj-flexgrid .wj-cell .wj-glyph-down {
    bottom10px;
    positionabsolute;
    right10px;
    topauto;
}

/* Place the sort icon closer to the column text in case the filter is applied */
.wj-flexgrid .wj-cell.has-menu .wj-glyph-up,
.wj-flexgrid .wj-cell.has-menu .wj-glyph-down {
    right22px;
}

/* Have more padding right when have some sorting applied */
.wj-cell.wj-header.wj-sort-asc div,
.wj-cell.wj-header.wj-sort-desc div {
    padding-right0;
}

/* Have more padding right when have some sorting applied having filter menu */
.wj-cell.wj-header.wj-sort-asc.has-menu div,
.wj-cell.wj-header.wj-sort-desc.has-menu div {
    padding-right8px;
}

/* Checkbox selection and group alignment */
.wj-cell.wj-header.is-select div,
.wj-cell.wj-header div.is-group {
    text-aligncenter;
}

/* Column text for the grouped columns */
.wj-cell.wj-header div {
    displayinline-block;
}
HTML structure for header with a multiple rows, having groups:
<div class="wj-colheaders">
    <div 
class="wj-row">
        <div 
class="wj-cell wj-header has-menu group-header wj-filter-off">
            <div>
                <input 
class="select-alltype="checkbox">
            </div>
        </div>
        <div 
class="wj-cell wj-header has-menu group-header wj-align-right">
            <div 
class="is-group">
 
                ColumnGroupName
            </div>
        </div>
        <div 
class="wj-cell wj-header has-menu group-header wj-align-center">
            <div 
class="is-group">
                ColumnGroupName

            </div>
        </div>
        <div 
class="wj-cell wj-header wj-align-center has-menu group-header wj-filter-off">
            <div>

                ColumnName3

                <button 
class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
                    <span 
class="wj-glyph-filter"></span>
                </button>
            </div>
        </div>
    </div>
    <div 
class="wj-row">
        <div 
class="wj-cell wj-header wj-header-alt wj-align-center has-menu group-header wj-filter-off">
            <div>

                ColumnName1

                <button 
class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
                    <span 
class="wj-glyph-filter"></span>
                </button>
            </div>
        </div>
        <div 
class="wj-cell wj-header wj-header-alt wj-align-center has-menu group-header wj-filter-off">
            <div>

                ColumnName2

                <button 
class="wj-btn wj-btn-glyph wj-right wj-elem-filtertype="button">
                    <span 
class="wj-glyph-filter"></span>
                </button>
            </div>
        </div>
    </div>
</div>
ColumnGroupName
ColumnGroupName
ColumnName3
ColumnName1
ColumnName2
CSS applied:
// GridContainer.css
/* Group left aligned */
.wj-cell.wj-header.wj-align-left div.is-group {
    text-alignleft;
}

/* Group right aligned */
.wj-cell.wj-header.wj-align-right div.is-group {
    text-alignright;
}

/* Column text for the grouped columns */
.wj-cell.wj-header div {
    displayinline-block;
Cells single selection colors
When multiple cells are selected, but have a single range selection, the color for cells should have a different color to be perceptible when a cell is selected and can be changed using the specified CSS aplied.
Checked rows have the class wj-checked, the selected rows have the class wj-state-multi-selected and the current selected row has the class wj-state-selected.
HTML structure for header with a multiple rows, having groups:
<div class="wj-row">
    <div 
aria-selected="falseclass="wj-cell">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="falseclass="wj-cell Bold">
        
55042180LL
    </div>
    <div 
aria-selected="falseclass="wj-cell Text_right Orange">
        
¥2
    </div>
    <div 
aria-selected="falseclass="wj-cell">
        
€12,456,789.10
    </div>
</div>

<div 
class="wj-row wj-checked">
    <div 
aria-selected="falseclass="wj-cell wj-alt">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Bold">
        
55042180LL
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Text_right Orange">
        
¥2
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt">
        
€12,456,789.10
    </div>
</div>
<div class="wj-row">
    <div 
aria-selected="falseclass="wj-cell">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="trueclass="wj-cell Bold wj-state-multi-selected">
        
55042180LL
    </div>
    <div 
aria-selected="trueclass="wj-cell Text_right Orange wj-state-multi-selected">
        
¥2
    </div>
    <div 
aria-selected="trueclass="wj-cell wj-state-multi-selected">
        
€12,456,789.10
    </div>
</div>

<div 
class="wj-row wj-checked">
    <div 
aria-selected="falseclass="wj-cell wj-alt">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Bold wj-state-multi-selected">
        
55042180LL
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Text_right Green wj-state-multi-selected">
        
¥12
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt wj-state-active wj-state-selected">
        
€12,456,789.10
    </div>
</div>
55042180LL
¥2
€12,456,789.10
55042180LL
¥2
€12,456,789.10
55042180LL
¥2
€12,456,789.10
55042180LL
¥12
€12,456,789.10
CSS applied:
// GridContainer.css
/* Checked rows */
.wj-row.wj-checked .wj-cell:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
    background#80adbf;
    color#fff;
}

 /* Selected rows */
.wj-cell.wj-state-multi-selected {
    backgroundrgba(128, 173, 191, 0.67);
    color#fff;
}

/* Selected checked rows */
.wj-row.wj-checked .wj-cell.wj-state-multi-selected {
    backgroundrgba(128, 173, 191, 0.84);
    color#fff;
}

/* Individual selection on checked rows */
.wj-row.wj-checked .wj-cell {
    backgroundrgba(0, 133, 199, 0.9);
}
Cells multi-range selection colors
When have multiple cells selected having multi-range selection, a different class will be applied, so if needed it may allow to set a different style.
Multi-range selected rows have the class extended-selection, similar to what happens with the single selection cells, the style of the checked rows (wj-checked) can have a different style as well as the current selected row, which has the class wj-state-selected.
HTML structure for header with a multiple rows, having groups:
<div class="wj-row">
    <div 
aria-selected="falseclass="wj-cell">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="falseclass="wj-cell Bold extended-selection">
        
55042180LL
    </div>
    <div 
aria-selected="falseclass="wj-cell Text_right Orange">
        
¥2
    </div>
    <div 
aria-selected="falseclass="wj-cell">
        
€12,456,789.10
    </div>
</div>

<div 
class="wj-row wj-checked">
    <div 
aria-selected="falseclass="wj-cell wj-alt">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Bold extended-selection">
        
55042180LL
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Text_right Orange">
        
¥2
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt">
        
€12,456,789.10
    </div>
</div>
<div class="wj-row">
    <div 
aria-selected="falseclass="wj-cell">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="trueclass="wj-cell Bold">
        
55042180LL
    </div>
    <div 
aria-selected="trueclass="wj-cell Text_right Orange extended-selection">
        ¥2
    </div>
    <div 
aria-selected="trueclass="wj-cell wj-state-active extended-selection">
        
€12,456,789.10
    </div>
</div>

<div 
class="wj-row wj-checked">
    <div 
aria-selected="falseclass="wj-cell wj-alt">
        <input 
type="checkboxclass="wj-cell-check">
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Bold">
        
55042180LL
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt Text_right Green extended-selection">
        
¥12
    </div>
    <div 
aria-selected="falseclass="wj-cell wj-alt extended-selection">
        
€12,456,789.10
    </div>
</div>
55042180LL
¥2
€12,456,789.10
55042180LL
¥2
€12,456,789.10
55042180LL
¥2
€12,456,789.10
55042180LL
¥12
€12,456,789.10
CSS applied:
// GridContainer.css
/* Multi-range selection */
.extended-selection.wj-cell:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
    backgroundrgba(128, 173, 191, 0.67);
    color#fff;
}

/* Multi-range Selected checked rows */
.wj-row.wj-checked .extended-selection.wj-cell:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
    backgroundrgba(128, 173, 191, 0.84);
    color: #fff;
}

/* Links color when selected */
.extended-selection a,
.extended-selection a:link,
.extended-selection a:visited {
    color#fff;
}
Invalid cells
Cells having an error message have the class wj-state-invalid and show the error message on cursor hover.
55042180LL
¥22
€12,456,789.10
55042180LL0
¥2
€2,456,789.10
CSS applied:
 WijmoCSS.css
 
.wj-cell.wj-state-invalid {
    border1.2px solid red;
}

.wj-cell.wj-state-invalid:not(.wj-header):after {
    positionabsolute;
    content'';
    width: 0;
    right: 0;
    top: -6px;
    border: 6px solid transparent;
    border-right-colorred;
}
Dirty cells
Cells that were changed have the class cell-dirty which identifies that that cell has changes to send to the server.
The following example shows how the dirty state looks in cells having different styles.
55042180LL
¥22
€12,456,789.10
55042180LL0
¥2
€2,456,789.10
CSS applied:
 // GridContainer.css
 
/* Cells that were edited */
.wj-cell.cell-dirty:before {
    border5px solid transparent;
    border-left-colorrgba(255, 0, 0, 0.4);
    border-top-colorrgba(255, 0, 0, 0.5);
    content"";
    left0;
    positionabsolute;
    top0;
}
There are two types of overlays, the loading and empty state, and each has its class to be possible to be customized. Both share the same structure, only differs from the message displayed and the specific class.
Loading
Could be used the class loading to apply some customizations for that mode.
HTML structure:
<div class="OverlayWrapper visible loading">
    <div 
class="Overlay">
        <div 
class="OverlayTxt OSInline">
            
Loading ...
        </div>
    </div>
</div>
1
55042180LL
¥2
€12,456,789.10
2
55042180LL
¥2
€12,456,789.10
3
55042180LL
¥12
€12,456,789.10
2
55042180LL
¥-2
€12,456,789.10
ColumnName1
ColumnName2
ColumnName3
Loading ...
CSS applied:
 // GridContainer.css
.GridWrapper {
    positionrelative;
}

 .OverlayWrapper { /* Overlay message on the grid (Loading, Empty records ...) */
    background-colorrgba(255,255,255,.5);
    bottom: 0;
    displaynone;
    left: 0;
    positionabsolute;
    right0;
    top: 0;
}

.OverlayWrapper.visible {
    displayblock;
}

.OverlayWrapper .Overlay {
    displayflex;
    flex-directionrow;
    height100%;
    align-itemscenter;
    justify-contentcenter;
}

.OverlayWrapper .OverlayTxt {
    background-colorrgba(255,255,255,.7);
    border1px solid rgba(0,0,0,.7);
    border-radius5px;
    padding8px;
}
Empty state
margin top is applied to the empty state overlay to allow the users have access to the header and group options, since the empty state could be result of a filter applied, be on a grouped column or not. Could be used the empty class to apply some customizations for that state.
HTML structure :
<div class="OverlayWrapper visible emptystyle="margin-top: 123px;">
    <div 
class="Overlay">
        <div 
class="OverlayTxt OSInline">
            
No results to show
        </div>
    </div>
</div>
ColumnName1
ColumnName2
ColumnName3
No results to show
CSS applied and relevant to the feature:
 // GridContainer.css
/* When have no groups, the groups element will still be rendered but not visible to the user, to can mark out the distance to the cells */
.wj-grouppanel.hidden {
    height0;
    max-height0;
    opacity0;
    padding: 0;
}

 .GridWrapper {
    positionrelative;
}

 .OverlayWrapper { /* Overlay message on the grid (Loading, Empty records ...) */
    background-colorrgba(255,255,255,.5);
    bottom: 0;
    displaynone;
    left: 0;
    positionabsolute;
    right0;
    top: 0;
}

.OverlayWrapper.visible {
    displayblock;
}

.OverlayWrapper .Overlay {
    displayflex;
    flex-directionrow;
    height100%;
    align-itemscenter;
    justify-contentcenter;
}

.OverlayWrapper .OverlayTxt {
    background-colorrgba(255,255,255,.7);
    border1px solid rgba(0,0,0,.7);
    border-radius5px;
    padding8px;
}