Hey guys,
I have a problem with the Grid + custom editor widget.
The custom editor, in this case "productDropDownEditor", should show the productName and update the field value with productID.
When you select an item on the DropDownEditor the grid shows the productID instead of the productName.
What am I doing wrong?
Dojo: http://dojo.telerik.com/AlEGU

Hello,
I have the dojo here. http://dojo.telerik.com/IfIbo
When I click on Edit, I want to tab over each cell and save the values instead of saving the values on clicking on Update. Actually I want to hide the "Update" and "Cancel" button when the user clicks on "Edit".
I have the following approaches. not sure which one is possible.
1) Is it possible to have an EditItem template so that when the user clicks on "Edit", the whole record gets updated with the "EditItemTemplate" for all the columns for that particular row.
2) Is it possible to have a blur event for each cell?
Thanks.
In my grid, I am using filterable and the data is fetched asynchronously when the user clicks on the down arrow in the column header. I would like to pre-fetch that data as soon as the grid data is requested - so that the user will most likely not see the spinner while the user waits for data. Currently, the data is not requested until the user clicks on the down arrow.
The column configuration is as follows:
{ field: "CompanyName", title: "Company Name", width: 168, filterable: { multi: true, dataSource: { transport: { read: { url: "/api/LoadGridDataUnique", data: { field: "CompanyName"}}}}} }We have a batch edit grid with a sub batch edit grid. It all works fine unless we want to add a row. When we do the sub grid edits are lost.
Is this a bug, or not supported?
Hi,
I saw several discussions targeting other Kendo controls, but I did not see this particular question for the mobile listview. It is quite simple; I use the JayData "asKendoDataSource" function to get data from the local db and hook it up to a mobile listview. A simple template is showing the fields in format:
<td> #=CustomerCode#</td>
I know i can modify the values displayed by using a generic js function within the template like this:
<td>#= CheckNull(CustomerDesc)#</td>
But this means I need to embed this CheckNull in all of my templates (since I use deep model nesting it will get pretty ugly). Is there really no other elegant way? Seems quite a no brainer that 'null' values should not be displayed. I understood this behavior is already fixed for the Kendo grid; just wondering if it is possible for the listview as well.
Best regards,
Ruud