cancel
Showing results for 
Search instead for 
Did you mean: 

unable to trigger event in jspdynpage component

govardan_raj
Contributor
0 Kudos

hi experts,

we have a developed a portal abstract component of type jspdynpage , in the jsp page we have a button , and onClick specified a event whose name is Login, and same event  is defined in the jspdynpage controller also , so when ever end user clicks on Logon button this event should be called in the jspdynpage component , but in our case it is not being called .

bellow I have attached the jsp page source code  and here is the event method

public void Login(Event e)  throws exception

{

     xxxxxxxx;

xxxxxxxx;

}

this event is not getting triggered when im trying to click on the logon button, instead the doProcessAfterInput() method is being called ,

please help me to sort out the issue and also here we are getting another warning message like Unknown tag(hbj:content) in the jsp where ever we use hbj tags .

Regards

Govardan Raj S

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello there,

the event method's name is incorrect. Using "onClickLogin" instead of "Login" should do the trick.

Regards,

Tanja