DateBox DatePicker popup is not showing up!

2009-05-31 Thread John_Idol
Hi All, I am following this example and the example in the DateBox specification - so I have smt like this in my OnModuleLoad: public void onModuleLoad() { _dateBox = new DateBox(); _dateBox.setValue(new Date()); RootPanel.get().add(_dateBox); } Problem is when I click on the

Re: DateBox DatePicker popup is not showing up!

2009-05-31 Thread John_Idol
When I said *this* example I meant to include the link but I didn't -- http://gwt.google.com/samples/Showcase/Showcase.html#CwDatePicker On May 31, 8:30 pm, John_Idol giovanni.id...@gmail.com wrote: Hi All, I am following this example and the example in the DateBox specification - so I have

Re: DateBox DatePicker popup is not showing up!

2009-05-31 Thread John_Idol
my BAD -- had a look with firebug and it was there behind the rest of the stuff, I just had to define the following css class: .dateBoxPopup { z-index: 100; } On May 31, 8:32 pm, John_Idol giovanni.id...@gmail.com wrote: When I said *this* example I meant to include the link

Multiple Entry Points in the same module

2009-05-28 Thread John_Idol
I have multiple entry points in the same module. For example I have an Home entry point for the home page and an Admin entry point for the admin page. entry-point class='com.company.project.client.HomeModule'/ entry-point class='com.company.project.client.AdminModule'/ The way I am setup now -