问题
使用Telerik Grid并且仅使用IE8,当我编辑使用错误值的数据注释自定义的网格字段时,我收到错误500,因为它将使用错误的参数进行服务器操作。
我正在阅读那是因为某些版本的jquery验证有一个Bug,但我无法解决它更新插件和库。
问题
我想知道我应该使用哪个版本的每个jquery来解决这个问题,因为也许我没有做出好的插件混合。
代码
插件:
观点:
@(
Html.Telerik().Grid<ZoneData>()
.Name("zoneDataModel")
.ToolBar(commands => commands.Insert().Text("Add Zone"))
.DataKeys(keys => keys.Add(param => param.Id))
.HtmlAttributes(new { style = "width: 520px;" })
.NoRecordsTemplate("No existen resultados...")
.DataBinding(
dataBinding => dataBinding.Ajax()
.Select("SelectGrid", Controllers.Zone, Model)
.Update("UpdateGrid", Controllers.Zone, Model)
.Insert("InsertGrid", Controllers.Zone, Model)
.Delete("DeleteGrid", Controllers.Zone, Model)
)
.Columns(columns =>
{
columns.Bound(param => param.Code);
columns.Command(commands =>
{
commands.Edit().ButtonType(GridButtonType.Image);
commands.Delete().ButtonType(GridButtonType.Image);
}
).Width(100);
})
.Editable(editing => editing.Mode(GridEditMode.InLine)
.Resizable(resizing => resizing.Columns(true))
.Reorderable(reorder => reorder.Columns(true))
)
模特:
public class ZoneData
{
public string Id{ get; set; }
[Range(0, 999,ErrorMessage = " ")]
[Required(ErrorMessage = " ")]
[StringLength(3,ErrorMessage = " ")]
public string Code { get; set; }
}
答案 0 :(得分:0)
我用这些配置解决了这个错误: