1
A
回答
0
這樣的事很簡單嗎? (對於Toolbar
的add
方法的默認對象是Button
。看一看ExtJS API documentation,如果你想要的東西更花哨。)
gridPanel.getTopToolbar().add({
text:'<a href="http://www.stackoverflow.com">Visit Stackoverflow.com</a>'
});
0
提供的ExtJS的GridPanel中標題欄的鏈接。
我將在網格面板的工具配置中創建一個按鈕,並將其UI設置爲普通, 也可以根據您的要求編寫處理程序。
Ext.create('Ext.grid.Panel',{
title: 'Demo Grid Panel'
tools: [
{ ui: 'plain',text: 'Open Window', handler : function(){ //link handler}}
]
});
相關問題
- 1. Extjs GridPanel驗證
- 2. ExtJS GridPanel寬度
- 3. 的GridPanel的ExtJS選擇行
- 4. 帶Textfield列的ExtJS Gridpanel
- 5. Extjs中的GridPanel未加載
- 6. ExtJS Gridpanel列寬+ forcefit
- 7. ExtJS GridPanel行點擊
- 8. extjs gridpanel not showing scrollbars
- 9. 的ExtJS的GridPanel沒有加載JSON
- 10. ExtJS的 - GridPanel中的所有檢查
- 11. ExtJS GridPanel numberColumn - 排序問題
- 12. sencha extjs GridPanel SaveState格式
- 13. EXTJS GridPanel選擇模型
- 14. EXTJS 4.1 - 如何GridPanel中
- 15. ExtJs Gridpanel Json商店更新
- 16. ExtJs Gridpanel商店刷新
- 17. ExtJS Gridpanel導出爲excel
- 18. 獲取Extjs GridPanel的修改列排序
- 19. ExtJs - 通過Gridpanel索引的getRow
- 20. ExtJS - 帶有Ext.ux.grid.FilterRow和Ext.PagingToolbar的GridPanel
- 21. ExtJS的GridPanel中選擇模式
- 22. 在Extjs中刪除GridPanel的headertoolbar
- 23. ExtJS:專注於GridPanel中的單元格
- 24. 將數據附加到GridPanel的ExtJS
- 25. ExtJs moveAfter gridpanel上的列很慢
- 26. 如何隱藏ExtJS GridPanel中的行?
- 27. ExtJS的GridPanel中拖放功能
- 28. ExtJS的GridPanel中加載datafrom數據庫
- 29. ExtJS的3.4 GridPanel中不FormPanel中
- 30. ExtJS中的垂直滾動條GridPanel
ThanQ烏拉圭回合重播,但IAM沒有得到(我wnat到dislay與呼叫控制顯示消息的鏈接按鈕alnog) – MNR 2011-04-15 07:48:19
對不起,我不明白是什麼問題。上面的代碼應該添加一個新的按鈕到你的工具欄。你可以在'text'配置選項中放置你想要的任何文本,HTML標記也是允許的。 – Tommi 2011-04-15 07:55:48