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.
我使用 Flexigrid 的简单解决方案(示例 1)
http://www.flexigrid.info/
我想要做的是将其中一列中的文本对齐到右侧。有没有办法在不连接到 JSON 文件的情况下执行此操作(示例 3)?
使用 colModel 并将该列设置为对齐:'right'。查看您链接的页面上的最后一个示例以获取语法。
colModel: [ { display: 'Col1', name: 'Col1' }, ... { display: 'Col4', name: 'Col4', align: 'right' } ]