Thanks for the direction...Got it working!! Cheers!
On Jan 26, 2012, at 4:03 AM, François Facon wrote:
> And also
>
> The handler of
>
>class="report" t:zone="myZone" t:context="${host.hostid}">
>
> Delete ${host.hostid}
>
>
> something lik
And also
The handler of
Delete ${host.hostid}
something like
@OnEvent(value = EventConstants.ACTION)
Object showDetail(int hostid)
{
if (!request.isXHR()) { return this; }
host.hostid = hostid;
return myZone;
}
on server s
Hi
If your dialog is in some kind of a loop you have to ensure t:clientId is
unique for each dialog
something like
...
Link
and then in your java file
public String getDialogId(){
return "myDialog" + loopIndex;
}
regards
Taha
On Jan 26, 2012, at 2:43 AM, Russell John-Baptistr wrote:
Hi
Did you check the code related to http://tapestry5-jquery.com/core/docsgrid?
2012/1/25 Russell John-Baptistr :
> trying to wrap my brain around how I should pass IDs from my
> jquery.dialogajaxlink to my jquery.dialog.
>
> I am using query builder to build a list of hosts. I can display the i