r500

Results 18 comments of r500

Controller: def workspaceGrid = { ``` dataSourceType 'gorm' domainClass workspace gridImpl 'jqgrid' initialCriteria { } columns { id { type 'id' jqgrid { hidden=true } } name } } ```...

``` function customShowFormat(cellvalue, options, rowObject){ return "" + cellvalue + " "; } ``` grid:grid name="workspace" addUrl="${g.createLink(controller: 'assigned', action: 'workspace')}"> grid:set caption="workspace" width="800"/> grid:set col="id" formatter="f:customShowFormat" /> grid:set col="name" width="60"...

How do I pass external parameters to view from controller method. Ex: username, list of particular group users. If try to access existing bean userService which handles springSecurity it complains...

tudor, For some reason formatter is not getting called for jqgrid. I have put alert but it doesnt go there. My application already has jqgrid plugin and looks like both...

Here is what I am trying to achieve. I had to remove left < symbol to see on the preview. I have to create link under each 'Code' column by...

Tudor, Not sure you got chance to look at this issue. My lead is pressuring me to solve this issue. I have tried several versions of hyper link. None are...

Nothing much. Ex: Think I have two columns. One is 'id' and other is 'code'. Put a link under 'code' column by passing id. I want to hide id column....

This time I am trying to put link under Id column. I don't see any errors on console. I am using same Controller to get data and create link which...

Look at below code. For some reason formatter is not working. I have copied my local code and grails pet clinic code. How do I go about fixing this one?...