I have a Grid with a popup that has an upload module. after uploading a file to the server, I want the "Success" event to populate a hidden field for the model.
The code is as follows.
GRID________________________________________________
@(Html.Kendo().Grid<BlueWebApp.Models.Note>() .Name("NoteGrid") .Columns(columns => { columns.Bound(c => c.NoteID).Width(50); columns.Bound(c => c.NoteText).Width(150).Title("Text"); columns.Command(c => c.Edit()); }) .HtmlAttributes(new { style = "height: 600px; width: 100%" }) .Editable(ed => { ed.Mode(GridEditMode.PopUp).TemplateName("NoteEditTemplate"); }).ToolBar(e => e.Create()).Pageable(pageable => pageable .Refresh(true) .PageSizes(true) .ButtonCount(5)).DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("GetNotes", "Note")) .Create(c => c.Action("CreateNote", "Note")) .Update(u => u.Action("UpdateNote", "Note")) .Model(m => { m.Id(p => p.NoteID); }) ))
EDITORTEMPLATE_______________________________
@model BlueWebApp.Models.Note<div style="height: 100px;"> This is customized Person edit template @Html.HiddenFor(model => model.NoteID) <br /> @Html.HiddenFor(model => model.NoteText, new { id = "test"}) </div><div> @(Html.Kendo().Upload() .Name("files") .Events(events => events.Success( @<text> function(e) { $('#test').val(e.response.fileName); } </text>)) .Multiple(false) .Async(a => a.Save("Save", "Note") .Remove("Remove", "Note") .AutoUpload(true) ))</div><br />When clicking the "Update" button on the popup the hidden field with id Test has been given a value. but that value is not passed to the model.
What am I doing wrong?