Announcement

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

    DynamicForm inside Window

    Hi,

    I'm trying to insert a DynamicForm into a Window kinda like SC.askForValue but with a more complex form.

    Problem is all form items don't respond well to direction arrows (cursor doesn't move accordingly)

    Code:
    		Window w = new Window();
    		w.setTitle("hi");
    		TextItem ti = new TextItem("mytext", "Text");
    		DynamicForm df = new DynamicForm();
    		df.setFields(ti);
    		w.addItem(df);
    		w.centerInPage();
    		w.setWidth(400);
    		w.show();
    If I switch addItem() to addChild() or addMember() the cursor moves OK but the layout is scrambled.

    I have SmartGWT 2.2 on GWT 2.03.
    I have this issue with FF 3.6, IE 6. Works fine on Chrome

    Thanks for your help.

    Regards,

    #2
    It's a known issue and has already been fixed on SVN.

    Comment


      #3
      Thanks,

      Is there any revision number i can look at ?

      Comment

      Working...
      X