Hi Everyone,
I have a question regarding the ASP.NET MVC Dropdownlist.
I load my DDL with data from the controller like this.
public JsonResult GetCountries(){ SelectList list = null; ServiceSession.CreateService<MemberService>((Service) => { var country = Service.GetCountryCodes(); list = new SelectList(country, "Id", "Name", country.Where(e=>e.Name== "Danmark").First()); }); return Json(list, JsonRequestBehavior.AllowGet);}
@(Html.Kendo().DropDownListFor(m => m.CountryCode) .DataTextField("Text").DataValueField("Value").SelectedIndex(185). AutoBind(true).DataSource(dataSource => dataSource.Read(read => { read.Action("GetCountries", "Member"); })))I can't be sure that Denmark is always number 185.
If I have a treeview with .DataSource(d=>d.Model(....).Read(r=>r.Action(....)))
Can I use .ItemAction() to set item.checked based on a field provided in the DataSource? How?
In the code below, what would I put in place of the bolded comment?
@( Html.Kendo()How can I make editable first 3 columns of telerik grid? I can make editable the whole row but I need only first 3 columns.
Thanks.

For some unknown reason I can't seem to get my EditTemplates to work if I have them in a folder named "EditorTemplates" in the same folder as my view containing the Kendo UI Grid (MVC) but if I put the same file in Shared/EditorTemplates it works. If I look at this example the Edit Template is setup as indicated above but is working (I guess).
https://github.com/telerik/ui-for-aspnet-mvc-examples/tree/master/grid/custom-popup-editor/KendoUIMVC5/Views/Home
What do I need to do to get it to work from an EditorTemplates folder in same folder as my main view?
I have a window (apologies for bolding... seems easiest way to distinguish code given limited formatting options)
@(Html.Kendo()
.Window()
.Name("UserPermissionsWindow")
.Title("User Privileges")
.Content("loading privlege settings...")
.Iframe(true)
.Draggable()
.Resizable()
.Visible(false))
opened by a button click from a grid row:
columns.Command(com => com.Custom("Privileges")
.Click("openUserPermissionsWindow"));
The click handler calls the window refresh button:
<script type="text/javascript">
function openUserPermissionsWindow(e) {
e.preventDefault();
// the dataitem retrieved here will have the field values that can subsitute in the template (I hope)
var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
personId = dataItem.Person_ID; //will this work?????
var wnd = $("#UserPermissionsWindow").data("kendoWindow");
wnd.refresh({
url: "UserPrivileges/" + personId, // what does this url need to look like?
data: { id: personId }
});
wnd.center().open();
}
</script>
And the action returns a partialview containing a treeview wrapper:
<b>yo 'sup?</b>
@( Html.Kendo()
.TreeView()
.DataTextField("Name")
.Name("userModulePermissions")
.Checkboxes(cbxConfig => cbxConfig.Enabled(true)
.CheckChildren(true)
.Name("checkedNodes"))
.DataSource(d => d.Read(read => read.Action("PermissionsTree_Read",
"SettingsUsers",
new {
userId = Model
})))
)
But I end up with javascript error: ReferenceError: jQuery is not defined
This is "fixed" by putting the jquery (and kendo?) bundles at the top of the PARTIAL view:
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/kendo")
But because this is a PartialView in a window on a page that already exists, shouldn't it be able to use the jquery library that is already on the page?
I don't think I should have to bundle jquery libraries on partial views.
Currently the jquery bundle is at top of layout page.
Please advise.
We are experiencing an issue with the Kendo ui datetime picker in our MVC Sitefinity application. The issue manifests itself only in IE after a workaround JavaScript function has been applied. The application's default culture is set to fr-CA however in the view the date format needs to be fr-FR. If submit is clicked and the text area of the datetime picker is empty the validation message as set on the model property is displayed correctly, however if any non valid text is entered into the text area then the validation message displayed is: "DateDebut is not a valid date". The workaround function replaces the data-val-date attribute displaying the correct validation message in the French language and as stated works in all browsers but IE. As show below the kendo culture is set to fr-FR.
$(document).ready(function () { kendo.culture("fr-FR"); }); $(function () { $("input[data-val-date]").each(function (index, el) { var re = new RegExp("The field (.*?) must be a date"); var string = $(this).attr("data-val-date"); var m = string.match(re); if (m != null && m.length > 1) { $(this).attr("data-val-date", string.replace(m[0], "Le champ " + m[1] + " doit être une date (ex: 14/06/2015)")); } }); }); <div class="form-group" style="width: 100%"> @Html.LabelFor(m=> m.DateDebut, new { @class = "control-label col-sm-4" }) <div class="col-sm-3"> @Html.Kendo().DatePickerFor(m => m.DateDebut).Format("{0:dd/MM/yyyy}").HtmlAttributes(new {@style="width:150px;"}) @Html.ValidationMessageFor(m => m.DateDebut) </div> </div>
I am trying to use a JQuery command to call the Create action on a grid. Reason for this is that i need to pass an external id to the create command that is currently stored in a hidden HTML input field.
Here is the code
HTML<input type="hidden" id="acctid" value="">Script function insertnotes(e) { var accId = document.getElementById("acctid").value; alert(accId); $("#Child").data("kendoGrid").dataSource.create({ accountId: accId }); //$("#Child").data("kendoGrid").dataSource.read({ accountId: accId });
}GRID.Create(create => create.Action("Account_Master_Notes_Create", "AccountMaster"))Action in Controllerpublic ActionResult Account_Master_Notes_Create(string acctid, [DataSourceRequest]DataSourceRequest request, Account_Note_Master account_Notes_Master)The alert in the script is telling me that acctid is populated... i just want to call the create action.... the error i am getting is that dataSource.create is not a function
Thanks for any help on this issue.
Corey
Hello
I have a scheduler with a custom edittemplate that sets the usual stuff like title, start, end and so on.
Furthermore my template contains a javascriptfunction for adding or subtracting workers from the event and storing the result in an array called taskOperators.
How do I pass that array to my controller action for create and update?
.DataSource(d => d .Model(m => { m.Id(f => f.TaskID); m.Field(f => f.Color).DefaultValue("#cc99ff"); m.Field(f => f.Title); m.RecurrenceId(f => f.RecurrenceID); }) .ServerOperation(true) .Read("Tasks_Read", "Home") .Create("Task_Create", "Home") .Destroy("Task_Delete", "Home") .Update("Task_Update", "Home"))I saw something about adding .Data method to the .Update and .Create but how do I bind that to my Array taskOperators?
Best regards
Jonas
I occasionally see 404 Not Founds in our logs on the DejaVu fonts. I see they were added in Q3 2014 for PDFs but I am not using PDF exports. I do not have the fonts in the css/fonts folder since I did not think I needed them. The page does have a grid control.
Any idea on why these are being requested? I can't reproduce this so can't see the source to debug it. Of course one solution is to add the fonts to the project.
Thanks