BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
.Edit(new { @params = new { checked=false } })
Doesnt seem to work.
Thx.
col.Field("Boolean").DisplayAsCheckBox(true).EditType("booleanedit").Width("120").Add(); |
The EditType
of Column
is used to define the editor component for any particular column.
You can set the EditType
based on data type of the column.
NumericTextBox component for integers, double, and decimal data types.
TextBox component for string data type.
DropDownList component to show all unique values related to that field.
CheckBox component for boolean data type.
DatePicker component for date data type.
DateTimePicker component for date time data type.