Re: Select2Choice dropdown box is not appeared in correct position

2013-01-02 Thread Thomas Götz
Currently analyzing. I found out that if you do not add the datepicker then the 
select2 component is displayed correctly …

   -Tom


On 21.12.2012, at 03:36, Madasamy mcruncher madas...@mcruncher.com wrote:

 Here i am attached quickstart project.
 
 To recreate problem to follow steps
 
 1. Downloaded select2.zip from here.
 2. Unpack that zip file.
 3  Directory called select2 will be created.
 4. To run the project type mvn clean package jetty:run
 5. Then type localhost:7070 in your browser.
 select2.zip


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Select2Choice dropdown box is not appeared in correct position

2013-01-02 Thread Thomas Götz
Everything works fine if you use the current version of wiquery-jquery-ui 
(6.2.0) …

   -Tom




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Select2Choice dropdown box is not appeared in correct position

2013-01-02 Thread Madasamy mcruncher
Thank you so much.i migrated wiquery-jquery-ui version to 6.2.0 now it is
working fine.


Re: Select2Choice dropdown box is not appeared in correct position

2012-12-10 Thread Thomas Götz
You need to show us some more code if we should help you. As everything is fine 
in your quickstart - as you mentioned - the problem presumably seems to be 
somewhere in you application, either some css or javascript issue as I suppose. 
Try to reproduce and isolate it or show us some more.

   -Tom

On 10.12.2012, at 01:19, Madasamy mcruncher madas...@mcruncher.com wrote:

 No, I did not get any Java scripts errors.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Select2Choice dropdown box is not appeared in correct position

2012-12-09 Thread Madasamy mcruncher
No, I did not get any Java scripts errors.


Re: Select2Choice dropdown box is not appeared in correct position

2012-12-06 Thread Thomas Götz
Strange, the select2-with-searchbox class is added by select2.js whenever the 
search input is shown:

//add select2-with-searchbox to the container if search box is shown
$(this.dropdown, this.container)[showSearchInput ? addClass : 
removeClass](select2-with-searchbox);

Do you get any Javascript errors?

   -Tom


On 06.12.2012, at 03:07, Madasamy mcruncher madas...@mcruncher.com wrote:

   we are using wicket-select2 2.0 in our application. A form
 having a Select2Choice field when click this field the search
 dropdown box is not appeared in correct position. But this is
 work fine on my quick start. our application is depending on
 bootstrap css and js.
 
 My observation , select2choice field html code look like in
 
 * myQuickstart
 
  div id=s2id_foo2 class=select2-container style=width: 300px
  a class=select2-choice onclick=return false; href=# tabindex=-1
  div class=select2-drop *select2-with-searchbox* select2-drop-active
 select2-offscreen style=display: block;
  /div
  input id=foo2 type=hidden name=foo value= style=width: 300px;
 display: none; wicket:id=foo
 
 * our application,
 
  div id=s2id_typed class=select2-container style=width: 300px
  a class=select2-choice onclick=return false; href=# tabindex=-1
  div class=select2-drop select2-offscreen style=display: block;
  /div
  input id=typed class=select2-choice-text type=hidden name=type
 value= wicket:id=type style=display: none;
 
 The Css class  *select2-with-searchbox* is not added in our application
 html code.
 
 can you give suggestion to solve this problem?


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org