Hi Erik,
Thanks for offering your code!
Unfortunately we cannot add every use case to the examples. This will make
it even harder to understand for the users and hard to maintain for us.
I hope you like what you have learnt from Wicket so far!
Have fun!
On Sun, Nov 17, 2013 at 11:47 PM,
Hi,
I'd advice you to read the migration guides 1.4-1.5 and 1.5-6.0.
Then start migrating the app and ask here if you have specific problems.
On Sun, Nov 17, 2013 at 11:33 PM, Scott Carpenter scarpen...@gmail.comwrote:
Hi -- I've inherited a wicket site that was first developed four years
Hi,
I haven't seen a web application that shows progress bar for download.
The browser itself shows such information - Google Chrome in the
bottom-left corner, Firefox in its download window/manager.
On Sat, Nov 16, 2013 at 11:40 AM, Ernesto Reinaldo Barreiro
reier...@gmail.com wrote:
Hi,
Martin,
Thanks for your comments.
On Mon, Nov 18, 2013 at 9:10 AM, Martin Grigorov mgrigo...@apache.orgwrote:
Hi,
I haven't seen a web application that shows progress bar for download.
The browser itself shows such information - Google Chrome in the
bottom-left corner, Firefox in its
I didn't read the question correctly.
It indeed talks about showing progress for the generation process, not the
download.
On Mon, Nov 18, 2013 at 10:39 AM, Ernesto Reinaldo Barreiro
reier...@gmail.com wrote:
Martin,
Thanks for your comments.
On Mon, Nov 18, 2013 at 9:10 AM, Martin
Hi Ernesto,
A working example might be helpful.
Thank you
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/DownloadLink-and-ProgressBar-tp4662451p4662485.html
Sent from the Users forum mailing list archive at Nabble.com.
Hi
For my website, I am using a ResourceReference, in which a PNG file is
loaded to show it on the web page.
The PNG picture shown well, but when I change that PNG picture by redrawing
it in Java with the help of Graphics2D, you still see the former PNG picture
on the web page, whereas the
Hi
For my website, I am using a ResourceReference, in which a PNG file is
loaded to show it on the web page.
The PNG picture shown well, but when I change that PNG picture by redrawing
it in Java with the help of Graphics2D, you still see the former PNG picture
on the web page, whereas the
NonCachingImage?
On Mon, Nov 18, 2013 at 10:20 AM, MartinoSuperman
martinosuper...@live.nlwrote:
Hi
For my website, I am using a ResourceReference, in which a PNG file is
loaded to show it on the web page.
The PNG picture shown well, but when I change that PNG picture by redrawing
it in
When you use a different version of Wicket, check, if the version is the same
in NetBeans.
Otherwise, it will be get stuck...
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Advice-for-upgrading-from-an-old-version-of-Wicket-tp4662469p4662488.html
Sent from the
What I do in solving such problems, is making my own custom component class
in Java, in which extension takes place.
Example:
I wanted to get text out of a TextField.
Example code:
TextFieldString tfExample = new TextFieldString(name, Model.of*))
This example code generates an empty text
Hi,
It is a caching problem.
Use NonCachingImage component instead of Image.
On Mon, Nov 18, 2013 at 11:19 AM, MartinoSuperman
martinosuper...@live.nlwrote:
Hi
For my website, I am using a ResourceReference, in which a PNG file is
loaded to show it on the web page.
The PNG picture shown
I think
https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/progressbar-parent
has
such examples
On Mon, Nov 18, 2013 at 10:52 AM, seyaw seidy...@gmail.com wrote:
Hi Ernesto,
A working example might be helpful.
Thank you
--
View this message in context:
Thanks for the pointer!
On Mon, Nov 18, 2013 at 10:54 AM, Martin Grigorov mgrigo...@apache.orgwrote:
I think
https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/progressbar-parent
has
such examples
On Mon, Nov 18, 2013 at 10:52 AM, seyaw seidy...@gmail.com wrote:
Hi
I have integrated in my application wicket-bootstrap library. I also have my
own bootstrap-override.css which is added in renderHead method as a
CssHeaderItem.
Wicket renders bootstrap-override reference first in a head section. How can
I change the reference order that my file will be loaded as
Hi,
Override ResourceReference#getDependencies() for the reference that
contribute bootstrap-override.css.
It should depend on
CssHeaderItem.forRefernce(de.agilecoders.wicket.core.markup.html.themes.bootstrap.BootstrapCssReference)
See
Dear Forum,
I have a main form and within this form, I have two fields: a drop-down list
and a text field followed by an ajax-link which is meant to add the values
from two fields to a list (scenario described in previous
AjaxFormComponentUpdatingBehavior( change ) on a DropDownChoice
Hi,
AjaxLink does not submit values.
Use AjaxSubmitLink or AjaxButton instead.
On Mon, Nov 18, 2013 at 2:51 PM, lucast lucastol...@hotmail.com wrote:
Dear Forum,
I have a main form and within this form, I have two fields: a drop-down
list
and a text field followed by an ajax-link which is
Hi,
Another approach. Add OnChangeAjaxBehavior or
AjaxFormComponentUpdatingBehavior to the fields to keep the server side up
to date.
Peter.
On 18 November 2013 12:57, Martin Grigorov mgrigo...@apache.org wrote:
Hi,
AjaxLink does not submit values.
Use AjaxSubmitLink or AjaxButton
How do you track the progress of your file generation in order to show the
status bar?
~ Thank you,
Paul Bors
-Original Message-
From: seyaw [mailto:seidy...@gmail.com]
Sent: Monday, November 18, 2013 3:52 AM
To: users@wicket.apache.org
Subject: Re: DownloadLink and ProgressBar
Hi
What do you mean? How to compute how much has been generated? Or how to
pass this info to the client? Or something else?
On Mon, Nov 18, 2013 at 8:00 PM, Paul Bors p...@bors.ws wrote:
How do you track the progress of your file generation in order to show the
status bar?
~ Thank you,
Paul
Hello,
I am not sure if it's a Wicket bug, or a lack of my wicket knowledge , but I
really need an assistance here.
I have a simple form with two different input fields: RequiredTextField and
PasswordTextField. Also there is a feedback panel, but it filters out
PasswordTextField feedback message
Hello,
I am not sure if it's a Wicket bug, or a lack of my wicket knowledge , but I
really need an assistance here.
I have a simple form with two different input fields: RequiredTextField and
PasswordTextField. Also there is a feedback panel, but it filters out
PasswordTextField feedback message
Yes Paul, getting the progress of the file generation is one of my challenge
right now. The file generation is, in my case is not linear. For example,
the time it takes for different procedures is depend on the project size.
Currently, I just make a rough estimation so that the user at least can
attaching quickstart: feedbackI18n.zip
http://apache-wicket.1842946.n4.nabble.com/file/n4662505/feedbackI18n.zip
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Filtered-feedback-message-cleanup-tp4662503p4662505.html
Sent from the Users forum mailing list
Hi,
I'm searching for Rich text editor to integrate in my page, but at the
moment nothing seems to work.
Found
Tynimce
Wicket-jQuery (Kendo)
Visural Wicket
and examples, but they dont work with wicket 6.12 maybe.
Have you maybe any hint for me??
Thanks in advance
Cheers
For the most part you just integrate any rich text editor at the HTML/JS
layer with a TextArea in wicket.
There might need to be JS hooks in there in order to ensure that the Editor
content is in the TextArea when the user submits the form.
Overall though you don't need special integration for
Hi Dirk,
For the Kendo one, this is because Kendo has released a new version
(kendoui.web.2013.2.716), whereas wicket-kendo-ui-12.0.0 is still based on
the previous.
you can try out wicket-kendo-ui-6.12.1-SNAPSHOT.
Remember to clean your browser's cache.
Hi,
Working on Wicket frontend for AppFuse I had to implement a drop down
choice of countries. I did it, but don't like the solution and I wonder
if it could be done easier/prettier?
Issues:
1. In domain model there is a country represented as a String field (a
country code) in an address class.
We are using this one:
http://www.7thweb.net/wicket-jquery-ui/plugins/wysiwyg/WysiwygEditorPage?0
seems to work as expected :)
On Tue, Nov 19, 2013 at 4:30 AM, Sebastien seb...@gmail.com wrote:
Hi Dirk,
For the Kendo one, this is because Kendo has released a new version
Hi,
I think you can use IModelString for the dropdown. This will be the
country code.
The transformation from id to name and back (if needed) can be moved to a
custom IChoiceRenderer. There you have access to the current locale for
each rendering.
CountryChoiceRenderer can delegate the actual
31 matches
Mail list logo