You need to sign in to do that
Don't have an account?
Shamil
Popups in Visualforce
Hello,
Does anybody have and idea of how to implement Ajax-style popups in Visualforce? Is there a way to avoid javascript?
An example would be a table with multiple columns and rows. Data in column one is a hyperlink that would popup a child window that would have some input fields and buttons on it with some custom logic.
I can't simply hide/show certain area of the page (like in the following example Visualforce Sample - Dynamic Edit Page) because I don't know how many rows are going to be in the table.
Thanks!
Does anybody have and idea of how to implement Ajax-style popups in Visualforce? Is there a way to avoid javascript?
An example would be a table with multiple columns and rows. Data in column one is a hyperlink that would popup a child window that would have some input fields and buttons on it with some custom logic.
I can't simply hide/show certain area of the page (like in the following example Visualforce Sample - Dynamic Edit Page) because I don't know how many rows are going to be in the table.
Thanks!
Check out www.extjs.com. They have some great UI components that work very well in a Visualforce page.
The reason I am trying to avoid javascript is because I'd like to have all the business logic inside VF controller, and in that way to comply with MVC pattern.
Thanks
Hi Cool_D, unfortunately I haven't made any progress in this direction.
However, I do think that EXTJS and other similar third party libraries can be used to achieve this functionality.
I will keep researching on this.
Hey, Cool_D
Here is what I found today:
http://wiki.apexdevnet.com/index.php/Visualforce_Popup
HTH
Well, i was trying to use YUI, but it seems it has limited usage as it is GPL.
But can i use its components for some implmentations??
Thanks,
Cool_D