Re: How to load a website in a panel

2009-04-19 Thread Salvador Diaz
Load each site in a different iframe (http://www.w3.org/TR/html401/ present/frames.html#h-16.5) If you want it to be done after a button click: Button button = new Button(load iframes); button.addClickListener(new ClickListener(){ public void onClick(Widget sender){ //get the

Re: How to load a website in a panel

2009-04-19 Thread Darkflame
gwt frame widget helps for this; Frame frame = new Frame(http://www.google.com/;); frame.setWidth(100%); frame.setHeight(700px); RootPanel.get(demo).add(frame); On Apr 19, 11:55 am, Salvador Diaz diaz.salva...@gmail.com wrote: Load each site in a different iframe (http://www.w3.org/TR/html401/

How to load a website in a panel

2009-04-18 Thread jaga.mcap...@gmail.com
Hi, How to load four different pages in single page. If i clicked a button , four different websites(e.g : google.com , yahoo.com , wikipedia.com, gmail.com) to be load in my page . Actually i want to know , what is the code to load the website in a panel . By