Re: [Tacos-devel] Regarding tacos:Dialog...

2006-11-07 Thread Warner Onstine
No problem, glad it worked out :-). -warner On 11/7/06, Miguel Angel Hernández <[EMAIL PROTECTED]> wrote: > Warner, > > Good Morning, > > I worked, I changed the method call exactly as you > > public void pintaPopup() { > Dialog dialogo = > (Dialog)getComponent("DialogContent"); > //

Re: [Tacos-devel] Regarding tacos:Dialog...

2006-11-07 Thread Miguel Angel Hernández
Warner, Good Morning,I worked, I changed the method call exactly as youpublic void pintaPopup() {        Dialog dialogo = (Dialog)getComponent("DialogContent");//        dialogo.show ();        setHidden(false);            }    public void borraPopup() {        Dialog dialogo = (Dialog)getComponent

Re: [Tacos-devel] Regarding tacos:Dialog...

2006-11-06 Thread Warner Onstine
Can you show what's in your .page and .html files? Also, the way that I did it is to have one boolean that was used to show/hide the dialogcomponent by using its built-in hidden paramter rather than calling it through code. Doing it this way though you need to make sure that you use a persistable

[Tacos-devel] Regarding tacos:Dialog...

2006-11-06 Thread Miguel Angel Hernández
Hello everyone,Im using the 4.0.1 sourceforge distribution of tacos. I'm wrapping an AjaxForm inside a Dialog component, an AjaxDirectLink shows to show the dialog and a the dialog hides itself after the submit... something like this:At the Class:public void pintaPopup() {         Dialog dialogo =