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
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hello
How can I remove some options from the two dropdowns ?
Basically, I only want to keep the "contains" option.
I haven't found how to do it with a grid in Excel Like Filtering mode.
Thank you philippe
Hello I found an ugly but working solution.
In this case, I'm changing the default filter options to "Contains"
function
HeaderMenuShowing(sender, eventArgs)
{
$(
'.RadComboBox'
).each(
(e) {
if
(
this
.id.indexOf(
'First'
) > 0 ||
'Second'
) > 0) {
var
combo = $find(
.id);
combo.trackChanges();
itm = combo1.findItemByText(
"Contains"
).select();
combo.commitChanges();
}
})
oops, typo error
itm = combo.findItemByText(