Re: GWT Developer Plugin for Firefox 9

2011-12-28 Thread Zakaluka
Tested on Windows 7 Home Premium, 64-bit.  No problems at all.

On Dec 22, 4:29 am, Alan Leung acle...@google.com wrote:
 Alright, FF9 tested on all OS. Let me know if you run into any problems.

 http://www.mediafire.com/?831pp1kk5p8kgjd

 -Alan

 On Thu, Dec 22, 2011 at 12:17 PM, Juan Pablo Gardella 







 gardellajuanpa...@gmail.com wrote:
  Hi,

  In Windows XP, the plugin doesn't work.

  Juan

  El 22 de diciembre de 2011 06:30, Alan Leung acle...@google.comescribió:

  I have both 32 and 64 bit linux compiled.

 http://www.mediafire.com/?5tak1zzo6a3yvn0

  Still working on mac and windows.

  -Alan

  On Wed, Dec 21, 2011 at 10:51 AM, tdk kloe...@ics.de wrote:

  it looks like we can't keep up with the development speed of Mozilla :
  (
  As they now released FF 9 the plugin is incompatible (yet again).

  Alan, can you compile it again in your usual speed and timelieness :)
  Your fans you would carry you on their shoulders, vistually ;)

  --
  You received this message because you are subscribed to the Google
  Groups Google Web Toolkit group.
  To post to this group, send email to google-web-toolkit@googlegroups.com
  .
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

   --
  You received this message because you are subscribed to the Google Groups
  Google Web Toolkit group.
  To post to this group, send email to google-web-toolkit@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

   --
  You received this message because you are subscribed to the Google Groups
  Google Web Toolkit group.
  To post to this group, send email to google-web-toolkit@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Get widget size minus decorations

2011-12-26 Thread Zakaluka
I've been able to come up with a tentative solution.  This is on GWT
2.4.  I was looking to put in an image because I want to insert a
small logo in the menu - that way people on small screens don't have
to deal with a large header.

Using only UiBinder (without any Java code) to do this doesn't work.
Even though the HTML code I used was identical to what I put into the
Java file's constructor, it didn't work when that code was transferred
to UiBinder (the image wouldn't show up - inspecting the HTML/JS
showed that it wasn't setting the Image URI properly).  Using a 
character in a MenuItem's HTML property in UiBinder is not allowed and
putting a img tag into the MenuItem didn't work right.  I tried
many, many variations on this theme, including creating a
MenuBar.Resources file, but what I ended up implementing was the
simplest, easiest solution I was able to come up with.

In the UiBinder file, I put in:
g:MenuItem enabled=false ui:field=logo
stylePrimaryName={abcb.logoCss.logosmall}/

In the Java file's constructor:
logo.setHTML(img src='
+
AppBaseClientBundle.INSTANCE.logo_small().getSafeUri().asString()
+ ' /);

Hope this helps someone trying to accomplish something similar.

- z.

On Dec 23, 12:53 pm, Zakaluka zakal...@gmail.com wrote:
 Hello,

 I know this question has been asked before, but the replies are all
 from 2006/2007, so I wanted to see if things have changed.

 Is there any way to get a Widget's width or height minus decorations?
 getOffsetWidth() and getOffsetHeight() only return their respective
 totals (including margin, padding and border).

 Is there some DOM attribute that might be holding this information?

 Thank you,

 z.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic MDI (Multiple Document Interface) question

2011-12-26 Thread Zakaluka
I based my class on the ResizePanel found at 
http://code.google.com/p/resizepanel/
.  I initially extended the concept to include resizing from any edge/
corner, just like on Windows.  However, that introduced too many
corner cases and required logic that greatly increased the complexity
of the resize computations.  In order to allow the dialog box to be
resized on any computer without taxing it too much, I restricted it to
only being resized from the SE corner (bottom-right), same as
ResizePanel.

Here's some poorly pasted code below.  I tried to create a general,
reusable library.  However, there are certain things I do that are
specific to my project in the class.  Still, the resize logic is
pretty simple.

The basic assumptions:
- When resizing, the caption and widget are set to minimum size.  You
could resize them every time the mouse moves during resizing.
However, if the widget is complex, that will seriously slow down the
process.  I found that it was just easier to set them to minimum size
(0px for widget, 32px for caption, in my case) and then reset their
size once the resizing is done.  This looks ugly but is really fast on
all browsers I tested it on.  Obviously, this could be made into a
flag but I haven't bothered to do that yet.  Setting the caption
(especially if it is a custom one like mine) to a minimum size is
critical because, otherwise, it won't let you reduce the size of the
box.
- The logic computes the direction of the cursor.  In this case,
direction really means location.  If the cursor is in the South East
(SE), it initiates a resize computation.  Otherwise, it lets the
dialog box do its default action.
- You have to override the setWidth(String) and setHeight(String)
functions to reduce the caption to its minimum size, otherwise, it'll
never shrink.
- Do not set width to 100% in the CSS for .dialogMiddleCenter (aka,
don't do what it says in the Javadocs for PopupPanel).  Otherwise, the
widget will take up the full window width on certain browser and just
the minimum required on others.  So much for standard CSS.

If you have any other questions, just let me know.

Regards,

z.

  /**
   * Called by each constructor to inject the cursor's CSS resource
and sink
   * mouse events.
   */
  protected void intialize() {
GWT.log(--ResizeDialogBox.initialize());

// Inject the CSS for the mice (not that it's doing any good).
ResizableDialogClientBundle.INSTANCE.cursorCss().ensureInjected();

// Capture the 4 mouse events that we are interested in.
sinkEvents(Event.ONMOUSEDOWN | Event.ONMOUSEMOVE | Event.ONMOUSEUP
| Event.ONMOUSEOVER);

// Initialize variables.
resizing = false;
diagonalCursorOffset = 10;

Scheduler.get().scheduleFinally(new ScheduledCommand() {
  @Override
  public void execute() {
// setSize(100%, 100%);
setSize(200px, 50px);
  }
});
  }

  /**
   * Will re-size the dialog box when it is dragged around from the SE
corner.
   * To move, use the default behavior of dragging the caption.
   *
   * IMPORTANT NOTE: when resizing, the caption and content are set to
minimum
   * size to increase the speed of the resizing, otherwise every mouse
movement
   * would cause a view update, drastically slowing down the app.
   */
  @Override
  public void onBrowserEvent(Event event) {
// GWT.log(--ResizableDialogBox.onBrowserEvent(Event));
CursorCssResource.Direction dir = cursorResizeDirection(event);
if (event.getTypeInt() == Event.ONMOUSEOVER)
  setCursor(dir);

switch (event.getTypeInt()) {
case Event.ONMOUSEDOWN:
  // If it not on the edge for resizing, let the parent handle the
move
  // event (or whatever else).
  if (dir == CursorCssResource.Direction.NONE)
super.onBrowserEvent(event);
  else {
if (!resizing)
  resizing = true;
DOM.setCapture(getElement());
((ResizableDialogBoxCaption) getCaption()).setMinimumWidth();
setWidgetMinimumWidth();
setWidgetMinimumHeight();
  }
  break;
case Event.ONMOUSEMOVE:
  // calculate and set the new size
  if (resizing) {
int cursorX = DOM.eventGetClientX(event);
int cursorY = DOM.eventGetClientY(event);
int initialX = getAbsoluteLeft();
int initialY = getAbsoluteTop();
int width = getContentWidth();
int height = getContentHeight();

// No mirroring effect.
if (initialX  cursorX)
  width = cursorX - initialX;
if (initialY  cursorY)
  height = cursorY - initialY;

super.setWidth(width + px);
super.setHeight(height + px);
  }
  else
super.onBrowserEvent(event);
  break;
case Event.ONMOUSEUP:
  if (resizing) {
// reset variables for next resize
resizing = false;
DOM.releaseCapture(getElement());

// Give the children the good news.
onResize();

// reset cursor

Re: Get widget size minus decorations

2011-12-26 Thread Zakaluka
Hmm, it seems that I posted a reply to an imaginary question that I
thought I had posted to GWT.  In case anyone is still wondering, that
question was: how to add a single image to a MenuBar?

To answer the original question, I went with getting the clientWidth
and clientHeight from the DOM.  These values still include padding,
but that is actually good for what I wanted to do.

Regards,

z.

On Dec 26, 2:15 am, Zakaluka zakal...@gmail.com wrote:
 I've been able to come up with a tentative solution.  This is on GWT
 2.4.  I was looking to put in an image because I want to insert a
 small logo in the menu - that way people on small screens don't have
 to deal with a large header.

 Using only UiBinder (without any Java code) to do this doesn't work.
 Even though the HTML code I used was identical to what I put into the
 Java file's constructor, it didn't work when that code was transferred
 to UiBinder (the image wouldn't show up - inspecting the HTML/JS
 showed that it wasn't setting the Image URI properly).  Using a 
 character in a MenuItem's HTML property in UiBinder is not allowed and
 putting a img tag into the MenuItem didn't work right.  I tried
 many, many variations on this theme, including creating a
 MenuBar.Resources file, but what I ended up implementing was the
 simplest, easiest solution I was able to come up with.

 In the UiBinder file, I put in:
 g:MenuItem enabled=false ui:field=logo
 stylePrimaryName={abcb.logoCss.logosmall}/

 In the Java file's constructor:
 logo.setHTML(img src='
     +
 AppBaseClientBundle.INSTANCE.logo_small().getSafeUri().asString()
     + ' /);

 Hope this helps someone trying to accomplish something similar.

 - z.

 On Dec 23, 12:53 pm,Zakalukazakal...@gmail.com wrote:







  Hello,

  I know this question has been asked before, but the replies are all
  from 2006/2007, so I wanted to see if things have changed.

  Is there any way to get a Widget's width or height minus decorations?
  getOffsetWidth() and getOffsetHeight() only return their respective
  totals (including margin, padding and border).

  Is there some DOM attribute that might be holding this information?

  Thank you,

  z.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Get widget size minus decorations

2011-12-23 Thread Zakaluka
Hello,

I know this question has been asked before, but the replies are all
from 2006/2007, so I wanted to see if things have changed.

Is there any way to get a Widget's width or height minus decorations?
getOffsetWidth() and getOffsetHeight() only return their respective
totals (including margin, padding and border).

Is there some DOM attribute that might be holding this information?

Thank you,

z.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic MDI (Multiple Document Interface) question

2011-12-14 Thread Zakaluka
Just an update in case anyone else is looking into this - I ended up
extending the DialogBox class to add in resize support, a custom
caption that includes close and maximize/resize buttons and handlers
for some additional events (like double-clicking on the caption).
Because DialogBox comes with built-in drag support, it was much
easier.  Also, I find it more lightweight than re-creating even a
simple window manager in GWT.

Thank you all, again, for your help.

Regards,

z.

On Dec 5, 4:19 pm, Zakaluka zakal...@gmail.com wrote:
 Hello all,

 I have been looking into doing an MDI application with GWT.  Is it
 possible to do such a thing with plain GWT, i.e. without using any
 additional libraries like SmartGWT, Ext GWT, etc?

 I have searched in this forum, but the latest posts seem to be from
 2009 (most are even older) and all the projects they reference are
 dead.

 I was thinking that DecoratedPopupPanel with a Composite of some sort
 inside it might do the trick, but I'd love to hear if someone already
 has such a system operational.

 Thank you for your time,

 zak.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Scroll are not coming while using DockLayoutPanel

2011-12-12 Thread Zakaluka
I don't mean to hijack this thread, but I have been looking for the
same thing.

ScrollPanels in a DockLayoutPanel may be okay, but this behavior is
different from general web mechanics and what most people expect - web
pages as a whole scroll, not just small sections (usually, anyway).
There doesn't seem to be any way to get the DockLayoutPanel to expand
past the page's edge to make all the content of the center area
visible.

Adding the DockLayoutPanel to a ScrollPanel doesn't work (even if you
take out the position:relative style from the ScrollPanel div)
because the DockLayoutPanel's center doesn't expand to allow all its
content to fit.  Does anyone know if there is a solution for this.

Regards,

Z.

On Dec 5, 7:18 am, Alexandre Ardhuin alexandre.ardh...@gmail.com
wrote:
 Hi,

 You have to explicitly add ScrollPanel in your DockLayoutPanel to make the
 area scrollable.

 Alexandre

 2011/12/5 saurabh saurabh saurabh.bl...@gmail.com







  Hi everyone,
              I got the following lines of code here:

  DockLayoutPanel doc = new DockLayoutPanel(Unit.PX);
  
   //some code goes here to add widgets to doc
  

  RootLayoutPanel.get().add(doc);

  Now the size of docklayoutpanel here exeeds client window height but I
  am not getting any scroll bars here on browser. I see css property
  'overflow: hidden' could be a problem but taking out all 'overflow:
  hidden' makes it more ugly.
        I hope there would be a better solution to handle this problem

  Thanks in advance

  --
  You received this message because you are subscribed to the Google Groups
  Google Web Toolkit group.
  To post to this group, send email to google-web-toolkit@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic MDI (Multiple Document Interface) question

2011-12-06 Thread Zakaluka
Thank you both for the suggestion.  I'm looking into it now.

Sergey, are you still using the GwtWM project?

Regards,

zak.

On Dec 6, 8:52 am, Armishev, Sergey sarmis...@idirect.net wrote:
 I build my whole MDI Web app withhttp://code.google.com/p/gwtwindowmanager/
 -Sergey







 -Original Message-
 From: google-web-toolkit@googlegroups.com 
 [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Ed
 Sent: Tuesday, December 06, 2011 4:25 AM
 To: Google Web Toolkit
 Subject: Re: Basic MDI (Multiple Document Interface) question

 No problem. I do everything without any external lib (don't wanne be
 dependent of them).
 I would start by looking at code like the gwt windows manager and
 learn from it:http://code.google.com/p/gwtwindowmanager/

 - Ed

 On Dec 6, 1:19 am, Zakaluka zakal...@gmail.com wrote:
  Hello all,

  I have been looking into doing an MDI application with GWT.  Is it
  possible to do such a thing with plain GWT, i.e. without using any
  additional libraries like SmartGWT, Ext GWT, etc?

  I have searched in this forum, but the latest posts seem to be from
  2009 (most are even older) and all the projects they reference are
  dead.

  I was thinking that DecoratedPopupPanel with a Composite of some sort
  inside it might do the trick, but I'd love to hear if someone already
  has such a system operational.

  Thank you for your time,

  zak.

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-web-toolkit?hl=en.

 _
 This electronic message and any files transmitted with it contains
 information from iDirect, which may be privileged, proprietary
 and/or confidential. It is intended solely for the use of the individual
 or entity to whom they are addressed. If you are not the original
 recipient or the person responsible for delivering the email to the
 intended recipient, be advised that you have received this email
 in error, and that any use, dissemination, forwarding, printing, or
 copying of this email is strictly prohibited. If you received this email
 in error, please delete it and immediately notify the sender.
 _

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic MDI (Multiple Document Interface) question

2011-12-06 Thread Zakaluka
Thank you for the link.  It's always better to see the code's
effects.  that's something along the lines of what I was thinking of,
except not making the popups modal.

Looks like the GwtWM project uses SimplePanels within an
AbsolutePanel.  I'm going to try these 2 techniques out and see which
one works better.

Regards,

zak.

On Dec 6, 10:22 am, darkflame darkfl...@gmail.com wrote:
 I dont use a completely full windowing system as such, but my review
 website does use extensive popups to enter data while still looking at
 other information if you wish.
 It does this more or less exactly as you suggested, decorated popups
 containing composites.
 The only modifcations I did was to get the x in the corner so you
 can close the popups.

 http://www.rateoholic.co.uk/

 You have to login to demo the windowing (ie, when you go to post or
 edit reviews, they are new windows).
 You can login via OpenID though.

 In addition I used a combination of iframes to switch between
 different main views of the app without any code needing to reload.
 Its all still very rough around the edges, but I think it shows the
 power of what GWT can do.

 On Dec 6, 6:40 pm, Zakaluka zakal...@gmail.com wrote:







  Thank you both for the suggestion.  I'm looking into it now.

  Sergey, are you still using the GwtWM project?

  Regards,

  zak.

  On Dec 6, 8:52 am, Armishev, Sergey sarmis...@idirect.net wrote:

   I build my whole MDI Web app 
   withhttp://code.google.com/p/gwtwindowmanager/
   -Sergey

   -Original Message-
   From: google-web-toolkit@googlegroups.com 
   [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Ed
   Sent: Tuesday, December 06, 2011 4:25 AM
   To: Google Web Toolkit
   Subject: Re: Basic MDI (Multiple Document Interface) question

   No problem. I do everything without any external lib (don't wanne be
   dependent of them).
   I would start by looking at code like the gwt windows manager and
   learn from it:http://code.google.com/p/gwtwindowmanager/

   - Ed

   On Dec 6, 1:19 am, Zakaluka zakal...@gmail.com wrote:
Hello all,

I have been looking into doing an MDI application with GWT.  Is it
possible to do such a thing with plain GWT, i.e. without using any
additional libraries like SmartGWT, Ext GWT, etc?

I have searched in this forum, but the latest posts seem to be from
2009 (most are even older) and all the projects they reference are
dead.

I was thinking that DecoratedPopupPanel with a Composite of some sort
inside it might do the trick, but I'd love to hear if someone already
has such a system operational.

Thank you for your time,

zak.

   --
   You received this message because you are subscribed to the Google Groups 
   Google Web Toolkit group.
   To post to this group, send email to google-web-toolkit@googlegroups.com.
   To unsubscribe from this group, send email to 
   google-web-toolkit+unsubscr...@googlegroups.com.
   For more options, visit this group 
   athttp://groups.google.com/group/google-web-toolkit?hl=en.

   _
   This electronic message and any files transmitted with it contains
   information from iDirect, which may be privileged, proprietary
   and/or confidential. It is intended solely for the use of the individual
   or entity to whom they are addressed. If you are not the original
   recipient or the person responsible for delivering the email to the
   intended recipient, be advised that you have received this email
   in error, and that any use, dissemination, forwarding, printing, or
   copying of this email is strictly prohibited. If you received this email
   in error, please delete it and immediately notify the sender.
   _

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Basic MDI (Multiple Document Interface) question

2011-12-06 Thread Zakaluka
Sergey,

Thanks for the information.  I'm going to re-create the GwtWM in the
latest GWT and see how it goes (just the very basics).

As for mobile, you are very correct.  I'm setting the project to use
different GUIs for phones, desktops and tablets.

Regards,

zak.

On Dec 6, 11:08 am, Armishev, Sergey sarmis...@idirect.net wrote:
 One more point to consider. This MDI solution is hard to use on mobile phones
 -Sergey







 -Original Message-
 From: google-web-toolkit@googlegroups.com 
 [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Armishev, Sergey
 Sent: Tuesday, December 06, 2011 2:03 PM
 To: google-web-toolkit@googlegroups.com
 Subject: RE: Basic MDI (Multiple Document Interface) question

 I just support this project that I built back in 2009. And it is using GWT 
 1.5.3. So you need some prototyping if you want to start using it on latest 
 GWT. I know about one problem in GWT 2 that I found (and easily fixed) that 
 one name violates CamelCase convention that GWT compiler now testing. You 
 probably need to test it on new browsers as well since library has no new 
 development from 2008.
 -Sergey

 -Original Message-
 From: google-web-toolkit@googlegroups.com 
 [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Zakaluka
 Sent: Tuesday, December 06, 2011 12:40 PM
 To: Google Web Toolkit
 Subject: Re: Basic MDI (Multiple Document Interface) question

 Thank you both for the suggestion.  I'm looking into it now.

 Sergey, are you still using the GwtWM project?

 Regards,

 zak.

 On Dec 6, 8:52 am, Armishev, Sergey sarmis...@idirect.net wrote:
  I build my whole MDI Web app withhttp://code.google.com/p/gwtwindowmanager/
  -Sergey

  -Original Message-
  From: google-web-toolkit@googlegroups.com 
  [mailto:google-web-toolkit@googlegroups.com] On Behalf Of Ed
  Sent: Tuesday, December 06, 2011 4:25 AM
  To: Google Web Toolkit
  Subject: Re: Basic MDI (Multiple Document Interface) question

  No problem. I do everything without any external lib (don't wanne be
  dependent of them).
  I would start by looking at code like the gwt windows manager and
  learn from it:http://code.google.com/p/gwtwindowmanager/

  - Ed

  On Dec 6, 1:19 am, Zakaluka zakal...@gmail.com wrote:
   Hello all,

   I have been looking into doing an MDI application with GWT.  Is it
   possible to do such a thing with plain GWT, i.e. without using any
   additional libraries like SmartGWT, Ext GWT, etc?

   I have searched in this forum, but the latest posts seem to be from
   2009 (most are even older) and all the projects they reference are
   dead.

   I was thinking that DecoratedPopupPanel with a Composite of some sort
   inside it might do the trick, but I'd love to hear if someone already
   has such a system operational.

   Thank you for your time,

   zak.

  --
  You received this message because you are subscribed to the Google Groups 
  Google Web Toolkit group.
  To post to this group, send email to google-web-toolkit@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-web-toolkit?hl=en.

  _
  This electronic message and any files transmitted with it contains
  information from iDirect, which may be privileged, proprietary
  and/or confidential. It is intended solely for the use of the individual
  or entity to whom they are addressed. If you are not the original
  recipient or the person responsible for delivering the email to the
  intended recipient, be advised that you have received this email
  in error, and that any use, dissemination, forwarding, printing, or
  copying of this email is strictly prohibited. If you received this email
  in error, please delete it and immediately notify the sender.
  _

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-web-toolkit?hl=en.

 _
 This electronic message and any files transmitted with it contains
 information from iDirect, which may be privileged, proprietary
 and/or confidential. It is intended solely for the use of the individual
 or entity to whom they are addressed. If you are not the original
 recipient or the person responsible for delivering the email to the
 intended recipient, be advised that you have received this email
 in error, and that any use, dissemination, forwarding, printing, or
 copying of this email is strictly prohibited. If you received this email
 in error, please delete it and immediately notify

Basic MDI (Multiple Document Interface) question

2011-12-05 Thread Zakaluka
Hello all,

I have been looking into doing an MDI application with GWT.  Is it
possible to do such a thing with plain GWT, i.e. without using any
additional libraries like SmartGWT, Ext GWT, etc?

I have searched in this forum, but the latest posts seem to be from
2009 (most are even older) and all the projects they reference are
dead.

I was thinking that DecoratedPopupPanel with a Composite of some sort
inside it might do the trick, but I'd love to hear if someone already
has such a system operational.

Thank you for your time,

zak.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: UI Binder

2009-01-11 Thread Zakaluka

Hi,

The UI Binder is currently listed under the Post-1.6 timeframe.
Seeing as how GWT 1.5.3 is the latest version out there and 1.6 will
come out in the next 3 months, it'll probably be quite a while before
we see UI Binder out in a stable form.

Regards,

z.

ruslanv wrote:
 Hi guys. According to tis blog entry

 http://googlewebtoolkit.blogspot.com/2008/12/whats-ahead-for-google-web-toolkit_10.html

 long-awaited UI Binder extension will be released soon. But the main
 question is WHEN ? Originally October of 2008 was stated as planned
 release date, then after NYE holidays and finally last thing I heard
 was will be released this week. Considering that UI Binder is
 heavily used (according to member of GWT team) inside Google is there
 any real estimate when it's going to be published ? Beta version is
 fine, it's enough to try it out.

 I'm also curious where it will be published - in GWT incubator project
 or as new release of GWT ?

 Thanks.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---