I'm trying to pass a couple of parameters to a remoteFunction in grails but I'm struggling to format it correctly
I want to pass in the value of a piece of data on the page plus the value of the text box that I have just tabbed out of, so in my onblur I have something along the lines of :
onblur=${remoteFunction(action:'dave', update:'pack'+it.id, params:[denom:document.getElementById(denomValue+${it.id}).value , amount:this.value ])}
This doesn't compile - neither do any permutations I can come up with with varying numbers of single quotes and escape characters ..
I think what is really stumping me is thatI don;t really understand what I am trying to create here. Is it like using JSP code to create JavaScript which iwill be later executed? When does this expression get evaluated - it is at the time the page is compiled - or is a=it at the time that oblur gets called?
Any help greatly appreciated.
Thanks
Dave