我已經正在使用DGrid這樣的:DGrid:適合列數據
var dgrid = new OnDemandGrid({
store: myStore,
columns: [
{field: "name"},
{field: "age"}
],
showHeader: false
},divName);
dgrid.startup();
這是目前上漿本身是這樣的:
我想的第一列尺寸擬合最長的一段數據:
如果最長的名稱是從存儲中刪除的第一行應該調整本身是這樣的:
I have created a JSFiddle with a DGrid as a template for answers.
編輯:我看到Sitepen article漿紗DGrid但它不」不要提及如何解決這個問題。
編輯2:有人在another forum問相同的問題。
爲什麼不在'CSS'中使用'min-width'?當內容小於它時,它將保持'min-width'並在內容大於寬度時擴展以適應內容。 –