Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在每个道场网格行中插入行号作为序列号?当网格被过滤或排序时,这不能改变..任何想法?
我找到的解决方案是在网格结构中使用“get”
添加
function siFormatter(index){ return index + 1; }
并将其添加到网格结构中 -
{field: "Si", name: "#", get : siFormatter, filterable: false}
使用网格中的 canSort 函数禁用此列的排序
不知道是否有其他更好的解决方案..