我的网格和调度程序的弹出编辑器。编辑器使用kendo-template(MVVM)定义。我想在打开这些编辑器时执行一些javascript,访问当前正在编辑的模型。我知道执行JS的技巧,但不知道如何访问模型。
<script id="my-editor" type="text/x-kendo-template" title="Edit Event">
<div class="k-edit-form-container">
<input type="hidden" data-bind="value: taskId" />
<div class="k-edit-label">
<label for="title">Title</label>
</div>
<div data-container-for="title" class="k-edit-field">
<input type="text" class="k-input k-textbox" name="title" data-bind="value:title">
</div>
<div class="k-edit-label">
<label for="start">Start Date</label>
</div>
<div data-container-for="start" class="k-edit-field">
<input id="eventStartInput" type="text" data-role="datepicker" name="start" data-bind="value:start">
</div>
<div class="k-edit-label">
<label for="currentHatId">Hat</label>
</div>
<div id="hatContainer" data-container-for="currentHatId" class="k-edit-field" disabled>
</div>
<script>
jQuery(function(){
jQuery('<select data-bind="value: currentHatId" name="currentHatId"/>')
.appendTo(jQuery('#hatContainer'))
.kendoDropDownList({
dataTextField: 'Name',
dataValueField: 'HatId',
optionLabel: '-- choose hat --',
dataSource: { type: 'odata-v4', transport: { read: { url: 'odata/Hats' } } }
});
//I want access to the 'bound' model here!
})
<\/script>
</script>
实现这一目标的最简单方法是什么?
答案 0 :(得分:0)
在调度程序的编辑事件中,我可以访问正在编辑的模型。所以我尝试了以下内容:
我将Scheduler配置为创建一个新的ScheduleEditor实例:
edit: (e: kendo.ui.SchedulerEditEvent) => { new ScheduleEditor(e); }
然后我的ScheduleEditor看起来像这样:
class ScheduleEditor
{
private _event: kendo.ui.SchedulerEditEvent;
constructor(e: kendo.ui.SchedulerEditEvent)
{
this._event = e;
e.event.bind('change', (x: any) => { this.eventChanged(x) });
}
private eventChanged(x: any)
{
console.log('{0} changed', x.field);
}
public static initDropDowns(): void
{
jQuery('<select data-bind="value: currentHatId" name="currentHatId"/>')
.appendTo(jQuery('#hatContainer'))
.kendoDropDownList({
dataTextField: 'Name',
dataValueField: 'HatId',
valuePrimitive: true,
optionLabel: '-- choose hat --',
dataSource: { type: 'odata-v4', transport: { read: { url: 'odata/Hats' } } }
});
}
}
请注意 valuePrimitive = true,因为这对我来说是一个问题。
从构造函数中调用 initDropdowns()并没有将下拉列表初始化为正确值,因此请从模板中调用它:
</div>
</div>
<script>
jQuery(function(){
ScheduledRecipeEditor.initDropDowns();
})
<\/script>
现在在我的ScheduleEditor实例中,我可以对模型中的更改做出反应。希望这有助于某人。它对于网格上的弹出编辑器应该是相同的。