我正在为一个MVC4项目工作。
我正在使用kendo编辑器模板进行Incell
编辑。这是一个在编辑时接受负值的列。
我正在使用的代码 -
@(Html.Kendo().Grid<Dev.Crm.Web.Models.ViewModel.ProjectViewModel>()
.Name("_projectGrid")
.Editable(editable => editable.Mode(GridEditMode.InCell))
.Columns(columns =>
{
columns.Bound(p => p.FixedPrice).Title(@Dev.Crm.Web.Resources.Shared.Project.Label_FixedPrice).EditorViewData(new { OnChangeCallback = "Product_List_updateProjectChanges" }).Width("15%").EditorTemplateName("Number");
})
.Pageable()
.Sortable()
.Selectable()
.DataSource(dataSource => dataSource
.Ajax()
.Model(model =>model.Id(p => p.TaskID))
.Batch(true)
.Model(model =>
{
model.Id(p => p.ProjectID);
model.Field(p => p.ProjectID).Editable(false);
})
.Read(read => read.Url(@Url.Project_Operation_Read()).Data("Project_List_searchData"))// the name of the javascript function which will return the additional data.
//.Destroy(destroy => destroy.Action("Delete", "Project"))
.Update(update => update.Url(@Url.Project_Operation_SaveCellEdit()))
)
.Events(e => { e.DataBound("Grid_DataBound"); })
)
在单元格编辑中,我可以编辑此单元格,但如何限制它接受负值。
答案 0 :(得分:1)
基本上我假设你的项目在Shared / EditorTemplate文件夹下有EditorTemplates。如果您有数字,那么您应该使用KendoNumericTextBox小部件。
如果你不使用Kendo NumbericTextBox作为编辑器 - 你最好find how to do it.
应用该编辑器模板后,您可以将 Min 选项设置为等于0.