gpt4 book ai didi

javascript - 根据条件禁用剑道网格中的行

转载 作者:行者123 更新时间:2023-11-28 19:39:56 25 4
gpt4 key购买 nike

我有一个 Kendo 网格,其中最后一列有一个复选框,我从服务器端绑定(bind)此网格(从服务器填充数据),并且复选框值也来自服务器。I想要禁用复选框值为 true 的整行,即已选中,并希望在复选框值为 false 时允许编辑,即未选中。我的代码如下:

@(Html.Kendo().Grid(Model)
.Name("UpdatedHeadGrid")
.Columns(columns =>
{
columns.Bound(p => p.ID).Hidden(true).ClientTemplate("#= ID#" + "<input type='hidden' class='ID' value='#=ID#' />").Width(10);
columns.Bound(p => p.IsAllocated).HeaderHtmlAttributes(new { title = "Allocatable" }).Title("Allocatable").ClientTemplate("<input type='checkbox' ${ IsAllocated == true ? checked='checked' : ''} class='IsAllocated' value='#=data.IsAllocated#' style='width:50px;' />").Width(50).HtmlAttributes(new { style = "text-align: center;vertical-align: middle;"});
columns.Bound(p => p.Total).HeaderHtmlAttributes(new { title = "Total Amount" }).Title("Total").ClientTemplate("<input type='text' disabled='disabled' class='Total' value='#=data.Total#' style='width:65px;' />").Width(60).HtmlAttributes(new { style = "text-align:right", onclick = "DisableEdit(this)" });
.Editable(editable => editable.Mode(GridEditMode.InCell))
.Events(e =>
{
e.DataBound("onRowBound");

e.Edit("onEdit");
})
.PageSize(15)
.Resizable(resize => resize.Columns(true))
)

为此,我编写了编辑函数,即 onEdit 函数,如下所示:

<script>
function onEdit(e) {
var fieldName12548 = e.container.find('input[type="checkbox"][name="IsAllocated"]').attr("value");
if (fieldName12548 === "Total") {
this.closeCell();
}
}
</script>

在这里,我必须禁用所有行,而不是仅使用 fieldname="Total"的列。

用于编辑多列

var fieldName = e.container.find("input").attr("name");
if (fieldName === "AccountTransactionItemDescription" && fieldName === "Identifier" && fieldName === "TradeOrNonTrade" && fieldName === "EntityName")
{
this.closeCell();
}

但在这里它不起作用可能是这只能引用一个。那么解决这个问题的方法是什么?

最佳答案

我建议您不要使用 jQuery 来查找输入的值,而是使用事件处理程序参数 emodel 字段。

所以你应该这样做:

<script>
function onEdit(e) {
if (e.model.IsAllocated) {
this.closeCell();
}
}
</script>

在此处查看实际情况:http://jsfiddle.net/OnaBai/ry82wcvc/

关于javascript - 根据条件禁用剑道网格中的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25282502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com