sarsnake
sarsnake

Reputation: 27733

JqGrid features question

Using this Jquery plug-in http://www.trirand.com/blog/jqgrid/jqgrid.html

How do you:

Thanks

Upvotes: 0

Views: 347

Answers (1)

Kenny Shen
Kenny Shen

Reputation: 4883

Editing a cell is indeed possible.

For e.g. I have a row defined as

{name:'Weather', index:'weather', width:150, align:'center', editable:true, edittype:"select", editoptions: {value: "--:Unknown;-1:Rainy;1:Sunny;100:Cloudy;0:Clear"}},

There're methods in jqgrid like saveCell and editCell you can also call. For more information, see this:

http://www.trirand.com/jqgridwiki/doku.php?id=wiki:cell_editing

Upvotes: 1

Related Questions