Hi,
I'm using RecurrenceEditorFor without scheduler. How can I get values ReccurenceRule and RecurrenceID and pass to controller?
@(Html.Kendo().RecurrenceEditorFor(model => model.RecurrenceRule)
?
?
Regards
Frank
Hi,
i have a cascading dropdown list inside grid. when i click ass row and when i click 2nd drop down able to load data without selecting first dropdown. so here first i want to disable 2nd dropdown and after selecting 1st drop down i want to enable 2nd dropdown with the values depends on first drop down.
Hi,
here i want to display alternate colors with different color for new row inside kendo grid incell edit mode.
Hello
I used Telerik UI for ASP.NET MVC Grid to perform CRUD operations and manipulate its data in Popup mode. I create a template to customize the Popup window .. Until now every things works fine except the binding in the drop down list .. I followed exactly this demo but unfortunately the drop down list won't to populate.
Also, When I want to used a foreignkey column in Grid as below, I got "Value can not be null" error :(
columns.ForeignKey(p => p.category_id, ds => ds.Read(r => r.Action("GetCategories", "Home")), "id", "name").Title("Category");
I attached sample project having the issue.
Any Help Please
I have a stranger issue, The Kendo Grid for ASP.Net MVC work as expect except when I added any event for ant tool in the popup template, The popup window opens in the same page not poping up
Any Idea?
Hi,
I have a Kendo Editor control on one of my pages which I've enabled the "paste cleanup" feature on with the flags "all" and "css" but when I copy/paste content with HTML tags and inline CSS styles into it, those tags/styles are not being removed as expected.
This can be seen on the paste cleanup feature demo page - https://demos.telerik.com/kendo-ui/editor/paste-cleanup when pasting in the following HTML snippet
<h1 style="text-align:center;"><strong>The simple way to get a brand new bike, make huge savings and spread the cost</strong></h1>
I've tried various combinations of the options available on that page but nothing works so is there a way of achieving the expected result?
Hello
I used popup window to edit a row in grid, I want to know how can I customize the popup windows (Edit title, Size, Hide some fields, Submit button title ,,, etc)
Anyone can help please?
I have a columns.Select() in my kendo grid which shows checkboxes to select all the rows if I check the checkbox in the header. I need to override the behavior of this control to select only certain fields based on the values of another column.
Is there any way I can bind this any event and get it to work? I tried using jquery using the class I added, but I was not able to get the event to fire. Please suggest.
@(Html.Kendo().Grid<WMP.Models.Home.WorkFlowApprovalViewModel>()
.Name("gridApprovals")
.Columns(columns =>
{
columns.Select().MinResizableWidth(5).HtmlAttributes(new { @class = "cmddestroy" });
columns.Bound(c => c.PersonId).Filterable(ftb => ftb.Multi(true).Search(true));
columns.Bound(c => c.UserName).Filterable(ftb => ftb.Multi(true).Search(true));
columns.Bound(c => c.UserEmail).Filterable(ftb => ftb.Multi(true).Search(true));
}
I have a DropDownList and users are annoyed that whilst the data is loaded it says "No data found." when in fact, the data hasn't been loaded yet - I found this config item:
https://docs.telerik.com/kendo-ui/api/javascript/ui/dropdownlist/configuration/messages.nodata
How do I make one message appear whilst the data source is loading, and another message once the data has loaded (and in fact, there was no data found)