Re: how to add higher Z-index to collapsible panel which will not override the menubar z-index

2009-10-01 Thread r...@n

Hi Jerome.

Have you solved the issue?
Because I've got similar problem with CollapsiblePanel, GlassPanel,
and DialogBox.
May be my example could help you.

I am using CSS from incubator demo where z-index of CollapsiblePanel
is 100:
.gwt-CollapsiblePanel .container {
...
z-index: 100;
...
}

but whenever Collapsible Panel is pinned my GlassPanel tucked under
CollapsiblePanel
so I've increased z-index for GlassPanel to be higher then of
CollapsiblePanel:
.gwt-GlassPanel {
z-index: 101;
}

but after that my dialog box became under GlassPanel so I've increased
it's z-index too:
.gwt-DialogBox {
z-index: 102;
}

After that all widgets behaved as I expected.
It would be easier to say something about your case if you could post
here your CSS z-index values for your CollapsiblePanel, Scrolltable,
and menu.

Roman.

On Sep 22, 11:35 pm, Jerome  wrote:
> Hi,
>
> I am using the gwt-incubator scrolltable and CollapsiblePanel.
> Initially  had problems withz-indexof CollapsiblePanel since it was
> tucked under the Scrolltable so i added higherz-indexto it and that
> worked fine but in the event the i have menu which got tucked under
> the CollapsiblePanel now i tried various conbinations ofz-indexstill
> menu is getting tucked underneath the CollapsiblePanel.
>
> Anybody have any thoughts on the issue?
--~--~-~--~~~---~--~~
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: could not add gin the project

2009-08-13 Thread r...@n

Thank you! :-)

On Aug 13, 12:35 am, jhnclvr  wrote:
> I had this same issue. You are probably missing a jar on the project
> build path. Either you are missing the Gin jar (which is unlikely),
> The Guice jar(also unlikely), or you are missing the Aopalliance jar
> (this is the one I was missing). You can download this jar 
> from:http://sourceforge.net/projects/aopalliance/. Add it to your build
> path and hopefully you should be good to go.
>
> On Jul 29, 3:40 pm, "r...@n"  wrote:
>
> > No, I've got it there. And I'm sure I've done everything tutorial says
> > I have to. What else cool be wrong?
> > Could gin conflict with some other modules?
>
> > My SearchModule.gwt.xml
> > 
> >  > EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-
> > source/core/src/gwt-module.dtd">
> > 
> >   
> >   
>
> >   
> >   
> >   
> >   
> >   
> >   
>
> >   
> >   
> >   
> >   
> >   
>
> >   
> >   
>
> >   
> >   
> > 
>
> > On Jul 28, 9:31 am, Norman Maurer  wrote:
>
> > > You prolly missed to add the following line to your ProjectName.gwt.xml 
> > > file:
>
> > > 
>
> > > Bye,
> > > Norman
>
> > > 2009/7/27 r...@n :
>
> > > > Hi, I've tried to add gin DI to the project, but have got an error
> > > > below. I am using gwt 1.7.0 on linux + guice 2.0 + latest gin. I've
> > > > followed all steps in gin tutorial, but when tried to run my app have
> > > > got an exception. I could not understand what is wrong and where to
> > > > look for a solution.
> > > > Please help.
> > > > Thanks in advance.
>
> > > > [ERROR] Failed to create an instance of
> > > > 'ru.rchervot.sanasar.client.SearchModule' via deferred binding
> > > > java.lang.RuntimeException: Deferred binding failed for
> > > > 'ru.rchervot.sanasar.client.MyWidgetGinjector' (did you forget to
> > > > inherit a required module?)
> > > >        at 
> > > > com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:
> > > > 43)
> > > >        at com.google.gwt.core.client.GWT.create(GWT.java:91)
> > > >        at 
> > > > ru.rchervot.sanasar.client.SearchModule.(SearchModule.java:
> > > > 66)
>
> > > > -
> > > > SearchModule.java(SearchModule is my EntryPoint class) line 66:
> > > >        private final MyWidgetGinjector injector = GWT.create
> > > > (MyWidgetGinjector.class);
> > > > 
>
> > > > MyWidgetClientModule.java:
>
> > > > public class MyWidgetClientModule extends AbstractGinModule {
>
> > > >       �...@override
> > > >  protected void configure() {
> > > >    bind(MainPresenter.Display.class).to(MainView.class);
> > > >  }
>
> > > > }
--~--~-~--~~~---~--~~
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: could not add gin the project

2009-07-29 Thread r...@n

No, I've got it there. And I'm sure I've done everything tutorial says
I have to. What else cool be wrong?
Could gin conflict with some other modules?

My SearchModule.gwt.xml

http://google-web-toolkit.googlecode.com/svn/tags/1.7.0/distro-
source/core/src/gwt-module.dtd">

  
  

  
  
  
  
  
  

  
  
  
  
  


  
  

  
  



On Jul 28, 9:31 am, Norman Maurer  wrote:
> You prolly missed to add the following line to your ProjectName.gwt.xml file:
>
> 
>
> Bye,
> Norman
>
> 2009/7/27 r...@n :
>
>
>
> > Hi, I've tried to add gin DI to the project, but have got an error
> > below. I am using gwt 1.7.0 on linux + guice 2.0 + latest gin. I've
> > followed all steps in gin tutorial, but when tried to run my app have
> > got an exception. I could not understand what is wrong and where to
> > look for a solution.
> > Please help.
> > Thanks in advance.
>
> > [ERROR] Failed to create an instance of
> > 'ru.rchervot.sanasar.client.SearchModule' via deferred binding
> > java.lang.RuntimeException: Deferred binding failed for
> > 'ru.rchervot.sanasar.client.MyWidgetGinjector' (did you forget to
> > inherit a required module?)
> >        at com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:
> > 43)
> >        at com.google.gwt.core.client.GWT.create(GWT.java:91)
> >        at ru.rchervot.sanasar.client.SearchModule.(SearchModule.java:
> > 66)
>
> > -
> > SearchModule.java(SearchModule is my EntryPoint class) line 66:
> >        private final MyWidgetGinjector injector = GWT.create
> > (MyWidgetGinjector.class);
> > 
>
> > MyWidgetClientModule.java:
>
> > public class MyWidgetClientModule extends AbstractGinModule {
>
> >       �...@override
> >  protected void configure() {
> >    bind(MainPresenter.Display.class).to(MainView.class);
> >  }
>
> > }
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



could not add gin the project

2009-07-27 Thread r...@n

Hi, I've tried to add gin DI to the project, but have got an error
below. I am using gwt 1.7.0 on linux + guice 2.0 + latest gin. I've
followed all steps in gin tutorial, but when tried to run my app have
got an exception. I could not understand what is wrong and where to
look for a solution.
Please help.
Thanks in advance.

[ERROR] Failed to create an instance of
'ru.rchervot.sanasar.client.SearchModule' via deferred binding
java.lang.RuntimeException: Deferred binding failed for
'ru.rchervot.sanasar.client.MyWidgetGinjector' (did you forget to
inherit a required module?)
at com.google.gwt.dev.shell.GWTBridgeImpl.create(GWTBridgeImpl.java:
43)
at com.google.gwt.core.client.GWT.create(GWT.java:91)
at ru.rchervot.sanasar.client.SearchModule.(SearchModule.java:
66)

-
SearchModule.java(SearchModule is my EntryPoint class) line 66:
private final MyWidgetGinjector injector = GWT.create
(MyWidgetGinjector.class);


MyWidgetClientModule.java:

public class MyWidgetClientModule extends AbstractGinModule {

@Override
  protected void configure() {
bind(MainPresenter.Display.class).to(MainView.class);
  }

}

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---