We use the kendo datasource sync feature for our crud operations and want to validate on or before sync gets called. It looks like your validation story is built around the UIValidator, which doesn't really work for us, we want to validate in code. I would expect that since you can define a schema for your model that the datasource would run through validation on or before sync but this doesn't seem to be the case. Am I missing something? How can I validate the datasource before I call sync?
Thanks,
Gregory Bailey
Advent Software, Inc.
Hi,
Is the multi-column header functionality in the normal kendo grid going to be implemented in the future for the tree list grid?
Thanks,
Rob.
I have a grid in which column allows users to attach 1 or more files for a given row. The users can add attachments one at a time.
After they have completed adding files, i would like to read the list of files from the kendoUpload control and upload them along with other data in the grid in one shot.
The code below however always returns only one file even if there is more than one that the user added. Any ideas why this is?
var fileData = new FormData();//prefix files with assumptionCode to map them to appropriate record in controller$.each($("input[type=file]"), function (i, obj) { debugger; var id = $(this).closest('form').attr('id'); $.each(obj.files, function (j, file) { fileId = id + '_' + file.name fileData.append(fileId, file); })});For the the column that contains the kendoUpload controls, i am using a custom template which returns the following:
frm = "<form method='post' action='#' enctype = 'multipart/form-data' id='" + data.Code + "' >" + "<input class='attachments' tabindex='-1' name='files[]' type='file' " + "id='" + data.Code + "' /></form>" return frm Any idea why this is happening and how to resolve
Hi guys, I've been looking for a better way to collect app erros/usage and send a report to a remote server.
Which kendo features I can use to make a good solution?
Regards.
Hello - are there any plans to develop a Translator, which can be used in conjunction with Telerik Test Studio, in the way that there are translators for Kendo Calendar, Grid, Menu etc..?
Thanks in advance!
Hi,
I have a grid with paging.
If I go to another page which isn't the first one,
and then press on one of the headers and sort the column,
then I click on the Add button,
the first row is added immediately , regardless Required fields and Validation,
although the user didn't press on V! (the confirmation button)
(attach file)
Do you have any idea why does it happen?
Thanks…