Skip to content

Commit

Permalink
add a significant text to indicate that the span is empty or has no v…
Browse files Browse the repository at this point in the history
…alue
  • Loading branch information
asaguer committed May 17, 2023
1 parent aa49c1a commit bcdac39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/grid.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -5294,8 +5294,8 @@ $.fn.jqGrid = function( pin ) {
}
tdc = isMSIE ? "class='ui-th-div-ie'" :"";
imgs = "<span class='s-ico' style='display:none'>";
imgs += "<span sort='asc' class='ui-grid-ico-sort ui-icon-asc"+iac+" ui-sort-"+dir+" "+disabled+" " + iconbase + " " + getstyle(stylemodule, 'icon_asc', true)+ "'" + sort + "></span>";
imgs += "<span sort='desc' class='ui-grid-ico-sort ui-icon-desc"+idc+" ui-sort-"+dir+" "+disabled+" " + iconbase + " " + getstyle(stylemodule, 'icon_desc', true)+"'" + sort + "></span></span>";
imgs += "<span sort='asc' class='ui-grid-ico-sort ui-icon-asc"+iac+" ui-sort-"+dir+" "+disabled+" " + iconbase + " " + getstyle(stylemodule, 'icon_asc', true)+ "'" + sort + " aria-label=\"empty\">empty</span>";
imgs += "<span sort='desc' class='ui-grid-ico-sort ui-icon-desc"+idc+" ui-sort-"+dir+" "+disabled+" " + iconbase + " " + getstyle(stylemodule, 'icon_desc', true)+"'" + sort + " aria-label=\"empty\">empty</span></span>";
if(ts.p.multiSort) {
if(ts.p.sortname ) {
sortarr = ts.p.sortname.split(",");
Expand Down

0 comments on commit bcdac39

Please sign in to comment.