I'm trying to implement a custom filter on a DataGrid using a DropDownList.
When I filter a DataSource using a custom operator delegate, I get a "Reference Error: value is not defined" where value = whatever the actual value is that I'm trying to use to filter.
http://jsfiddle.net/v73fLpb4/6/
Try selecting London in the drop down and you'll see "ReferenceError: London is not defined" in your error console.
Am I doing something wrong?
I want 4 columns in Grid, First column is Name and next three columns are permissions - Read, write and None. If user is having Read and write access, I want check Write Radiobutton. If user is having Read, Read Radiobutton and Neither then check None. How can I do this ? Below is the code I tried.
I have three fields on a popup editor, 'username', 'id', and 'title'. The 'username' field is an autoComplete, and 'id' is set as 'editable: false'. How can I still update that id field when a user selects an autoComplete username?
Hi,
Kind of stuck here (again... :().. I'm trying to find a way to get the selected list item in my mobile listview. So, not via a list view event, but in JavaScript. I cannot find documentation on this for the MobileListView. Can you please point me to the correct documentation?
I expect something like this: $("#lvwnotifications").data("kendoMobileListView").select() , but this does not work. I tried the debugger of course, but I did not find a way to get all the list view properties and methods in my local debug windows; any tips on this appreciated as it would save tons of time. Thanks in advance for your feedback!
The Grid allows to update/create records in batch.
Some of the records might fail to update or create. Assuming the server returned the records that have failed, is there a technique used to reflect those errors on the rows in the grid, maybe show them in different color to signify to the user that he/she should fixed the errors, etc.
Using set within a viewModel to change a nested variable is not triggering a change to a dependent template. A work-around of getting the entire variable, converting with toJSON, making the change and then using set, works fine. Attached is a small app demonstrating the problem. The "Add Participant" href is not set properly.