Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    NEW wizard widget

    Hi,
    I've created a new wizard widget for SmartGTW.
    How can I upload it to smartgwt-extensions?

    Best regards
    Dekel

    #2
    hi,

    u can check this link for that

    http://code.google.com/p/smartgwt-extensions/

    Whats the new widget ..can u attach a screen of that ...

    Comment


      #3
      This is a wizard framework for SmartGWT.
      You can add pages and the wizard will take care of the buttons state(next, back finish and cancel).

      Comment


        #4
        1. What is the different between mainprojects and smartgwt-desktop projects in the svn?
        2. Do I need permissions to check in code? (I see that the project is a maven project)

        Comment


          #5
          Oh ,thats good

          hope you have a method to add the pages or canvas to a list or something like that.

          and show widgets by setting some pointer reference ..
          for each next and back click u may increment or decrement the index and show the list.get(index).setvisible(true)..rt?

          ok,its good contribution..

          Comment


            #6
            Yes, all features you mentioned above and also a listener onPageDisplayed so you can add your own functionality when a page is displayed.

            Comment


              #7
              Hi
              You can also send a mail to isomporphic

              http://www.smartclient.com/company/c...lue=consulting

              They will guide u for check in process and add you a project member.

              Comment


                #8
                Originally posted by ym
                1. What is the different between mainprojects and smartgwt-desktop projects in the svn?
                2. Do I need permissions to check in code? (I see that the project is a maven project)
                Please send me your google ID and I'll add you as a commiter.

                Thanks,
                Sanjiv

                Comment


                  #9
                  Originally posted by ym
                  Yes, all features you mentioned above and also a listener onPageDisplayed so you can add your own functionality when a page is displayed.
                  Ya ,of course..
                  But am not in research department but development.so can do only according to the requirements.
                  Also i have developed some widgets as per requirements
                  1. Custom Carousel component
                  2. A graphic Flow between widgets

                  smartgwt is a flexible tool ,we can customize with requirements..

                  Your widget is a useful one too. and i just look on it,i got the logic behind so i mentioned may someone can help it ..
                  Last edited by vinuriyer; 29 Jul 2011, 23:03.

                  Comment


                    #10
                    Here is a sample code:

                    Code:
                    public class SimpleWizard extends GWTWizard {
                    
                    	public SimpleWizard() {
                    		super("Simple Wizard");
                    	}
                    
                    	@Override
                    	protected List<WizardPage> createPages() {
                    		List<WizardPage> pages = new ArrayList<WizardPage>();
                    		pages.add(new Page1(this));
                    		pages.add(new Page2(this));
                    		return pages;
                    	}
                    
                    	@Override
                    	protected boolean performFinish() {
                    		return true;
                    	}
                    
                    }
                    
                    public class Page1 extends WizardPage {
                    
                    	public Page1(Wizard wizard) {
                    		super(wizard);
                    	}
                    
                    	@Override
                    	public boolean canFinish() {
                    		return false;
                    	}
                    
                    	@Override
                    	public String getTitle() {
                    		return "Page1 title";
                    	}
                    
                    	@Override
                    	protected Canvas createContent() {
                    		VLayout vLayout = new VLayout();
                    		vLayout.setHeight100();
                    		vLayout.setWidth100();
                    		vLayout.addMember(new Label(getTitle()));
                    		return vLayout;
                    	}
                    
                    }

                    Comment


                      #11
                      Originally posted by sjivan
                      Quote:
                      Originally Posted by ym
                      1. What is the different between mainprojects and smartgwt-desktop projects in the svn?
                      2. Do I need permissions to check in code? (I see that the project is a maven project)

                      Please send me your google ID and I'll add you as a commiter.

                      Thanks,
                      Sanjiv
                      ho ho ,the isomorphic guys got interested on your widgets ..
                      enjoy !!

                      Comment


                        #12
                        sjivan,
                        Is it possible to send a private message on this forum?
                        I would like to send you my google id.

                        Comment


                          #13
                          hi Dekel,

                          you uploaded the code itself,thats good, anyone can make use of it well..
                          Then I appreciate your work and keep up more widgets as well..

                          Hi sjivan,

                          Dekels widget is a useful one.can u add to smartgwt 2.5 ? so its a better way to use the developers as well.Also appreciate dekels work and give rewards too. so that others will be impressed of this and will be encouraged to make more widgets too.

                          Cheers
                          Vinu
                          Last edited by vinuriyer; 29 Jul 2011, 23:04.

                          Comment


                            #14
                            How do I check in files?
                            I get "405 Method Not Allowed".
                            Do I need to put my user and password somewhere?

                            Comment


                              #15
                              Originally posted by ym
                              How do I check in files?
                              I get "405 Method Not Allowed".
                              Do I need to put my user and password somewhere?
                              I've added you as a commiter to the smartgwt extensions project. Use the password on the Google Code "Source" tab of the project page. You'll need a SVN client like SmartSVN, Tortiose or IntelliJ in order to work with SVN.

                              Sanjiv

                              Comment

                              Working...
                              X