2017-03-28 46 views
0

對我有劍道UI工具欄的這個簡單的exmaplekendoToolBar與顯示:無屬性不鐵鍋調整大小的屏幕

$("#toolbar").kendoToolBar({ 
    items: [ 
    { 
     type: "buttonGroup", 
     attributes: { 
     style: "display:none", 
     }, 
     buttons: [ 
     { text: "foo" }, 
     { text: "bar" }, 
     { text: "baz" } 
     ] 
    } 
    ] 
}) 

正如你可以看到,當運行這部分代碼,工具欄dotn就什麼都不顯示,因爲具有屬性「display:none」,但是如果您更改SCREEN SIZE,則最小化,最大化或調整大小看起來就像此屬性留下的一樣,並顯示所有內容。

這是TELERIK KENDO的錯誤嗎?

回答

0

嘗試添加「重要!」:

attributes: { 
     style: "display:none !important", 
     } 
+0

你嘗試過至少一個測試你的答案嗎?我想不......不,這不行 – GomuGomuNoRocket

相關問題