You need to sign in to do that
Don't have an account?

when click on account name then display the popup along with same account name record details
HI
In my vf page i am displating all account records (by using <apex:pageBlockTable> ) it is done here my problem is
when i am click on account name ( any one from displayed account names) then immediately display one popup in that popup should display that account name record details
In my vf page i am displating all account records (by using <apex:pageBlockTable> ) it is done here my problem is
when i am click on account name ( any one from displayed account names) then immediately display one popup in that popup should display that account name record details
As we can find in this link (https://developer.salesforce.com/forums/?id=906F000000097X9IAI), we can use this pop up modal and display the necessary data for the corresponding account using commandLink and paramters, you can find the above code which achieves the same, depending on your acoount details to be displayed feel free to add some getter setters to display necessary data however if you need to display all the details for that account which is not suggestable to achive in a modal view. follow this link to open in a new window. (https://www.youtube.com/watch?v=zoSmVnVKEzs)
If this solves your problem please choose this as the best answer.
Thank you!
All Answers
You can proceed with something along the above lines. For popups refer to modals of framework like bootstrap https://www.w3schools.com/bootstrap/bootstrap_modal.asp (https://www.w3schools.com/bootstrap/bootstrap_modal.asp" target="_blank)
As we can find in this link (https://developer.salesforce.com/forums/?id=906F000000097X9IAI), we can use this pop up modal and display the necessary data for the corresponding account using commandLink and paramters, you can find the above code which achieves the same, depending on your acoount details to be displayed feel free to add some getter setters to display necessary data however if you need to display all the details for that account which is not suggestable to achive in a modal view. follow this link to open in a new window. (https://www.youtube.com/watch?v=zoSmVnVKEzs)
If this solves your problem please choose this as the best answer.
Thank you!