Skip to content

Commit

Permalink
Merge pull request #322 from o-nix/master
Browse files Browse the repository at this point in the history
Fixed: columns with custom html in names are missing in column chooser.
  • Loading branch information
tonytomov committed May 15, 2012
2 parents eb1b9e7 + 3311ecb commit a8c9701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grid.jqueryui.js
Expand Up @@ -252,7 +252,7 @@ $.jgrid.extend({
}

select.append("<option value='"+i+"' "+
(this.hidden?"":"selected='selected'")+">"+colNames[i]+"</option>");
(this.hidden?"":"selected='selected'")+">"+jQuery.jgrid.stripHtml(colNames[i])+"</option>");
});
function call(fn, obj) {
if (!fn) { return; }
Expand Down

0 comments on commit a8c9701

Please sign in to comment.