Re: Support for optgroup ?

2014-06-05 Thread Thies Edeling
thanks! On Thu, Jun 5, 2014 at 1:48 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Look at: http://mail-archives.apache.org/mod_mbox/wicket-users/200912.mbox/%3c303141550912040641r1e00841dudaacfefda9497...@mail.gmail.com%3E 2014-06-05 1:41 GMT+03:00 Thies Edeling

Re: Support for optgroup ?

2014-06-05 Thread Martin Makundi
The optgroup code might be buggy, here is a fresh one: private String previouslyAppendedOptGroupLabel; private int choices; /** * @see org.apache.wicket.markup.html.form.AbstractChoice#onComponentTagBody(org.apache.wicket.markup.MarkupStream, org.apache.wicket.markup.ComponentTag) */

Re: Support for optgroup ?

2014-06-05 Thread Martin Makundi
Ah.. and token was: private static final String TOKEN = value=\\; 2014-06-05 9:42 GMT+03:00 Martin Makundi martin.maku...@koodaripalvelut.com : The optgroup code might be buggy, here is a fresh one: private String previouslyAppendedOptGroupLabel; private int choices; /** *

Re: How to Embed PDF in a Web Page

2014-06-05 Thread rsi610
I am trying to achieve embedding pdf in a web page using Wicket.I am stuck deciding whether to use Downloadlink or resourceLink .Can someone please explain me the difference and also help me in embedding the web page ? -- View this message in context:

Re: How to Embed PDF in a Web Page

2014-06-05 Thread Martin Grigorov
Hi, You need to use ResourceLink because you need Content-Disposition: Inline response header to tell the browser to *try* to render the pdf. With DownloadLink it will be Content-Disposition: Download and the browser will popup a confirm dialog to the user asking her where to store the file. But

Re: Support for optgroup ?

2014-06-05 Thread Thies Edeling
I just noticed, thanks for the update ! On Thu, Jun 5, 2014 at 8:45 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Ah.. and token was: private static final String TOKEN = value=\\; 2014-06-05 9:42 GMT+03:00 Martin Makundi martin.maku...@koodaripalvelut.com : The

Re: How to Embed PDF in a Web Page

2014-06-05 Thread Ernesto Reinaldo Barreiro
This might also be of some help https://github.com/reiern70/antilia-bits/tree/master/content-iframe/src/main/java/com/antilia On Thu, Jun 5, 2014 at 10:02 AM, rsi610 rahul.i...@lntinfotech.com wrote: I am trying to achieve embedding pdf in a web page using Wicket.I am stuck deciding whether

Google Application Security program

2014-06-05 Thread Martin Grigorov
Hi, Google have added Wicket to the list of frameworks and libraries which are applicable for a program that rewards proactive security improvements [1]. If you find any security related problem in Wicket please send it to us at priv...@wicket.apache.org and once the fix is applied you can reach

OnChangeAjaxBehavior.onUpdate() not called

2014-06-05 Thread Lucio Crusca
I need to make a calculator like this: input text field x some fixed float value = the result input text field x some other fixed float value = the other result ... and so on for a variable number of rows... I need the user to input a number in one of the input text fields. I need the other

Re: OnChangeAjaxBehavior.onUpdate() not called

2014-06-05 Thread Martin Grigorov
Hi, On Thu, Jun 5, 2014 at 9:26 PM, Lucio Crusca lu...@sulweb.org wrote: I need to make a calculator like this: input text field x some fixed float value = the result input text field x some other fixed float value = the other result ... and so on for a variable number of rows... I need