我在批处理编辑模式下有一个剑道网格,我还有一个数字列和一个日期(日期选择器)列。编辑时,我想防止用户输入日期选择器输入。
self.gridData = {
data: arr,
schema: {
model: {
id: 'oDateRechisha',
fields: {
oDateRechisha: {
from: "oDateRechisha",
type: 'date',
validation: {
required: true,
required: { message: 'please select date' },
},
},
oShmaRehisha: {
from: "oSumaRehisha",
type: 'number',
validation: {
min: 0,
max: 999999999,
},
validation: {
required: true,
required: { message: 'please enter value' },
}
},
}
}
},
}
我希望该设置值来自单击日期选择器按钮,显示日历并选择特定日期。