dany
dany
Yes, the demo still uses Directive, which was deprecated in RC6.
I'm using datatables, so i'll use the value closure. thanks!
using the value closure I'm getting the following error on filter : (I had to change the value from it.id, it.name to it.ingredient.id, it.ingredient.name) ``` Message: null Line | Method...
``` static grids = { recipeGrid { dataSourceType 'gorm' domainClass Recipe gridImpl 'dataTables' fixedColumns true columns { user { label "user.label" property 'user.name' } 'ingredient.name'{ value{ "${it.ingredient.name}"; } } deliveryType...
Hi, Ye the recipe has only one ingredient. it's the main ingredient. Your grid works except for the filter in both the ingredient and the delivery type : for ingredient...
Thanks this works, it even works with 'formatName' when i add filterProperty. one thing for the deliveryType ``` filterConverter { val -> DeliveryType.values().find { it.name().toLowerCase().contains(val.toLowerCase()) } } ``` returns all...