Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
HI All,
Is it possible to convert kendo UI filter textbox to dropdown and bind custom data? I need answer in server side grid. pls see attachment
columns.Bound(p => p.YourColumn).Filterable(x=> x.UI(
"dropDownFilter"
));
function dropDownFilter(element) {
element.kendoDropDownList({
dataSource: $(
'#grid'
).data(
'kendoGrid'
).dataSource,
dataTextField:
"YourColumn"
,
dataValueField:
optionLabel:
"--Select Value--"
});
}