Hi ,
I need to open a popup from a
jsf page.
I tried with 2 options-
1. h:commandlink
Problem- It doesnot have onclick event so not able to show popup
2. h:outputlink
problem- it doesn't have action or actionListener.
Actually what i am doing is that--
My application has a datatable and one column has h:commandlink (Store Number)
on click on that i need to interacted with database and open a popup which will show the details of the particular store.
so for that one i need to on bean methos and pass the store number to that method.
How can i implement these in JSf.
Please help.