Hi Folks,

I think I'm missing something obvious here, but would appreciate a shove in 
the right direction.

I have a page with two links on it, and I want both to run the same listener 
method on the page class.

So I want to have

<a href="#" t:type="ActionLink" t:id="openUseCase" 
context="useCaseBaseline.useCaseSerial">${useCaseBaseline.name}</a>

at two points in my page (actually both are in a loop), and then in my code I 
want to have

@OnEvent(component="openUseCase")
public SingleUseCase openUseCase(int pUseCaseSerial)
{
  // blah
}

My problems are:

1) I can't have two ActionLink's with the same id
2) If I have unique ids, then I can't have two OnEvent annotations on the same 
method.

Cheers,

Tim.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to