我有一个项目代码字段,类型为数字,但是在浏览器中渲染时,默认值显示为0。那么我该如何隐藏或删除零?
我是Kendo-UI的新手。所以我不知道。
schema: {
data: "data", total: "total",
model: {
id: "id",
fields: {
SBU: { type: "string" },
Project_Code: { type: "number" },
Role: { type: "string" },
IPM_Oracle_UserID: { type: "string" },
IQ_LoginID: { type: "string" }
}
}
}
在上面的代码中,有一个“ Project_Code ”字段,其类型为数字,但在浏览器上默认为零。因此,如何隐藏/删除“ Project_Code”字段的默认值零。
答案 0 :(得分:1)
经过一番搜索后我找到了答案。只需将nullable添加为true。请在下面找到我的重组代码。
schema: {
data: "data", total: "total",
model: {
id: "id",
fields: {
SBU: { type: "string" },
Project_Code: { type: "number", nullable: true },
Role: { type: "string" },
IPM_Oracle_UserID: { type: "string" },
IQ_LoginID: { type: "string" }
}
}
}