I am using latest trial Kendo.Mvc.dll
I have grid with popup editing.
.Sortable()
.Editable(editable => editable.Mode(Kendo.Mvc.UI.GridEditMode.PopUp).TemplateName("Template").Window( w => w.Width(960)))
.Pageable(pageable => pageable
.Refresh(true)
.PageSizes(true)
.ButtonCount(5))
.DataSource(dataSource => dataSource
.Ajax()
.Model(model => model.Id(p => p.NSTemplateID))
.Read(read => read.Action("Templates_Read", "TemplateManager").Data("additionalData"))
.Update(update => update.Action("Templates_Update", "TemplateManager"))
.Events(events => events.Error("error_handler").RequestStart("request_start"))
)
All working good but when authentication timeout - no errors.
How I can handle timeout and show warning to user?
I have grid with popup editing.
.Sortable()
.Editable(editable => editable.Mode(Kendo.Mvc.UI.GridEditMode.PopUp).TemplateName("Template").Window( w => w.Width(960)))
.Pageable(pageable => pageable
.Refresh(true)
.PageSizes(true)
.ButtonCount(5))
.DataSource(dataSource => dataSource
.Ajax()
.Model(model => model.Id(p => p.NSTemplateID))
.Read(read => read.Action("Templates_Read", "TemplateManager").Data("additionalData"))
.Update(update => update.Action("Templates_Update", "TemplateManager"))
.Events(events => events.Error("error_handler").RequestStart("request_start"))
)
All working good but when authentication timeout - no errors.
How I can handle timeout and show warning to user?