2
我無法使用Firefox的查找功能(Ctrl-F)來處理Ext.grid.Panel。我希望能夠使用它來查找網格中的字符串。這如何實現?ExtJS 4網格不能在Firefox中使用Ctrl-F
我無法使用Firefox的查找功能(Ctrl-F)來處理Ext.grid.Panel。我希望能夠使用它來查找網格中的字符串。這如何實現?ExtJS 4網格不能在Firefox中使用Ctrl-F
嘗試加入這個CSS(EXT-all.css後裝):
.x-grid3-row td,
.x-grid3-summary-row td,
.x-grid3-cell-text,
.x-grid3-hd-text,
.x-grid3-hd,
.x-grid3-row {
-moz-user-select:inherit;
-khtml-user-select:text;
}
參見:condor's solution對於更精細的方法。
注意:*這也可以在網格中選擇文字。