followed your patch, Jan, but the indicator was not hiding when deleting the
input value (backspace key). so forced to hide the indicator on auto
complete hiding [1]. for the moment it works, until the issue is solved in
the original component.
[1] wicket-autocomplete.js
function hideAutoComplete
sorry, i try to be more specific. after moving to wicket 6.10.0, it fails in
two different cases:
case 1: when adding this behavior:
autoComplete.add(new AjaxFormComponentUpdatingBehavior("onKeyUp") {
@Override
protected void onUpdate(final AjaxRequestTarget target) {
hi,
after moving from wicket 6.9.1 to 6.10.0 caused all AutoCompleteTextFields
to break up in the application (no results shown). also a quick test created
from scratch with this component does not work.
does anybody experience the same?
thx
--
View this message in context:
http://apache-wi
> Create a native app for your phone that installs Tomcat, Jetty along
> with your Wicket webapp and whatever else you might nedd.
> Have your webapp on all those clients sync up with your central db whenever
> they come online :)
how do you do explain that? running a fully compliant jvm in a sma
miracle! thanks for your "egoism", Andrea; made us happy :)
i apply the same practice as igor. it works great for both sides, dev
and des. once des already has the html model, dev creates the first
integration to the object-tree, providing feedback to des, so dom-tree
follows the same coherence (in case needed to correct some parts), and
following are just
> Few people contacted me personally to ask how they can contribute to the
> reference guide.
> I've just added
> http://martin-g.github.com/wicket-reference-guide/howtohelp.html that
> explains the steps.
>
> Let me know if I can improve it. Or just me a patch ;-)
is there the intention to deprec
> Reading the mails sent so far, I think Wicket should improve two aspects:
>
> -Its "promotion"
> -Support for stateless usage.
>
> The second point has already been indicated as a target for Wicket 7. The
> "promotion" stuff is probably the most challenging because many of Wicket
> supporters has
> I think the problem is that most good software engineers see 'beauty' in
> the elegant component based, object oriented architecture of Wicket - we
> can all go "oooh" and "h" just thinking about how truly beautiful
> Wicket has been 'engineered'.
>
> We see beauty beyond the external present
> If someone feels good enough in web design - HTML+CSS, video making,
> everything that will make the site more attractive for both technical and
> non-technical people:
>
> the new site (unfinished) is at https://github.com/dashorst/wicket-site
> the current site is at:
> https://svn.apache.org/r
> The one thing i would say:if you want to have a nice presentation of
> vaadin,it comes out of the box,because thats a vaadin feature:nice
> presentation. No other framework has it such easy:)
Vaadin efficiently speaks the language of emotions.
> So lets start a competition...
Nice ;) but, i
> I think, you should not compare wicket with vaadin. Wicket is not the right
> answer for every project. Wicket does not compete with vaadin, because
> wicket is a different hammer. The rise of "javascript apps" could change the
> future of web development, but for such a project you should not us
> toolkits such as angular, backbone etc. One of the main reason why i
> started using wicket was my phobia for javascript. That phobia is no more.
> Infact i want more and more control over the javascript on my client. Does
> anyone else share the same sentiments? I am still a huge wicket fun an
eater is rendered,you can do
> the
> same thing after overriding onbeforerender, pseducode below
> new DataView(){
> public void onbeforerender(){
> super.onbeforerender(); //this will create/populate children too
> //now my code
> }
> }
>
>
> On Tue, Dec 18, 2
hi,
i would appreciate having the choice to do something on
DataView.onPopulate (at end of populating process), but cannot
override this method (final at RefreshingView). i know i have the
choice to compare Item.getIndex() to DataView.getItemsPerPage() to
determine the end of populating process, b
> Which, when clicked, is performed, but in the second request, the User
> object, which set to null in my overriden signOut(), is back in my
when are you exactly calling signOut? cant be deduced from your
snippet and comment. Session.invalidateNow won't remove your custom
session properties by it
ttpSessionListener.html
>
>
> On Tue, Dec 27, 2011 at 3:14 PM, manuelbarzi wrote:
>
>> hi,
>>
>> this is wicket 1.4.19 (& cannot upgrade to 1.5).
>>
>> the scenary is: [1] when user is logged in > [2] after inactive long
>> time session expi
hi,
this is wicket 1.4.19 (& cannot upgrade to 1.5).
the scenary is: [1] when user is logged in > [2] after inactive long
time session expires > [3] user clicks on bookmarkablepagelink > [4]
request handling automatically brings the user to homepage (default)
if possible, what's the recommended
"in HTML the tag has no end tag" may it be enough to confirm
is perfectly valid in html, and not the opposite.
.
On Thu, Nov 10, 2011 at 9:49 AM, Martin Grigorov wrote:
> I'm interested in a specification saying that is invalid in HTML4.
>
> On Thu, Nov 10, 2011
in HTML the tag has no end tag.
in XHTML the tag must be properly closed.
source: http://www.w3schools.com/tags/tag_link.asp
.
On Thu, Nov 10, 2011 at 9:29 AM, Martin Grigorov wrote:
>
> So you say that is valid but is not.
> Both of them are void elements. Why is this difference in handli
wicket-extensions offers you a default pattern date conversion, while
wicket-datetime forces you to determine one.
.
On Mon, Nov 7, 2011 at 1:57 PM, chrome1235 wrote:
> Hi,
> There are two DateTextField components. So, which I use it?
>
> org.apache.wicket.datetime.markup.html.form.DateTextFie
may you try extending & overriding your form :?
YourForm extends Form {
...
... onComponentTag(ComponentTag tag) {
... super.onComponentTag(tag);
String action = tag.getString("action");
...
}
On Fri, Nov 4, 2011 at 3:06 PM, Brian Mulholland wrote:
> How do I get the value wicket is going
MarkupContainer addOrReplace :?
.
On Mon, Oct 31, 2011 at 2:49 PM, Bertrand Guay-Paquet <
ber...@step.polymtl.ca> wrote:
> Hi,
>
> Was is the proper way to choose which panel to add to a page based on a
> model's object value? Currently, I directly access the model and check the
> value during
> Your HTML didn't make it.
> Better return a Panel/Fragment that contains the link+label.
it seems to be merged with the rich html mail. clicking on the link
below (nabble post), the html is perfectly visible. may it be
considered for next time ;-)
> > View this message in context:
> > http://a
may you follow something like this:
public class AjaxTabbedPanel extends TabbedPanel
{
public AjaxTabbedPanel(String id, List tabs)
{
super(id, tabs);
setOutputMarkupId(true);
setVersioned(false);
}
@Override
it seems to be tomcat mixing/sharing user/session data/resources
somewhere and reseting it on second start :?
.
On Tue, Oct 18, 2011 at 4:35 PM, Jonathan Locke
wrote:
> I have two wicket applications running on the same box (my laptop, for
> example) with one on port 8880 and one on port 8881.
Matej, Igor?
.
On Tue, Oct 18, 2011 at 3:57 PM, Per Newgro wrote:
> Thanks for reply manuel,
>
> sorry for being not clear on this. While debugging i've found that already.
> But why is this "." be set. That's not clear to me.
>
> Per
>
&
Application.initializeComponents()
may you try running wl in non-blank-spaces path? ("zip:C:/Documents[16
charater here])...")
.
On Tue, Oct 18, 2011 at 3:31 PM, Wolfgang Schreiner wrote:
> Hi all,
>
> I am having problems deploying my web application on Weblogic 10.3.2.
> Everything works fin
Component.urlFor - calls -> RequestCycle.urlFor - calls ->
UrlRenderer.renderUrl - if relative url, calls ->
UrlRenderer.renderRelativeUrl -> which may append / return the
misterious "."
.
On Tue, Oct 18, 2011 at 2:50 PM, Per Newgro wrote:
> Hi,
>
> i try to add a sitemap for my app. When i add
> See also Wicket API Doc of Form: (
> http://wicket.apache.org/apidocs/1.4/org/apache/wicket/markup/html/form/Form.html
> Wicket API Doc )
> "/If you want you can call validate() to execute form validation, hasError()
> to find out whether validate() resulted in validation errors, and
> updateForm
at which point are you pretending to call validate, what logic fires
it? see no code
if defaultFormProcessing is true (default) on submitting components,
then all validation and form updating is executed automatically.
On Tue, Oct 18, 2011 at 8:52 AM, rawe wrote:
> Here are some code snippets.
may you provide a code shot for review?
-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org
is the form submitted each time a node is changed? if not, then it
could be normal you read nulls, as the values are still on browser,
but havent flown to server.
On Mon, Oct 17, 2011 at 5:11 PM, rawe wrote:
> I'm using a LinkTree and to each node a panel is referenced.
> Both is embedded in a f
please, note that wicket-users forum is plenty full of examples like
this, so the forum, and so the official wicket-examples. a good
suggestion is to deeply look there for an answer before posting.
as suggested before, may you add onchangeajaxbehaviour to your
dropdownchoice, as shown in the follo
add ajax behavior, listen to onchange event, and then capture the new value.
.
On Mon, Oct 17, 2011 at 12:18 PM, TimmyDeng wrote:
> I need to use DropdownChoice in a ModelWindow, but if i get the selected
> value in the onSubmit method of a form, the ModelWindow will be closed. Can
> you please
>> So what is the best way (official? permanent?) to link to a previous
>> response?
>
> Link to a posting on Nabble or one of the other mailinglist-aggregators out
> there perhaps? :)
and keep patience while "somentity" is re-implementing stacko, making
it os, waiting it's fully established and
it sounds great, but why not fully concentrate on wicket. apache will
adopt whatever magic-solution asa it'll be licence compliant, and
affordable by resources and directives.
for the moment this mailing list has been a very successful machine,
and still has much to bring. outside, whatever wrappe
may you try assembling wiquery to your web-app
(http://code.google.com/p/wiquery/). it makes jquery integration
trivial in wicket..
On Fri, Oct 7, 2011 at 1:22 PM, wholalotta wrote:
> Any comment or documentation to learn how to call jquery function inside of
> this methot?
>
> Thanks
>
>
>
> -
sn't act as (X)HTML validator. It never did.
> You may use https://github.com/dashorst/wicket-stuff-markup-validator for that
>
> On Thu, Sep 29, 2011 at 9:53 AM, manuelbarzi wrote:
>> sure, as you may have read, i already tested on wicket 1.5.0 and
>> renders ok. but fr
s is improved in 1.5.0.
> We expand some HTML elements from to
>
> You are recommended to upgrade.
>
> On Thu, Sep 29, 2011 at 9:44 AM, manuelbarzi wrote:
>> tested on wicket 1.5.0 and paradoxically a single-closed textarea tag
>> does validate as "legal" too,
erg wrote:
> file a jira issue
>
> -igor
>
> On Wed, Sep 28, 2011 at 9:52 AM, manuelbarzi wrote:
>> right.
>>
>> may wicket html validation complain in future version for this
>> particular case. low priority issue...
>> .
>>
>>
>>
>&g
right.
may wicket html validation complain in future version for this
particular case. low priority issue...
.
On Wed, Sep 28, 2011 at 6:42 PM, Igor Vaynberg wrote:
> per html spec textarea must have a closing tag...
>
> -igor
>
> On Wed, Sep 28, 2011 at 9:25 AM, man
textarea tag
(...) is supported.
On Wed, Sep 28, 2011 at 6:25 PM, manuelbarzi wrote:
> TextArea is one-self-closed tag <.../>.
>
> should TextArea two-opening-closing tags <...>... work fine.
>
>
>
> On Wed, Sep 28, 2011 at 6:18 PM, manuelbarzi wrote:
>> this
should a single closed textarea tag be a problem? neither html editor
nor wicket markup validation complains about it.
.
On Wed, Sep 28, 2011 at 6:26 PM, Igor Vaynberg wrote:
> sounds like a problem with your html...
>
> -igor
>
>
> On Wed, Sep 28, 2011 at 9:18 AM, manuelbar
TextArea is one-self-closed tag <.../>.
should TextArea two-opening-closing tags <...>... work fine.
On Wed, Sep 28, 2011 at 6:18 PM, manuelbarzi wrote:
> this error happens on this simple composite (wicket 1.4.17):
>
> Page
> |-Panel
> |
this error happens on this simple composite (wicket 1.4.17):
Page
|-Panel
|-Form
|-TextField
|-TextField
|-TextArea
|-TextField
|-TextField
|-Button
|-Button
when just rendering this simple page (no logic implemented yet), th
form.add(new FeedbackPanel("feedback"));
> }
> }
>
> public class PageBase extends WebPage
> {
> public PageBase()
> {
> this.add(new PanelCart("cart"));
> }
>
>
>> -Original Message-
>> From: manuelb
k", new
> ContainerFeedbackMessageFilter(this)));
> in PanelCart.class, panel still show messages produced in form.
>
>
>> -Original Message-
>> From: manuelbarzi [mailto:manuelba...@gmail.com]
>> Sent: 28. September 2011 12:02
>> To:
n PanelCart to display
> only messages produced in PanelCart and ignore others messages?
>
>
>
>> -Original Message-
>> From: manuelbarzi [mailto:manuelba...@gmail.com]
>> Sent: 28. September 2011 11:51
>> To: users@wicket.apache.org
>> Subjec
how is your composite?
page
|-Form (with own FeedbackPanel)
||-Panel (with own FeedbackPanel)
|
|-Other stuff
?
On Wed, Sep 28, 2011 at 11:33 AM, Miroslav F. wrote:
> hi folks,
>
> i have this problem:
>
> have panel:
>
> cart:
> [0]
> items, [0] $
>
i would suggest you, hohaeri, to do the migration progressively, by
keeping your servlet-application living with your new
wicket-application, while translating one by one your pages from the
first to the latter, til finally have all your application fully
migrated. if you have correctly done SoC in
that iterator you added has no much sense, as it represents only an
item on the list, but not the list itself.
moreover you don't need modifying components, but updating their
models, as mentioned in mail before (may you study wicket models a bit
more... see https://cwiki.apache.org/WICKET/working-
> First I created one checkbox and one textfield for each line. And when the
> user selects the checkbox I was able to set the related boolean values
> succesfuly. But I needed to put a restriction. Only one checkbox can be
> selected to submit the form in the followıng structure.
>
> Textarea chec
i guess you are trying to use a Radio like a CheckBox (selected = true
/ false) right?
if this is the case, then why don't you just use a CheckBox and
css-style it like a Radio?
Radio-s are commonly used to select between two or more values, and
that's why RadioGroup provides the capability to gro
ending on your business).
adminRadioGroup.add(new Radio("radioCheck", new Model(Boolean.FALSE),
adminRadioGroup));
On Wed, Sep 21, 2011 at 9:36 PM, wholalotta wrote:
> Hi manuelbarzi,
>
> Thanks for the usefull websites I reviewed all of them and
> I tried the following. I created a radiogr
yet another example on RadioGroup with DataView repeater
https://cwiki.apache.org/WICKET/using-radiogroups.html
.
On Wed, Sep 21, 2011 at 3:44 PM, manuelbarzi wrote:
> see if this doc on ListView + Checkboxes may give you a hint
> https://cwiki.apache.org/WICKET/listview-with-checkboxe
see if this doc on ListView + Checkboxes may give you a hint
https://cwiki.apache.org/WICKET/listview-with-checkboxes.html
.
On Wed, Sep 21, 2011 at 2:18 PM, wholalotta wrote:
> Thanks but still couldnt figure out how will i set the boolean values
> according to the selected radiobutton in List
may repeaters usage help you
https://cwiki.apache.org/WICKET/listview-and-other-repeaters.html
.
On Wed, Sep 21, 2011 at 1:08 PM, wholalotta wrote:
> Hi,
>
> I want to create a form which contains textareas and radiobuttons line by
> line like;
>
> Textarea Radiobutton
> Textarea Radiobutton
>
see also org.apache.wicket.spring.common.web.ExampleApplication in
wicket-examples
On Mon, Sep 19, 2011 at 9:20 PM, Sven Meier wrote:
>
> see https://cwiki.apache.org/WICKET/spring.html
>
>
> On 09/19/2011 09:08 PM, sakthi vel wrote:
> > Hi All,
> >
> > I would like to know how to use Dependency
est+mapping<https://cwiki.apache.org/confluence/display/WICKET/Request+mapping>
> Or
> https://cwiki.apache.org/**WICKET/request-mapping.html<https://cwiki.apache.org/WICKET/request-mapping.html>when
> it's updated.
>
> Thanks for the pointer.
>
> Op 19-9-2011 9:09, schr
https://cwiki.apache.org/WICKET/how-to-do-things-in-wicket.html
.
On Mon, Sep 19, 2011 at 1:57 AM, Bas Gooren wrote:
> After quite a lot of searching and testing, I've finally been able to get
> things working.
>
> In the end, I was able to solve my problem in the most logical place, which
> o
t;
> On Thu, Sep 15, 2011 at 5:31 PM, manuelbarzi wrote:
> > may HtmlDocumentValidator help you.
> > .
> >
> >
> >
> > On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch
> > wrote:
> >> Hi,
> >>
> >> How to displa
may HtmlDocumentValidator help you.
.
On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch wrote:
> Hi,
>
> How to display dynamic HTML content on page which can be invalid
> (because this HTML is entered by a user). I can use
> Label.setEscapeModelStrings(false), but with invalid HTML content the
> p
may you need a RepeatingView. see javadoc.
.
On Thu, Sep 15, 2011 at 5:10 PM, Fred wrote:
> Hello,
>
> I have a panel to which I want to add multiple items. I have put it into a
> loop and as long as I have only one panel I am good, with more than one it
> errorsI get why it errors, it has a pa
may you execute the query db in IDataProvider.iterator, instead of
populateItem. see IDataProvider javadoc.
.
On Thu, Sep 15, 2011 at 3:16 PM, Chris Merrill wrote:
> I'm using Objectify for datastore access in GAE, though the problem would
> be the same if I was using the datastore API directly
hi,
got the following composite:
page
|-form1
| |-field1
| | |-StringValidator.MaximumLengthValidator [1]
| |-feedbackPanel1(ComponentFeedbackMessageFilter(form1) [3])
|-form2
|-field2
| |-StringValidator.MaximumLengthValidator [2]
|-feedbackPanel2(ComponentFe
Martin, isn't it all a matter of principles towards keeping a correct
separation of concerns?
one of the nice things of wicket is that java-code (programmer) and
html-code (designer) are quite independent. only watching a wicket-java-file
does a programmer deduce the structure and behaviour of the
may it be enough just create an independent simple
html-code-processor-to-wicket-java-code-tool, that would auto-generate that
tedious code you would like to avoid? a simple java-class-processor-tool may
help for that... possible an eclipse-wicket-plugin-tool, if it doesn't
already exists...
On Th
your proposal is to wicket, what auto-generating-java-servlet-code is to a
JSP (~ what a "tied-and-deciding-designer-code" was to a "programmer-code"
in the past)
that is, simply going back to "hell" :)
why don't you stay on JSP domain, instead, sir?
On Tue, Nov 9, 2010 at 1:47 PM, Matthias Kell
how can old pagestore files be automatically deleted when server restarts?
in a crash, for example, in which old sessions left their pagestore files on
disk
struts is as c what wicket is as java (still beyond c++)
may you take into account the new "wicket-like" framework, Apache Click,
too, just passing the incubator now... as another alternative to compare
with, but also to show the tendency - and then the present and future - of
web presentation frameworks... ;)
On Mon, Jan 11, 2010 at 1:12 PM, Per Lundho
about "unversioned", i have just done a quick test on wicket-examples >
helloworld, adding serialVersionUID (not informed in the examples) and the
result is the same: pagestore file increasing to the "infinite" (max size of
course :)
stateless page is next, but limitations in this scenario should
that good be great!
dos attack is very rude scenario? ok, a more realistic scenario would be -
as happens here - an app that has a very huge amount of users during only
one week per year (about 40k users connecting to this app for subscriptions
and checking some personal information). let's say 1k
ion. If
> you want to avoid a DoS attack (which isn't really always possible)
> you need a good firewall.
>
> -Matej
>
> On Thu, Jan 7, 2010 at 2:29 PM, manuelbarzi wrote:
> > if this is the behaviour by default, then, how do you avoid a DoS attack?
> i
> > mea
if this is the behaviour by default, then, how do you avoid a DoS attack? i
mean, to put an example, if a simple app like this receives thousand of
users just refreshing the home page, then the pagestore will be
overloaded... may this become a disk I/O overhead and its other possible
consequences.
the url is this: http://localhost:9090/test/
Hi,
- the scenario is this:
jmeter stress-testing (10 simultaneous users with no ramp-up and an
infinite-loop cycle) a wicket application (extends SpringWebApplication) by
only refreshing the HomePage.
- the result is:
observing the disk, the pagemap file for each session (10 items), there is
a
is this rule approx true?
as far as it's described in the javadoc:
[1] org.apache.wicket.Session.getSizeInBytes()
Size of this session, including all the pagemaps it contains
[2] org.apache.wicket.PageMap.getSizeInBytes()
Size of this page map in bytes, including a sum of the sizes of all the
pa
hi, i am preparing a wicket architecture document for a project and i need a
preliminary diagram asap. what is the result, is the diagram presented here
by Subbu already corrected (ended) and presented somewhere? it's very
important for this document. thanks
jWeekend wrote:
>
> Jeremy,
>
> Ye
hi, again
regarding wicket > features > scalability, clustering
there is a mention about:
"The next version of Wicket will support client-side models for zero-state
scalability."
is this already released?
please, let me know asap.
thank you.
Hi,
at wicket > features > security
there is a mention about:
"There are plans for the next version of Wicket to add URL encryption to
support highly secure web sites."
is this already ended?
please, let me know asap, i am preparing an architecture documentation to
justify wicket at this point
Hi,
at wicket > features > security
there is a mention about:
"There are plans for the next version of Wicket to add URL encryption to
support highly secure web sites."
is this already ended?
please, let me know asap, i am preparing an architecture documentation to
justify wicket at this point
83 matches
Mail list logo