0

I'd like to have my jqGrid first column to be the rowid

number | name | class
1 | A | acceptable
2 | B | good
3 | C | bad

or add first column like this (picture)

https://docs.google.com/file/d/0Bxi6bFcYZ_MgYTI1dUJCMWEtd0E/edit

how to get the rowID in jqGrid on the first column by setting the option?

4

1 回答 1

0

我想你的意思是行号而不是 rowID。要添加带有行号的列,您可以rownumbers: true向 jqGrid 添加选项。如果您确实需要显示rowid,那么您必须扩展colModel相应的列并填充该列的值,就像您填充所有其他列的数据一样。

此外,我建议您使用height: "auto"选项来提高网格的可见性或使用替代scrollOffset: 0选项,这将删除为垂直滚动条保留的网格一侧不需要的位置。

于 2013-07-24T12:24:39.553 回答