I am using jqgrid with ASP.NET MVC 3.
I want to hide the sub grid's '+' option, based on some value from one of the main grid column.
For example. I have a grid with the following columns
- Name
- Cars
- Salary
- CarCount
Now if the if the CarCount is > 0 then I want a subgrid which I have done and is working.
But for CarCount = 0 I dont want to show an empty subgrid, so in such cases I want to remove the expand option itself.
Please help on this.