0

kendoUI パネルバーを使用しています。パネルバーに 3 つのパネルがあります。以下に示すように、パネルバーを定義しました。パネルバーでパネル名を編集したい。

$("#panelBar").kendoPanelBar({
                        expandMode: "single",
                        select: onSelect,
                        dataValueField: "id",
                        dataTextField: "Text",
                        dataSource: 
                            [{
                            text: "First",value:"1", expand: true, encoded: false,
                            content: "<div id='1'></div>"
                             },
                             {
                                 text: "second",value:"2", expand: true, encoded: false,
                               content: "<div id='2'> </div>"
                             },
                             {
                                 text: "Third",value:"3", expand: true, encoded: false,
                                 content: "<div id='3'>  </div>"
                             }
                           ]
                        });
4

0 に答える 0