0
私のグリッドはajaxコールでバインドされます。編集する行を選択すると、「Device_Type」という名前のフィールドがあり、選択した行のデバイスタイプの値を送信します。ポップアップエディタでドロップダウンリストを埋めるためにAjaxを使って、どうすればその関数を書くことができますか?グリッド内で選択した行の機能を作成
$("#turbingrid").kendoGrid({
// debugger;
dataSource: dataSource,
scrollable: false,
columns: [
{ field: 'DeviceIP', title: 'DeviceIP', width: '100px', id: 'DeviceIP' },
{ field: 'Producer', title: 'Producer', width: '80px', editor: ProductNameDropDownEditor, },
{ field: 'Model', title: 'Model', width: '220px' },
{ field: 'DeviceType', title: 'DeviceType', width: '100px',editor: deviceTypesList },
{ field: 'Description', title: 'Description', width: '220px' },
{ field: 'Username', title: 'Username', width: '120px' },
{ field: 'Password', title: 'Password', width: '100px' },
{ field: 'PublicIP', title: 'PublicIP', width: '120px' },
{ field: 'device_id', title: 'device_id', width: '120px',hidden:true },
{ command: ["edit"], title: " " }],
editable: "popup",
//edit:
// function() {
// document.getElementsByName("DeviceIP")[0].disabled = true;
// },
edit: function(e) {
e.container.find("label[for='device_id']").parent().hide();
e.container.find("div[data-container-for='device_id']").hide();
}
});
どのように私は、以下のリンクのポップアップエディタで「商品名」の値を取得することができますhttp://dojo.telerik.com/UfeYat – mortezasol
@mortezasolを参照してくださいを参照して、開発者ツールを開くことを確認してください私の更新された答え – Adriani6