Filter for boolean field in kendo grid is as shown below:
I need to set the font-weight to normal and increase spacing between the content and radio button. Can anyone please suggest if it is feasible, if yes, then how ?
Will it be possible to edit the style of filter button as well ?
My code snippet for this column is as follows:
{field: "IsValid", title: "Valid Value", type: "boolean",
template: kendo.template('#= IsValid? "Yes" : "No" #'),
filterable: {
messages: { info: "Select: ", isTrue: "Yes", isFalse: "No" }
}}
I tried applying style in messages section as was shown in a sample but it didn't work out :
messages: { info: "Select: ", isTrue: "Yes", isFalse: "No", style : "font-weight : normal;" }
Any help would be really appreciated.
