Re: [Wicket-user] DatePicker and ModalWindow

2007-06-03 Thread Eelco Hillenius
I'm not sure whether this (doing header contributions via Ajax) was
ever build into 1.2, but it's one of the things that are certainly
possible with Wicket 1.3. As an example, I added DateTimeField to
org.apache.wicket.examples.ajax.builtin.modal.ModalContent1Page

Eelco

On 6/3/07, Nili Adoram <[EMAIL PROTECTED]> wrote:
> Hi all,
> I have a ModalWindow that displays some panel with a date picker.
> When the ModalWindow is opened via ajax request all java script
> references required by this panel and its date picker are missing.
> Is there a way to tell the Modal window to load all javascript requires
> by its content even before it is rendered?
> Thanks
> Nili
>
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] DatePicker and ModalWindow

2007-06-03 Thread Nili Adoram
Hi all,
I have a ModalWindow that displays some panel with a date picker.
When the ModalWindow is opened via ajax request all java script
references required by this panel and its date picker are missing.
Is there a way to tell the Modal window to load all javascript requires
by its content even before it is rendered?
Thanks
Nili

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Matej Knopp
I don't really know how to reproduce this. For me the datepicker hides 
as soon as it loses focus, so I'm not able to close the window with 
datepicker not hiding.

-Matej

Paolo Di Tommaso wrote:
> Anyway I've found another problem with a DatePicker on a ModalWindow:
> 
> If you open a DatePicker and then close the ModalWindow, the DatePicker 
> does not disappear and remains open.
> 
> I know that a stupid case but at the same time is a really user annoying 
> behaviour.
> 
> Anyone experienced that?
> 
> Paolo
> 
> 
> On 1/26/07, *Matej Knopp* <[EMAIL PROTECTED] > 
> wrote:
> 
> It definitely shouldn't override it. Therefore the !important thing in
> css. I've tried it and it worked well for me.
> 
> -Matej
> 
> 
> Scott Swank wrote:
>  > This seems to be a bit nastier than that -- unless I'm missing
> something
>  > simple.  This goes at the top of the page:
>  >
>  >   
>  >  
>  >  div.calendar {
>  >  z-index: 3 !important;
>  >  }
>  > 
>  > 
>  >
>  > However the js in the DatePicker generates its own css that overrides
>  > the css the above.  However, the following approach allows the
> css to
>  > override the js' style.
>  >
>  > DatePicker dp=new DatePicker("checkOutPicker", checkOut,ds);
>  > dp.add(HeaderContributor.forCss("../../css/cyllenius_cal.css"));
>  > add( dp );
>  >
>  > Cheers,
>  > Scott
>  >
>  >
>  >
> 
>  >
>  >
> -
> 
>  > Take Surveys. Earn Cash. Influence the Future of IT
>  > Join SourceForge.net's Techsay panel and you'll get the chance to
> share your
>  > opinions on IT & business topics through brief surveys - and earn
> cash
>  >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
>  >
>  >
>  >
> 
> 
>  >
>  > ___
>  > Wicket-user mailing list
>  > Wicket-user@lists.sourceforge.net
> 
>  > https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net 's Techsay panel and you'll get the chance to
> share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 
> 
> 
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> 
> 
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Eelco Hillenius
Can the datepicker be configured such that it disappears when it looses focus?

Eelco

On 1/26/07, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote:
> Anyway I've found another problem with a DatePicker on a ModalWindow:
>
> If you open a DatePicker and then close the ModalWindow, the DatePicker does
> not disappear and remains open.
>
> I know that a stupid case but at the same time is a really user annoying
> behaviour.
>
> Anyone experienced that?
>
> Paolo
>
>
>
> On 1/26/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
> > It definitely shouldn't override it. Therefore the !important thing in
> > css. I've tried it and it worked well for me.
> >
> > -Matej
> >
> >
> > Scott Swank wrote:
> > > This seems to be a bit nastier than that -- unless I'm missing something
> > > simple.  This goes at the top of the page:
> > >
> > >   
> > >  
> > >  div.calendar {
> > >  z-index: 3 !important;
> > >  }
> > > 
> > > 
> > >
> > > However the js in the DatePicker generates its own css that overrides
> > > the css the above.  However, the following approach allows the css to
> > > override the js' style.
> > >
> > > DatePicker dp=new DatePicker("checkOutPicker", checkOut,ds);
> > >
> dp.add(HeaderContributor.forCss("../../css/cyllenius_cal.css"));
> > > add( dp );
> > >
> > > Cheers,
> > > Scott
> > >
> > >
> > >
> 
> > >
> > >
> -
> > > Take Surveys. Earn Cash. Influence the Future of IT
> > > Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> > > opinions on IT & business topics through brief surveys - and earn cash
> > >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > >
> > >
> > >
> 
> > >
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> >
> -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net 's Techsay panel and you'll get the chance to share
> your
> > opinions on IT & business topics through brief surveys - and earn cash
> >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Paolo Di Tommaso

Anyway I've found another problem with a DatePicker on a ModalWindow:

If you open a DatePicker and then close the ModalWindow, the DatePicker does
not disappear and remains open.

I know that a stupid case but at the same time is a really user annoying
behaviour.

Anyone experienced that?

Paolo


On 1/26/07, Matej Knopp <[EMAIL PROTECTED]> wrote:


It definitely shouldn't override it. Therefore the !important thing in
css. I've tried it and it worked well for me.

-Matej


Scott Swank wrote:
> This seems to be a bit nastier than that -- unless I'm missing something
> simple.  This goes at the top of the page:
>
>   
>  
>  div.calendar {
>  z-index: 3 !important;
>  }
> 
> 
>
> However the js in the DatePicker generates its own css that overrides
> the css the above.  However, the following approach allows the css to
> override the js' style.
>
> DatePicker dp=new DatePicker("checkOutPicker", checkOut,ds);
> dp.add(HeaderContributor.forCss("../../css/cyllenius_cal.css"));
> add( dp );
>
> Cheers,
> Scott
>
>
> 
>
>
-
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
your
> opinions on IT & business topics through brief surveys - and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
>
> 
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-26 Thread Matej Knopp
It definitely shouldn't override it. Therefore the !important thing in 
css. I've tried it and it worked well for me.

-Matej


Scott Swank wrote:
> This seems to be a bit nastier than that -- unless I'm missing something 
> simple.  This goes at the top of the page:
> 
>   
>  
>  div.calendar {
>  z-index: 3 !important;
>  }
> 
> 
> 
> However the js in the DatePicker generates its own css that overrides 
> the css the above.  However, the following approach allows the css to 
> override the js' style.
> 
> DatePicker dp=new DatePicker("checkOutPicker", checkOut,ds);
> dp.add(HeaderContributor.forCss("../../css/cyllenius_cal.css"));
> add( dp );
> 
> Cheers,
> Scott
> 
> 
> 
> 
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> 
> 
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Scott Swank

This seems to be a bit nastier than that -- unless I'm missing something
simple.  This goes at the top of the page:

 

div.calendar {
z-index: 3 !important;
}
   


However the js in the DatePicker generates its own css that overrides the
css the above.  However, the following approach allows the css to override
the js' style.

DatePicker dp=new DatePicker("checkOutPicker", checkOut,ds);
dp.add(HeaderContributor.forCss("../../css/cyllenius_cal.css"));
add( dp );

Cheers,
Scott
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Igor Vaynberg

dont need to do it in that file, just drop the provided css into your page

-igor


On 1/25/07, Scott Swank <[EMAIL PROTECTED]> wrote:


Does anyone know (without digging, I can dig myself if necessary) which of
the css files in

  /wicket/extensions/markup/html/datapicker/style

I need work make the z-index changes in?  I'm working back & forth between
the js & the css trying to figure out how this all fits together.

Thank you,
Scott

On 1/24/07, Scott Swank <[EMAIL PROTECTED]> wrote:
>
> Now you're just going to make me lazier.  :)  Thanks.
>
> On 1/24/07, Prashant Khanal < [EMAIL PROTECTED] > wrote:
> >
> > Well use this  in ur css file:
> > .calendar, .calendar table{
> > z-index: 10[ or suitable value];
> > }
> > This will make your datepicker appear in front of the
> > modal window.
> >
> > --- Scott Swank < [EMAIL PROTECTED]> wrote:
> >
> > > Note to self: must learn css better.  Thanks.
> > >
> > > On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]>
> > > wrote:
> > > >
> > > > you have to use css to set a higher zvalue for the
> > > datepicker popup
> > > >
> > > > -igor
> > > >
> > > >
> > > > On 1/23/07, Scott Swank < [EMAIL PROTECTED] >
> > > wrote:
> > > >
> > > > > I put a DatePicker in a form that is in a
> > > ModalWindow.  The DatePicker
> > > > > rendered below the ModalWindow (z height) and
> > > was not active because only
> > > > > the modal window was active.  Is this anything
> > > like a known issue?  I search
> > > > > the history of this list and the wiki without
> > > success.
> > > > >
> > > > > Thanks,
> > > > > Scott
> > > > >
> > > > > --
> > > > > Scott Swank
> > > > > reformed mathematician
> > > > >
> > > > >
> > >
> >
> > -
> > > > > Take Surveys. Earn Cash. Influence the Future of
> > > IT
> > > > > Join SourceForge.net's Techsay panel and you'll
> > > get the chance to share
> > > > > your
> > > > > opinions on IT & business topics through brief
> > > surveys - and earn cash
> > > > >
> > > > >
> > >
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >
> > > > >
> > > > > ___
> > > > > Wicket-user mailing list
> > > > > Wicket-user@lists.sourceforge.net
> > > > >
> > >
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> >
> > -
> > > > Take Surveys. Earn Cash. Influence the Future of
> > > IT
> > > > Join SourceForge.net's Techsay panel and you'll
> > > get the chance to share
> > > > your
> > > > opinions on IT & business topics through brief
> > > surveys - and earn cash
> > > >
> > >
> >
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > >
> > > > ___
> > > > Wicket-user mailing list
> > > > Wicket-user@lists.sourceforge.net
> > > >
> > >
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > >
> > > >
> > > >
> > >
> > >
> > > --
> > > Scott Swank
> > > reformed mathematician
> > > >
> >
> > -
> > > Take Surveys. Earn Cash. Influence the Future of IT
> > > Join SourceForge.net's Techsay panel and you'll get
> > > the chance to share your
> > > opinions on IT & business topics through brief
> > > surveys - and earn cash
> > >
> >
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > >
> > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> >
> >
> >
> >
> > 

> >
> > No need to miss a message. Get email on-the-go
> > with Yahoo! Mail for Mobile. Get started.
> > http://mobile.yahoo.com/mail
> >
> > -
> >
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to
> > share your
> > opinions on IT & business topics through brief surveys - and earn cash
> >
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
>
> --
> Scott Swank
> reformed mathematician




--
Scott Swank
reformed mathematician
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=s

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Scott Swank

Thanks.  I just finished wiring it into theme.css -- this is much nicer.

On 1/25/07, Matej Knopp <[EMAIL PROTECTED]> wrote:


Just put this into your markup

  
  
  div.calendar {
  z-index: 3 !important;
  }
 


-Matej

Scott Swank wrote:
> Does anyone know (without digging, I can dig myself if necessary) which
> of the css files in
>
>   /wicket/extensions/markup/html/datapicker/style
>
> I need work make the z-index changes in?  I'm working back & forth
> between the js & the css trying to figure out how this all fits
together.
>
> Thank you,
> Scott
>
> On 1/24/07, *Scott Swank* <[EMAIL PROTECTED]
> > wrote:
>
> Now you're just going to make me lazier.  :)  Thanks.
>
>
> On 1/24/07, *Prashant Khanal* < [EMAIL PROTECTED]
>  > wrote:
>
> Well use this  in ur css file:
> .calendar, .calendar table{
> z-index: 10[ or suitable value];
> }
> This will make your datepicker appear in front of the
> modal window.
>
> --- Scott Swank < [EMAIL PROTECTED]
> > wrote:
>
> >  Note to self: must learn css better.  Thanks.
> >
> >  On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]
> >
> >  wrote:
> >  >
> >  > you have to use css to set a higher zvalue for the
> >  datepicker popup
> >  >
> >  > -igor
> >  >
> >  >
> >  > On 1/23/07, Scott Swank < [EMAIL PROTECTED]
> >
> >  wrote:
> >  >
> >  > > I put a DatePicker in a form that is in a
> >  ModalWindow.  The DatePicker
> >  > > rendered below the ModalWindow (z height) and
> >  was not active because only
> >  > > the modal window was active.  Is this anything
> >  like a known issue?  I search
> >  > > the history of this list and the wiki without
> >  success.
> >  > >
> >  > > Thanks,
> >  > > Scott
> >  > >
> >  > > --
> >  > > Scott Swank
> >  > > reformed mathematician
> >  > >
> >  > >
> >
>
-
> >  > > Take Surveys. Earn Cash. Influence the Future of
> >  IT
> >  > > Join SourceForge.net's Techsay panel and you'll
> >  get the chance to share
> >  > > your
> >  > > opinions on IT & business topics through brief
> >  surveys - and earn cash
> >  > >
> >  > >
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> <
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV>
> >  > >
> >  > > ___
> >  > > Wicket-user mailing list
> >  > > Wicket-user@lists.sourceforge.net
> 
> >  > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> >  > >
> >  > >
> >  > >
> >  >
> >  >
> >
>
-
> >  > Take Surveys. Earn Cash. Influence the Future of
> >  IT
> >  > Join SourceForge.net's Techsay panel and you'll
> >  get the chance to share
> >  > your
> >  > opinions on IT & business topics through brief
> >  surveys - and earn cash
> >  >
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> <
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV>
> >  >
> >  > ___
> >  > Wicket-user mailing list
> >  > Wicket-user@lists.sourceforge.net
> 
> >  >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> >  >
> >  >
> >  >
> >
> >
> >  --
> >  Scott Swank
> >  reformed mathematician
> >  >
>
-
> >  Take Surveys. Earn Cash. Influence the Future of IT
> >  Join SourceForge.net's Techsay panel and you'll get
> >  the chance to share your
> >  opinions on IT & business topics through brief
> >  surveys - and earn cash
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> <
http://www.techsay.com/default.php?page=join.php&p=sourceforg

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Matej Knopp
Just put this into your markup

  
  
  div.calendar {
  z-index: 3 !important;
  }
 


-Matej

Scott Swank wrote:
> Does anyone know (without digging, I can dig myself if necessary) which 
> of the css files in
> 
>   /wicket/extensions/markup/html/datapicker/style
> 
> I need work make the z-index changes in?  I'm working back & forth 
> between the js & the css trying to figure out how this all fits together.
> 
> Thank you,
> Scott
> 
> On 1/24/07, *Scott Swank* <[EMAIL PROTECTED] 
> > wrote:
> 
> Now you're just going to make me lazier.  :)  Thanks.
> 
> 
> On 1/24/07, *Prashant Khanal* < [EMAIL PROTECTED]
>  > wrote:
> 
> Well use this  in ur css file:
> .calendar, .calendar table{
> z-index: 10[ or suitable value];
> }
> This will make your datepicker appear in front of the
> modal window.
> 
> --- Scott Swank < [EMAIL PROTECTED]
> > wrote:
> 
> >  Note to self: must learn css better.  Thanks.
> >
> >  On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]
> >
> >  wrote:
> >  >
> >  > you have to use css to set a higher zvalue for the
> >  datepicker popup
> >  >
> >  > -igor
> >  >
> >  >
> >  > On 1/23/07, Scott Swank < [EMAIL PROTECTED]
> >
> >  wrote:
> >  >
> >  > > I put a DatePicker in a form that is in a
> >  ModalWindow.  The DatePicker
> >  > > rendered below the ModalWindow (z height) and
> >  was not active because only
> >  > > the modal window was active.  Is this anything
> >  like a known issue?  I search
> >  > > the history of this list and the wiki without
> >  success.
> >  > >
> >  > > Thanks,
> >  > > Scott
> >  > >
> >  > > --
> >  > > Scott Swank
> >  > > reformed mathematician
> >  > >
> >  > >
> >
> 
> -
> >  > > Take Surveys. Earn Cash. Influence the Future of
> >  IT
> >  > > Join SourceForge.net's Techsay panel and you'll
> >  get the chance to share
> >  > > your
> >  > > opinions on IT & business topics through brief
> >  surveys - and earn cash
> >  > >
> >  > >
> >
> 
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> >  > >
> >  > > ___
> >  > > Wicket-user mailing list
> >  > > Wicket-user@lists.sourceforge.net
> 
> >  > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> >  > >
> >  > >
> >  > >
> >  >
> >  >
> >
> 
> -
> >  > Take Surveys. Earn Cash. Influence the Future of
> >  IT
> >  > Join SourceForge.net's Techsay panel and you'll
> >  get the chance to share
> >  > your
> >  > opinions on IT & business topics through brief
> >  surveys - and earn cash
> >  >
> >
> 
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> >  >
> >  > ___
> >  > Wicket-user mailing list
> >  > Wicket-user@lists.sourceforge.net
> 
> >  >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> >  >
> >  >
> >  >
> >
> >
> >  --
> >  Scott Swank
> >  reformed mathematician
> >  >
> 
> -
> >  Take Surveys. Earn Cash. Influence the Future of IT
> >  Join SourceForge.net's Techsay panel and you'll get
> >  the chance to share your
> >  opinions on IT & business topics through brief
> >  surveys - and earn cash
> >
> 
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> >
> __

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-25 Thread Scott Swank

Does anyone know (without digging, I can dig myself if necessary) which of
the css files in

 /wicket/extensions/markup/html/datapicker/style

I need work make the z-index changes in?  I'm working back & forth between
the js & the css trying to figure out how this all fits together.

Thank you,
Scott

On 1/24/07, Scott Swank <[EMAIL PROTECTED]> wrote:


Now you're just going to make me lazier.  :)  Thanks.

On 1/24/07, Prashant Khanal <[EMAIL PROTECTED] > wrote:
>
> Well use this  in ur css file:
> .calendar, .calendar table{
> z-index: 10[ or suitable value];
> }
> This will make your datepicker appear in front of the
> modal window.
>
> --- Scott Swank <[EMAIL PROTECTED]> wrote:
>
> > Note to self: must learn css better.  Thanks.
> >
> > On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]>
> > wrote:
> > >
> > > you have to use css to set a higher zvalue for the
> > datepicker popup
> > >
> > > -igor
> > >
> > >
> > > On 1/23/07, Scott Swank < [EMAIL PROTECTED]>
> > wrote:
> > >
> > > > I put a DatePicker in a form that is in a
> > ModalWindow.  The DatePicker
> > > > rendered below the ModalWindow (z height) and
> > was not active because only
> > > > the modal window was active.  Is this anything
> > like a known issue?  I search
> > > > the history of this list and the wiki without
> > success.
> > > >
> > > > Thanks,
> > > > Scott
> > > >
> > > > --
> > > > Scott Swank
> > > > reformed mathematician
> > > >
> > > >
> >
>
> -
> > > > Take Surveys. Earn Cash. Influence the Future of
> > IT
> > > > Join SourceForge.net's Techsay panel and you'll
> > get the chance to share
> > > > your
> > > > opinions on IT & business topics through brief
> > surveys - and earn cash
> > > >
> > > >
> >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> > > >
> > > > ___
> > > > Wicket-user mailing list
> > > > Wicket-user@lists.sourceforge.net
> > > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > >
> > > >
> > > >
> > >
> > >
> >
>
> -
> > > Take Surveys. Earn Cash. Influence the Future of
> > IT
> > > Join SourceForge.net's Techsay panel and you'll
> > get the chance to share
> > > your
> > > opinions on IT & business topics through brief
> > surveys - and earn cash
> > >
> >
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > >
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> > >
> >
> >
> > --
> > Scott Swank
> > reformed mathematician
> > >
>
> -
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get
> > the chance to share your
> > opinions on IT & business topics through brief
> > surveys - and earn cash
> >
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >
> ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
>
>
> 

>
> No need to miss a message. Get email on-the-go
> with Yahoo! Mail for Mobile. Get started.
> http://mobile.yahoo.com/mail
>
> -
>
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys - and earn cash
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>



--
Scott Swank
reformed mathematician





--
Scott Swank
reformed mathematician
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-24 Thread Scott Swank

Now you're just going to make me lazier.  :)  Thanks.

On 1/24/07, Prashant Khanal <[EMAIL PROTECTED]> wrote:


Well use this  in ur css file:
.calendar, .calendar table{
z-index: 10[ or suitable value];
}
This will make your datepicker appear in front of the
modal window.

--- Scott Swank <[EMAIL PROTECTED]> wrote:

> Note to self: must learn css better.  Thanks.
>
> On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]>
> wrote:
> >
> > you have to use css to set a higher zvalue for the
> datepicker popup
> >
> > -igor
> >
> >
> > On 1/23/07, Scott Swank < [EMAIL PROTECTED]>
> wrote:
> >
> > > I put a DatePicker in a form that is in a
> ModalWindow.  The DatePicker
> > > rendered below the ModalWindow (z height) and
> was not active because only
> > > the modal window was active.  Is this anything
> like a known issue?  I search
> > > the history of this list and the wiki without
> success.
> > >
> > > Thanks,
> > > Scott
> > >
> > > --
> > > Scott Swank
> > > reformed mathematician
> > >
> > >
>
-
> > > Take Surveys. Earn Cash. Influence the Future of
> IT
> > > Join SourceForge.net's Techsay panel and you'll
> get the chance to share
> > > your
> > > opinions on IT & business topics through brief
> surveys - and earn cash
> > >
> > >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > >
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
>
https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> > >
> >
> >
>
-
> > Take Surveys. Earn Cash. Influence the Future of
> IT
> > Join SourceForge.net's Techsay panel and you'll
> get the chance to share
> > your
> > opinions on IT & business topics through brief
> surveys - and earn cash
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> >
>
https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> >
>
>
> --
> Scott Swank
> reformed mathematician
> >
-
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get
> the chance to share your
> opinions on IT & business topics through brief
> surveys - and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV>
___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
>
https://lists.sourceforge.net/lists/listinfo/wicket-user
>






No need to miss a message. Get email on-the-go
with Yahoo! Mail for Mobile. Get started.
http://mobile.yahoo.com/mail

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user





--
Scott Swank
reformed mathematician
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-24 Thread Prashant Khanal
Well use this  in ur css file:
.calendar, .calendar table{
z-index: 10[ or suitable value];
}
This will make your datepicker appear in front of the
modal window.

--- Scott Swank <[EMAIL PROTECTED]> wrote:

> Note to self: must learn css better.  Thanks.
> 
> On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]>
> wrote:
> >
> > you have to use css to set a higher zvalue for the
> datepicker popup
> >
> > -igor
> >
> >
> > On 1/23/07, Scott Swank < [EMAIL PROTECTED]>
> wrote:
> >
> > > I put a DatePicker in a form that is in a
> ModalWindow.  The DatePicker
> > > rendered below the ModalWindow (z height) and
> was not active because only
> > > the modal window was active.  Is this anything
> like a known issue?  I search
> > > the history of this list and the wiki without
> success.
> > >
> > > Thanks,
> > > Scott
> > >
> > > --
> > > Scott Swank
> > > reformed mathematician
> > >
> > >
>
-
> > > Take Surveys. Earn Cash. Influence the Future of
> IT
> > > Join SourceForge.net's Techsay panel and you'll
> get the chance to share
> > > your
> > > opinions on IT & business topics through brief
> surveys - and earn cash
> > >
> > >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > >
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
>
https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> > >
> >
> >
>
-
> > Take Surveys. Earn Cash. Influence the Future of
> IT
> > Join SourceForge.net's Techsay panel and you'll
> get the chance to share
> > your
> > opinions on IT & business topics through brief
> surveys - and earn cash
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> >
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> >
>
https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> >
> 
> 
> -- 
> Scott Swank
> reformed mathematician
> >
-
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get
> the chance to share your
> opinions on IT & business topics through brief
> surveys - and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV>
___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
>
https://lists.sourceforge.net/lists/listinfo/wicket-user
> 



 

No need to miss a message. Get email on-the-go 
with Yahoo! Mail for Mobile. Get started.
http://mobile.yahoo.com/mail 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-23 Thread Scott Swank

Note to self: must learn css better.  Thanks.

On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:


you have to use css to set a higher zvalue for the datepicker popup

-igor


On 1/23/07, Scott Swank < [EMAIL PROTECTED]> wrote:

> I put a DatePicker in a form that is in a ModalWindow.  The DatePicker
> rendered below the ModalWindow (z height) and was not active because only
> the modal window was active.  Is this anything like a known issue?  I search
> the history of this list and the wiki without success.
>
> Thanks,
> Scott
>
> --
> Scott Swank
> reformed mathematician
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys - and earn cash
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user






--
Scott Swank
reformed mathematician
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] DatePicker and ModalWindow

2007-01-23 Thread Igor Vaynberg

you have to use css to set a higher zvalue for the datepicker popup

-igor


On 1/23/07, Scott Swank <[EMAIL PROTECTED]> wrote:


I put a DatePicker in a form that is in a ModalWindow.  The DatePicker
rendered below the ModalWindow (z height) and was not active because only
the modal window was active.  Is this anything like a known issue?  I search
the history of this list and the wiki without success.

Thanks,
Scott

--
Scott Swank
reformed mathematician
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share
your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] DatePicker and ModalWindow

2007-01-23 Thread Scott Swank

I put a DatePicker in a form that is in a ModalWindow.  The DatePicker
rendered below the ModalWindow (z height) and was not active because only
the modal window was active.  Is this anything like a known issue?  I search
the history of this list and the wiki without success.

Thanks,
Scott

--
Scott Swank
reformed mathematician
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user