Grails indexed parameters

前端 未结 4 1223
悲&欢浪女
悲&欢浪女 2020-12-28 10:10

I have a list of Team objects that have an Integer seed property. I want to edit all the teams\' seeds at once, in a single form. I\'m sure

4条回答
  •  太阳男子
    2020-12-28 10:51

    Not sure if this helps but you could use a closure with it like:

    
         

    id: ${it.id}

    seed: ${it.seed}

    You could probably build a list from this instaed of outputting html. or build your form with it.

提交回复
热议问题