wijmo.grid Namespace > IC1BtnFieldOptions Interface : command Field |
Represents options of a command button.
Javascript (Usage) | |
---|---|
var instance; // Type: wijmo.grid.IC1BtnFieldOptions; var value; // Type: ICommandButton value = instance.command; |
Javascript (Specification) | |
---|---|
var command : ICommandButton; |
$("#element").wijgrid({ columns: [{ buttonType: "link", command: { text: "myCommand", click: function (e, args) { alert("clicked!"); } } }] });