2014-01-17 49 views
0

KendoUI擁有某些只能在Firefox中使用而不在Chrome中使用的小部件。 與網格中的編輯命令按鈕一樣。如何使KendoUI Edit按鈕在Chrome中工作?

 { command: [ { name: "Edit" ,text:'', imageClass: "k-icon k-i-pencil", 
           click: function(e) { 
            //some code 
           } 

單擊該功能在Chrome中根本不會被調用,但在Firefox中完美工作。

是否有無論如何我可以修復它使它在兩個瀏覽器中工作?

回答

0

綁定您的inline電網這樣,

$("#grid").kendoGrid({ 
        dataSource: dataSource, 
        navigatable: true, 
        pageable: true, 
        height: 430, 
        groupable: { 
         messages: { 
          empty: "Drop columns here" 
         } 
        }, 
        toolbar: ["create"], 
        columns: [ 
            "ProductName", 

            {field: "UnitPrice", title: "Unit Price", width: 110 }, 
            { field: "UnitsInStock", title: "Units In Stock", width: 110 }, 
            { field: "Discontinued", width: 110 }, 
            { command: ["edit", "destroy"], title: " ", width: 190}], 

        editable: "inline" 
       }); 

GRID命令

{ command: ["edit", "destroy"], title: " ", width: 190}]它的工作在兩個鍍鉻和FF。

+0

煤礦是一個自定義編輯命令。我沒有使用內聯編輯。 – nette

+0

@你用什麼樣的網格來定製網格命令? – Jaimin

相關問題