Hi All,
Could anyone explain why I can't enter values in filter text box as shown in the attachment. Here is my script
var grid = $("#grid").kendoGrid({
dataSource: ds,
height: 250,
pageable: true,
selectable: "row",
resizable: true,
groupable: true,
sortable: true,
filterable: true,
columns: [
{ title: "col1", field: "col_1", width: 80 },
{ title: "col2", field: "col_2", width: 80 },
{ title: "col3", field: "col_3", width: 120 }
]
})
;
TIA
5 Answers, 1 is accepted
Hello Steve,
I tried to reproduce the issue, but to no avail. Here is the demo I used for testing purposes. However such an issue could be observed if Bootstrap is used. Do you use it in the current implementation? Could you please modify my example and demonstrate your exact setup - this way I would be able to check what exactly is going wrong and provide concrete recommendation.
Regards,
Plamen Lazarov
Telerik

Hi Plamen,
I added in the bootstrap section to the code and I'm not seeing the symptom (http://dojo.telerik.com/Ahori/6). Since, we in the process of converting our pages to kendo from slickgrid and knockout, could either of the two libraries be causing this?
Steve

Hi Plamen,
Do you happen to have an example of filterable grid and searchable text?
Steve
Hello Steve,
Please take a look at the following online demo and let me know if that is what you are looking for.
Regards,
Plamen Lazarov
Telerik

Hi Plamen,
I figured it out that jQuery dialog box must have modal set to false in order to type anything in the filter text box. Going to change the code to use KendoWIndow instead
Steve