1
我正在使用EXT JS 3.4。在瀏覽器上放大縮小時,工具提示無法正常顯示
我的列模型的代碼如下所示: - 列模型的My Ext.grid.Column是從數據庫中像這樣配置的。
{
header: "Title Alias",
type: "STRING",
dataIndex: "order#title_alias",
width: 80,
tooltip: "Title Alias",
sortable: "true",
filter: {
test: "/^{0}/i"
}
}
QUERY:刀尖在兩行所示
Ext.QuickTips.init();
cm = new Ext.grid.ColumnModel({
columns : cols // the cols is getting generated from the database
});
在上面的代碼中提到的cols JSON數據如下生成。我希望工具提示根據文本調整其寬度 ,工具提示文本應該以單行顯示。
BOUNDATION:無法修改「cols」。
方法:我們可以重寫或應用某種配置的快速提示。可能嗎。