-
22 Jul 2008 1:04 PM #11
I'm using GXT 1.01 for all my testing. I notice none of the icons are showing - none at all... so I'm wondering if you have some other problem going on. What about HTML file - what does that look like? CSS or other problems must exist? What about FF or IE - same issue?
-
22 Jul 2008 2:07 PM #12
Thanks for the help
Thanks for the help
Hi gslender,
Your suggestion to look at the CSS file help me to find the actual problem.
I removed the entries in the CSS and It worked. Tank you very much for helping to solve this.
Regards
Karthick
-
25 Jul 2008 8:12 PM #13
updated wizard to offer optional progressbar support (instead of simple green dots) and option for displaying main image on left side....
-
8 Aug 2008 2:07 AM #14
I missed some of the localization features ("Step x of y" and buttons).
Except of corrections in the code, there is no other means of changing text "Step" and "of". So i provided a method wizwin.setStepStrings("Step", "of");
All of the button texts are in public scope on an WizardWindow instance, however only next and finish texts make change, since all buttons are constructed as instance variables and are not updated from there on, so i provided an overloaded constructor.
Code, that I use, is attached.
Thanx for a great wizard solution.
-
8 Aug 2008 2:24 PM #15
Good points and I've updated the code to address this - I didn't use your suggested code and instead decided to refactor the wizard to create buttons in the onrender which means I can create get/set methods for the text. Now you can create the wizard, set the text and it will render correctly...
-
4 Sep 2008 4:52 AM #16
Hi,
is it possible to disable the "Finish" button? I tried
but it didn't work...Code:wc.addFinishListener(new Listener<BaseEvent>() { public void handleEvent(BaseEvent be) { // ... some validation... be.doit = false; } });
-
4 Sep 2008 6:02 AM #17
do you mean stop it closing the wizard window or making it disabled?
-
4 Sep 2008 9:26 AM #18
Both ways would be fine.
The problem is that i have a GWT FileUpload (within acom.google.gwt.user.client.ui.FormPanel) on the last Wizard page, so there is no validator on that page. Nevertheless i need the FileUpload to get validated, so that the wizard won't finish until a valid file was selected...
Many thanks for your efforts!
PS: I really miss a build-in GXT FileUpload
Is there a release date for such a thing? The Roadmap says "Summer 2008"...
-
4 Sep 2008 1:06 PM #19
The feature you need might already exist...
isValid is called on any form that is set in the wizardcard before continuing (and finishing) so would that not help? (ie if your formpanel has an isValid() function then it is being checked and would only continue to exit the wizard if true was returned - see updateWizard() in WizardWidow)
If not, what specifically extra would you need?
-
5 Sep 2008 12:32 AM #20
Unfortunately there is no com.extjs.gxt.ui.client.widget.form.FormPanel at all on the last WizardCard, because i want to use FileUpload there and therefore have to use com.google.gwt.user.client.ui.FormPanel.
So no isValid() gets called and the Wizard can be finished no matter what is specified by the FileUpload widget.


Reply With Quote