Need to develop a grid with "New record" on top toolbar, when clicked, should show up New row at bottom with following specification"
- Row should be filled with all "Combobox" in all column fields
- Once item changed in Combobox1 of Column1, should auto populate Combobox2 of Column2 and Vice-versa (both columns are dependent)
Please suggest.
I am using a Kendo File Upload control to upload multiple files. Only few of the files are getting uploaded (especially first and last) or some random ones. Is there any solution for this ?
Index.cshtml :<input name="files" id="files" type="file" multiple="multiple" />
JS File :$("#files").kendoUpload
({
async: {
saveUrl: "/Controller/GetUserUploadedFiles",
removeUrl: "/Controller/Remove",
autoUpload: false,
allowmultiple: true,
batch: true
},
select: function (e) {
onSelect(e);
},
success: function (e) {
},
error: function (e) {
}
});
//Controller Method
[HttpPost]
public void GetUserUploadedFiles(IEnumerable<HttpPostedFileBase> files)
{
//Custom logic here
}
Also, it would be great if i can get all the files as Enumerable in one controller method call rather than having it called multiple times for multiple files.Is there anything i am missing or doing wrong ?
Thanks, Srini
Hi,
I am trying to filter on CategoryID inside the Grid. I am getting an exception that can be shown in this example:
http://dojo.telerik.com/@bhaidar/ipoYU/2
Even the filter is not reflecting the fact that the field is a number but assuming it's a string.
Thanks

My sortable items sometimes have scrollbars. On Chrome, this works fine, but on IE, I have issues.
On a sortable item with a scrollbar, click on the thumb and drag it to move the scrollbar, when you do a mouseup, the drag event of the sortable continues and won't release until I press the esc key.
I am currently using IE9 (9.0.8112.16421)
Thanks,
--Ed
Hi,
I was wondering whether we can modify the Gantt chart control to show a profile picture next to resources for selection and in the resources.
If so, where abouts should the modifications take place ?
thanks
This issue happens only in chrome. works perfectly fine in IE and Firefox.
There is a related issue here :
http://www.telerik.com/forums/datasource-different-sorting-causes-chrome-to-mess-up-stacked-grouped-barcharts
The data in the category axis appears mixed and does not state the values correctly.
Is there a solution to this, so that the grouped stacked charts (column or bar charts) appear properly in Chrome???
Thanks,
Rohit
Hi,
I came across an issue while exporting detail data to excel. The detail grid data starting from the 2nd page is not getting exported.
I made the following changes to the example provided in http://docs.telerik.com/kendo-ui/web/grid/how-to/Excel/detail-grid-export
a. To expand all master rows when the grid is loaded, i removed the "first" option in the databound function as follows :-
this.expandRow(this.tbody.find("tr.k-master-row"));
b. To export data in all pages, add the "allPages" property to the master grid:-
excel: { allPages: true }
After making these changes, the master and detail data in the first page gets exported fine; but starting from the second page only the master data is getting exported. Please let me know how I can get to export the detail grid data in all pages.
Thanks,
Rajish Sajayan