0
我正在用Kendo UI開發一個MVC .Net項目。 我必須使用Kendo UI將編輯器放到html頁面。如何使用不帶ID和名稱的劍道編輯器?
(我也用敲出來綁定)CSHTML:
<textarea id="editor" data-bind= "kendoEditor: { value: model.Content}"></textarea>
Java腳本:
$("#editor").kendoEditor({
resizable: {
content: true,
toolbar: true
}
});
但我的導演要求我用劍道,我可以通過編輯ID這樣achive它沒有id的編輯器,如同inline。 我已經研究過它,但是還找不到任何東西。 你有什麼想法嗎?感謝您的幫助。
謝謝。有用。敲出綁定現在不起作用。如果你想看看,我也問它http://stackoverflow.com/questions/43917993/knock-out-bind-doesnt-work-at-kondo-editortext-area – mfg