Thank you for reporting this bug. We will make it our priority to review this report.
  1. #1
    Ext GWT Premium Member
    Join Date
    Nov 2011
    Location
    Belgium
    Posts
    5
    Vote Rating
    0
    joostb is on a distinguished road

      0  

    Default [CLOSED] Undesired top/left margin around viewport with borderlayoutcontainer

    [CLOSED] Undesired top/left margin around viewport with borderlayoutcontainer


    I used the following code snippet and I cannot get rid of the unwanted margin on the left and top of the viewport

    Code:
    public class MySampleApplication implements EntryPoint, IsWidget  {
    
        public void onModuleLoad() {
            Viewport viewport = new Viewport();
            viewport.setWidget(this);
            RootPanel.get().add(viewport);
        }
    
    
        public Widget asWidget() {
    
    
               final BorderLayoutContainer con = new BorderLayoutContainer();
               con.setBorders(true);
               con.setLayoutData(new MarginData(0, 0, 0, 0));
    
    
               return con;
           }
    }
    it shows up as (tried it in chrome and ie9) :
    marginissue.jpg
    Am I overlooking something here?

  2. #2
    Software Architect
    Join Date
    Sep 2007
    Posts
    13,691
    Vote Rating
    107
    sven is just really nice sven is just really nice sven is just really nice sven is just really nice

      0  

    Default


    This looks like you are not loading the reset.css file.

  3. #3
    Ext GWT Premium Member
    Join Date
    Nov 2011
    Location
    Belgium
    Posts
    5
    Vote Rating
    0
    joostb is on a distinguished road

      0  

    Default


    Thanks Sven for responding (on a sunday )
    You were right, the path to my 'reset.css' had a typo, all is fine now