Wijmo UI for the Web
iconClass Field
wijmo.grid Namespace > ICommandButton Interface : iconClass Field

Determines the CSS class used to display an image button.

Syntax
var instance; // Type: wijmo.grid.ICommandButton;
var value; // Type: string
value = instance.iconClass;
var iconClass : string;
Example
$("#element").wijgrid({
   columns: [{
      buttonType: "imageButton",
      command: {
         iconClass: "ui-icon-info",
         click: function(e, args) {
            alert(args.row.data.ID);
         }
      }
   }]
});
Remarks
Can be used only if the buttonType option of a button field is set to "imageButton" or "image".
See Also

Reference

ICommandButton Interface