I am wanting to dynamically set the params in a remoteFunction within a check box. I have tried lots of different combinations I'll show a couple below but I just recieve error like below...
so it basically my theory, in the scope of this method doesn't have a clue what an eventInstance is
In FireBug error console I receive ReferenceError: eventInstance is not defined
Test Combination 1
<g:checkBox name='completed' value="${eventInstance.completed}"
onclick="${remoteFunction(action:'update', id:eventInstance.id, params:'\'id=\' + eventInstance.id+\'&version=\' + eventInstance.version' , onComplete: "tester()" )}" />
Test Combination 2
<g:checkBox name='completed' value="${eventInstance.completed}" evt="${eventInstance}"
onclick="${remoteFunction(action:'update', id:eventInstance.id, params:"[version=evt.version, editType='occurrence', title=evt.title, startTime=start, endTime=end, isRecurring=evt.isRecurring, completed='true']", onComplete: "tester()" )}" />
This works if manually entering i.e. hard-coding the data in but this is no use. Something silly which I just can't find the answer to :(
ReferenceError: eventInstance is not definedshown, firebug or the web page? – Jinzhao Wu Jan 16 at 16:36