Re: Can I implment this with Wicket table components?

2010-09-17 Thread Jeremy Thomerson
look at the inmethod grid, but I don't think any table has those very specific requirements built in already. -- Jeremy Thomerson http://www.wickettraining.com

Re: mouse over table cells and dialog popup with ajaxlinks

2010-09-17 Thread Jeremy Thomerson
cells within the table anyhow). But then the > issue is how to create the AjaxLink in the javascript that constructs the > dialog on the client? > Easiest thing is probably to paint all the dialogs ahead of time as hidden divs. There are many other ways, but this is one option. -- Jeremy Thomerson http://www.wickettraining.com

Re: Form values are not submitted if form-component is initially not visible

2010-09-17 Thread Jeremy Thomerson
> > Thanks for the answer. But if I'm adding my form to the target the > visibility of the components does not change anymore. Anything else I'm > overseeing? It should. Did you look in the wicket ajax log window? Did you add form.setOutputMarkupId(true) ? --

Re: Java in CMS arena,..wicket to lead the way?!

2010-09-17 Thread Jeremy Thomerson
lves. But, as long as they're using common css classes, etc, then even this shouldn't be too difficult (methinks). -- Jeremy Thomerson http://www.wickettraining.com

Re: Form values are not submitted if form-component is initially not visible

2010-09-16 Thread Jeremy Thomerson
add(datePicker); >} > >public Date getTest() >{ >return test; >} > >public void setTest(Date test) >{ >this.test = test; >System.out.println("test x: " +test); >} > } > > The markup to my panel: > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > Add the entire form to the AjaxRequestTarget. The form's action URL is out-of-date and pulls up the old version of the page. -- Jeremy Thomerson http://www.wickettraining.com

Re: Looking for inspiration/suggestions

2010-09-16 Thread Jeremy Thomerson
27;t say no to any time saver :-) Tons of possibilities, but obviously you'll be using Forms, DropDownChoice and maybe even a Palette. -- Jeremy Thomerson http://www.wickettraining.com

Re: Asynchronous File Uploads

2010-09-16 Thread Jeremy Thomerson
licating things. He meant just write a regular ol' servlet. Servlets already respond to HTTP requests - there's no daemon junk to worry about. Write a servlet, put it in your web.xml and make your upload form submit to it instead of Wicket. -- Jeremy Thomerson http://www.wickettraining.com

Re: Mouse click position

2010-09-16 Thread Jeremy Thomerson
passed into Wicket, you'll need to grab it with JS and then add it as a query parameter (or similar) to a Wicket AJAX request. -- Jeremy Thomerson http://www.wickettraining.com

Re: Mouse click position

2010-09-16 Thread Jeremy Thomerson
tion of the > link and mouse click so that I can position the popup accordingly. Please > advice how we do this using wicket. > This is just JavaScript - not really Wicket-specific. There are a lot of JS libraries out there to help with this. -- Jeremy Thomerson http://www.wickettraining.com

Re: Wicket pages are invalid XHTML

2010-09-15 Thread Jeremy Thomerson
Yes Jeremy Thomerson http://wickettraining.com -- sent from my "smart" phone, so please excuse spelling, formatting, or compiler errors On Sep 15, 2010 8:51 PM, "Ichiro Furusato" wrote: Hi Jeremy, Thanks for the quick reply. Is the reason I'm seeing the wicket:id i

Re: Wicket pages are invalid XHTML

2010-09-15 Thread Jeremy Thomerson
lex, arcane and fragile approach to what > should not be rocket science. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > Wicket only generates whatever HTML you want it to generate. The only wicket tag (or actually, attribute) you are required to use is "wicket:id", which will automatically be removed from your HTML in deployment mode. So, use strict XHTML in your *.html files and strict XHTML is what will be rendered. -- Jeremy Thomerson http://www.wickettraining.com

Re: Prevent guest session from expiring

2010-09-14 Thread Jeremy Thomerson
On Tue, Sep 14, 2010 at 10:51 PM, Alec Swan wrote: > Isn't there a way to instruct Wicket not to create a session if the user is > not logged in? > a session will always be created. it won't be bound (and therefore stored) if you have all stateless pages - which isn't

Re: Prevent guest session from expiring

2010-09-14 Thread Jeremy Thomerson
container > Also, where do I specify the page where the logged-in users get redirected > when their sessions expire? > getApplicationSettings().setPageExpiredErrorPage(pageExpiredErrorPage) will change where they go if they click a link on a page that has been expired

Re: How to determine previous value in select after user change

2010-09-14 Thread Jeremy Thomerson
able to just attach this logic to existing components > without having to extend classes all over the shop. > Again, probably a validator, although the IModel solution is also reusable. -- Jeremy Thomerson http://www.wickettraining.com

Re: Wicket Internalization - Exceptions

2010-09-14 Thread Jeremy Thomerson
ers-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Wicket Internalization - Exceptions

2010-09-13 Thread Jeremy Thomerson
sing a model that is passed into the page that contains the person, etc... If it's holding a domain object, it is very likely that this will be a LoadableDetachableModel. -- Jeremy Thomerson http://www.wickettraining.com

Re: DropDownChoice - performing extra validation before model changed

2010-09-13 Thread Jeremy Thomerson
On Mon, Sep 13, 2010 at 10:33 PM, Chris Colman wrote: > So both form and component validators will have access to the value? > > Yes -- Jeremy Thomerson http://www.wickettraining.com

Re: How can I capture the data on one panel 1 when i click submit button on panel 2

2010-09-08 Thread Jeremy Thomerson
Is there a Wicket form wrapping both panels? If so, it will work, even if both panels also have a form in them. Jeremy Thomerson http://wickettraining.com -- sent from my "smart" phone, so please excuse spelling, formatting, or compiler errors On Sep 8, 2010 9:15 AM, "Ben"

Re: Prompt on file upload

2010-09-07 Thread Jeremy Thomerson
ands, e-mail: users-h...@wicket.apache.org > > regular old javascript? -- Jeremy Thomerson http://www.wickettraining.com

Re: rendering a page for an email: org.hibernate.HibernateException: createCriteria is not valid without active transaction

2010-09-07 Thread Jeremy Thomerson
t; How can I attach the Transaction to the thread to get this working? > > thanks in advance > > -- > Fernando Wermus. > > www.linkedin.com/in/fernandowermus > This has nothing in particular to do with Wicket, and would be hard to answer without knowing the details of what you are doing for transaction management. -- Jeremy Thomerson http://www.wickettraining.com

Re: wicket-extensions alive?

2010-08-18 Thread Jeremy Thomerson
ading > first response. > What do you mean? It is "alive and well" - the current version, that is. You're using version 1.2.7 which is YEARS old. -- Jeremy Thomerson http://www.wickettraining.com

Re: How to get submitting component in onError()?

2010-08-16 Thread Jeremy Thomerson
r complication > because web designers want to control such images in the web > directory. > You can use other kinds of resources (that don't have to be packaged in the src directory), you can relocate your resources, or you can use a regular old Button or SubmitLink attached to a tag of your liking. -- Jeremy Thomerson http://www.wickettraining.com

Re: Request for Feature: NoopAjaxRequestTarget

2010-08-15 Thread Jeremy Thomerson
It would break them, as == null would now return false where it previously was true. Jeremy Thomerson http://wickettraining.com -- sent from my "smart" phone, so please excuse spelling, formatting, or compiler errors On Aug 15, 2010 12:12 PM, "Don Ferguson" wrote:

Re: Request for Feature: NoopAjaxRequestTarget

2010-08-15 Thread Jeremy Thomerson
File it as a JIRA. don't include there's part about instanceof checks; rather, a method should be added that returns a boolean. However, I'm not sure even then we could accept this since it would break so many existing applications' logic. Jeremy Thomerson http://wickettrain

Re: Bug or feature/improvement/question?

2010-08-14 Thread Jeremy Thomerson
ers-h...@wicket.apache.org > >>>>> > >>>> > >>>> - > >>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > >>>> For additional commands, e-mail: users-h...@wicket.apache.org > >>>> > >>>> > >>> > >>> - > >>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > >>> For additional commands, e-mail: users-h...@wicket.apache.org > >>> > >>> > >> > >> - > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > >> For additional commands, e-mail: users-h...@wicket.apache.org > >> > >> > > > > - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: How to add Scroll to tabpanel

2010-08-13 Thread Jeremy Thomerson
CSS? overflow? -- Jeremy Thomerson http://www.wickettraining.com On Fri, Aug 13, 2010 at 5:15 PM, arunarapole wrote: > > Hi > > Is any one knows how to add scrollbar to tabpanel in wicket > > i have a dataview under tabpanel ,i have to add scrollbar to that panel >

Re: can not register

2010-08-10 Thread Jeremy Thomerson
all your future messages from this address should be accepted. But, that doesn't necessarily mean that you'll start receiving the mailing list messages. -- Jeremy Thomerson http://www.wickettraining.com

Re: reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Jeremy Thomerson
Session.setStyle("mobile") On Tue, Aug 10, 2010 at 8:55 AM, Josh Kamau wrote: > Thanks Jeremy. > Am just wondering, how will the application know which template to pick? > > regards > Joshua > > On Tue, Aug 10, 2010 at 4:15 PM, Jeremy Thomerson < > jer...@wi

Re: reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Jeremy Thomerson
Use Wicket's style for the templates and you'll have two sets of html files, like foopage.html and foopage_mobile.html. Jeremy Thomerson http://wickettraining.com -- sent from my "smart" phone, so please excuse spelling, formatting, or compiler errors On Aug 10, 2010 2:10 AM,

Re: Encrypt Form Fields Using JS

2010-08-03 Thread Jeremy Thomerson
original system was written. > Client side JavaScript can certainly be broken *MUCH* easier than SSL. Perhaps the following reference [1] will help you resolve this situation :) 1 - http://jobsearch.monster.com/PowerSearch.aspx?tjt=Programmer&where=New%20York -- Jeremy Thomerson http://www.wickettraining.com

Re: Reg: wicket doubts

2010-08-01 Thread Jeremy Thomerson
some. > > -- > > > Regards > Aruna.R > Have you looked at any of the readily-available Wicket examples? -- Jeremy Thomerson http://www.wickettraining.com

Re: Question about embedded labels

2010-07-29 Thread Jeremy Thomerson
ovided html tag using the provided wicket id no matter the type of > the > HTML tag? Can I use it to access any wicket-ed HTML tags? > Yes. -- Jeremy Thomerson http://www.wickettraining.com

Re: Question about embedded labels

2010-07-29 Thread Jeremy Thomerson
subscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Question about embedded labels

2010-07-29 Thread Jeremy Thomerson
t; - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Question about embedded labels

2010-07-29 Thread Jeremy Thomerson
t; Thanks !!! > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Question-about-embedded-labels-tp2307332p2307332.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Wicket stuff site

2010-07-29 Thread Jeremy Thomerson
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > ----- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: validation and #updateModel

2010-07-20 Thread Jeremy Thomerson
t would be a lot of code. Any ideas? Best thing to do is try to create a quickstart that reproduces it. Typically, you find your error while doing this. If not, you have something you can give us that we can quickly run to debug your problem. -- Jeremy Thomerson http://www.wickettraining.com

Re: validation and #updateModel

2010-07-20 Thread Jeremy Thomerson
On Tue, Jul 20, 2010 at 10:20 AM, Igor Vaynberg wrote: > On Tue, Jul 20, 2010 at 12:53 AM, Jeremy Thomerson > wrote: > > Typically, I use LDM's for every place that I am viewing data, and a > regular > > serializable model for places that I'm editing data.

Re: validation and #updateModel

2010-07-20 Thread Jeremy Thomerson
it possible that you're somehow reinitializing those fields? Perhaps redirecting on error to a new instance of the page? -- Jeremy Thomerson http://www.wickettraining.com

Re: validation and #updateModel

2010-07-20 Thread Jeremy Thomerson
e. The point is, if I force the model to be updated despite > the validation failure, then changes will not be lost upon submission. > > Any thoughts? > Don't use a LoadableDetachableModel for a form. -- Jeremy Thomerson http://www.wickettraining.com

Welcome Martin Grigorov as a core team member

2010-07-19 Thread Jeremy Thomerson
and put a lot of effort into the project. He helps out many on the mailing lists and IRC channel. In Martin's first two days with access, he's already made 16 commits and closed several JIRA issues. We look forward to his continued contributions. Please join me in welcoming Martin to t

Re: Wicket's Form Model (using hibernate entity or value objects) Design

2010-07-16 Thread Jeremy Thomerson
Either create a model object that contains your study and foo objects, or hold an IModel as a private variable. Remember it's just regular java, so you can use member variables. Just don't forget to detach any model you hold as a variable manually. Jeremy Thomerson -- sent from my

Re: Adding vertical scrollbar to the listview

2010-07-15 Thread Jeremy Thomerson
r-to-the-listview-tp2290796p2290796.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: wicket in a mobile application.

2010-07-15 Thread Jeremy Thomerson
natively). But a Wicket app is a web app first. -- Jeremy Thomerson http://www.wickettraining.com

Re: about treeLink

2010-07-08 Thread Jeremy Thomerson
http://www.wicket-library.com/wicket-examples/nested/ On Thu, Jul 8, 2010 at 9:09 PM, 蔡茂昌 wrote: > is there any complete sample or demo of the treeLink > > thank you. > > - > -- Jeremy Thomerson http://www.wickettraining.com

Re: Question - Does Wicket really initialize a page instance once?

2010-07-07 Thread Jeremy Thomerson
to your page class. Then add the following component and click the link: add(new Link("link") { public void onClick() { System.out.println("link was clicked - same instance of page"); System.out.println(++counter); } }); -- Jeremy Thomerson http://www.wickettraining.com

Re: ListView in a Form -- issue with properties

2010-07-07 Thread Jeremy Thomerson
on.properties, I have: > > form.valueListView.value.Required=Please enter the Value > > However when I submit the form, in my error feedback if the field is blank > it always displays the default: Field 'value is required. > > What is the proper way to write the property so it displays my custom error > fe

Re: Single inheritence in parts

2010-07-06 Thread Jeremy Thomerson
> >> It has not been "promised". It has been "disCUSSed" at length. Here's the most relevant thread I remember. Look at some of the very valid points of why it would create problems from Johan / Igor. Personally, I'm against it. You can

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread Jeremy Thomerson
A label automatically escapes markup. It would take you about one minute to try this on an app you have. That would have saved you (and us) a lot of emails. Just give it a try. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jul 6, 2010 8:27 AM

Re: Single inheritence in parts

2010-07-05 Thread Jeremy Thomerson
Search the list for this and you'll find some quite long discussions. Basically, it's not going to happen. This would be multiple inheritance, not single. You can easily use panels to accomplish what you're looking for. Jeremy Thomerson -- sent from my smartphone - please excuse

Re: Displaying labels instead of field keynames in error messages

2010-07-05 Thread Jeremy Thomerson
No, don't rename. Call setLabel on the component. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jul 6, 2010 12:11 AM, "Martin Makundi" < martin.maku...@koodaripalvelut.com> wrote: > Or I have to rename all my forms fiel

Re: Configure Wicket to detect some special HTML characters?

2010-07-05 Thread Jeremy Thomerson
Create a custom converter. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jul 6, 2010 12:16 AM, "David Chang" wrote: I dont want to save these characters into the database. --- On Tue, 7/6/10, Martin Makundi wrote: > From: M

Re: Links in DataTable

2010-06-30 Thread Jeremy Thomerson
The whole point of a constructor that takes PageParameters is to use it with a bookmarkable URL, which you've avoided by creating an instance of a page that must be redirected to. Your code should say: setResponsePage(getApplication().getHomePage(), parameters); -- Jeremy Thomerson http://www.wickettraining.com

Re: Request for how to process incoming E-mails on Google App Engine

2010-06-30 Thread Jeremy Thomerson
uest-for-how-to-process-incoming-E-mails-on-Google-App-Engine-tp2272758p2272758.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > ----- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: How to customize the pages of a DataTable, DataView or DataGrid.

2010-06-30 Thread Jeremy Thomerson
gt; What do you mean? I don't understand the question. If you're saying "can I make it load a single page at a time", the answer is yes. The data provider is responsible for doing that. -- Jeremy Thomerson http://www.wickettraining.com

Re: Model not Updating on Multiple Form Submits

2010-06-30 Thread Jeremy Thomerson
ers can use it to verify you have found a bug and > eventually fix it ... or else prove your were wrong assuming there was > a bug;-) > > Best, > > Ernesto > 1-http://wicket.apache.org/quickstart.html > And if you need more help, here: http://www.jeremythomerson.com/blog/2008/11/wicket-quickstart-tutorial/ -- Jeremy Thomerson http://www.wickettraining.com

Re: static or nonstatic inner classes

2010-06-29 Thread Jeremy Thomerson
Use the same decision making process you would for any other java class Do you need access to any private variables of the containing class? Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 30, 2010 12:56 AM, "Sigmar Muuga" wro

Re: extending AbstractFormValidator as a validation adapter

2010-06-29 Thread Jeremy Thomerson
t;> > * > >> > * > >> > In examples I see online, validation errors seem to be registered by > >> calls > >> > of the #error method. It seems like I should be doing that here, too, > >> but > >> > what I don't kno

Re: How to access above hierarchy in the markup

2010-06-29 Thread Jeremy Thomerson
-- I want to access > from myObj > > > > --------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Model not Updating on Multiple Form Submits

2010-06-29 Thread Jeremy Thomerson
the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: how to pass parameters to javascript function?

2010-06-29 Thread Jeremy Thomerson
On Tue, Jun 29, 2010 at 9:44 PM, Gustavo Henrique wrote: > Hi! > I need to put in the page a javascript function with name and Id of > customer. I'm using a label component because I don't know others > solutions. > Any idea? > > Thanks! > AbstractBehavior#rend

Re: Pagination in wicket, DataTable, DataView or DataGrid

2010-06-29 Thread Jeremy Thomerson
or-DataGrid-tp2272370p2272445.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicke

Re: Re-rendering javascript in behavior

2010-06-29 Thread Jeremy Thomerson
} > >tag.put("onclick", submitScript + oldOnclickFunctions); > >} > > } > > > > Thanks in advance... > > > > Muro > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Pagination in wicket, DataTable, DataView or DataGrid

2010-06-29 Thread Jeremy Thomerson
ail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Links in DataTable

2010-06-28 Thread Jeremy Thomerson
in a list in new pages or tabs, > so > this is a big deal for us :( > > Is there any solution for this problem? The only one I can think of is to > use AjaxLink instead, but I am not sure whether that is correct, or if it > could cause even more problems. > > Any help? > > -Nelson > -- Jeremy Thomerson http://www.wickettraining.com

Re: regarding IModel's

2010-06-28 Thread Jeremy Thomerson
y be storing it to the DB so that it outlives the session. Your call. -- Jeremy Thomerson http://www.wickettraining.com

Re: urlFor not performing an accurate url

2010-06-25 Thread Jeremy Thomerson
t I do expect? > > Instead, I had to construct it by hand. > > thanks in advance > > -- > Fernando Wermus. > > www.linkedin.com/in/fernandowermus > -- Jeremy Thomerson http://www.wickettraining.com

Re: Get data from main application

2010-06-25 Thread Jeremy Thomerson
the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Get data from main application

2010-06-25 Thread Jeremy Thomerson
html > Sent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Get data from main application

2010-06-25 Thread Jeremy Thomerson
ent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Markup Inheritance example with Ajax?

2010-06-25 Thread Jeremy Thomerson
response. You can make these bookmarkable through PageParameters. Jeremy Thomerson On Fri, Jun 25, 2010 at 12:29 PM, heapifyman wrote: > > Hello all, > > I would like to extend the Markup Inheritance example > (http://wicket.apache.org/examplemarkupinheritance.html) by replacin

Re: RE: Programmatically set CSS 'id' in an tag

2010-06-24 Thread Jeremy Thomerson
Right. The wicket id is set in the constructor. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 24, 2010 8:58 PM, "Chris Colman" wrote: Cool! I'll try those. Thanks. So setMarkupId sets the 'id' (as in reference

Re: Programmatically set CSS 'id' in an tag

2010-06-24 Thread Jeremy Thomerson
If your links are Wicket components, call setMarkupID on them. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 24, 2010 5:43 PM, "Chris Colman" wrote: I am using a CSS stylesheet that requires each tag link in a menu to specify a d

Re: body-tag onLoad/onScroll

2010-06-22 Thread Jeremy Thomerson
And in that webmarkupcontainer, override istransparentresolverand return true. That will allow you to add components directly to the page without having to add them all to the body's web markup container. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling e

Re: Dynamic Wizard Example

2010-06-21 Thread Jeremy Thomerson
Wicket examples in core has a couple of examples. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 21, 2010 10:19 AM, "jbellmann" wrote: Hi Peter, thank your quick answer and for the code. Maybe i will have some questions to you lat

Re: InMethod Grid

2010-06-20 Thread Jeremy Thomerson
It is ASL 2, but the Apache license is *not* required for WicketStuff. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 20, 2010 12:10 PM, "Douglas Ferguson" wrote: Looks like it is Apache 2.0, which I'd be willing to guess would

Re: ListView + dynamic rows: always remove last row...

2010-06-19 Thread Jeremy Thomerson
, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: Wicket Ajax Event on Component with Parameters

2010-06-18 Thread Jeremy Thomerson
ketAjaxGet('" + getCallbackUrl(onlyTargetActivePage) + "&myIDs=' + getSelectedIDs() + );}"; } } notice that the getSelectedIDs() is a JS function that you would need to define Fix the syntax (I probably have typos) and apply it to your use case. -- Jeremy Thomerson http://www.wickettraining.com

Re: modalWindow can not be closed

2010-06-18 Thread Jeremy Thomerson
What shows up in the ajax debug window? Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jun 17, 2010 10:59 PM, "蔡茂昌" wrote: i have set a breakpoint on modalWindow.close(target) ,, it reached ,but modalWindow still could not

Re: inconsistency in property expression when using . for self reference

2010-06-17 Thread Jeremy Thomerson
or these points. > > ++ > joseph > > > > > ----- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- Jeremy Thomerson http://www.wickettraining.com

Re: Validators on Required Fields

2010-06-17 Thread Jeremy Thomerson
while doing this. If not, you can submit the quickstart to JIRA and we will take a look since it would be a bug. -- Jeremy Thomerson http://www.wickettraining.com

Re: Making rows of DefaultDataTable into links

2010-06-15 Thread Jeremy Thomerson
ly obvious, as well as retaining right-click > functionality). > > Any ideas? Thanks in advance. > to make the rows into links, override newItem (or whatever the name is - it starts with new) that creates a new row. then you could add an onclick to the row item, or even an ajaxeventbehavior("onclick") to do some ajax behavior to make the column into a real link, you'll need to use a fragment since the default html for a cell is just a span. -- Jeremy Thomerson http://www.wickettraining.com

Re: How to remove css class from a component?

2010-06-15 Thread Jeremy Thomerson
leAttributeModifier("class", true, new > AbstractReadOnlyModel() { >public String getObject() { >return inputComponent.getFeedbackMessage() != null > ? "errorField" : ""; >} >}); > } > > There is no such constructor forSimple

Re: How to remove css class from a component?

2010-06-15 Thread Jeremy Thomerson
remove CSS class here?? > } >} > > > Thanks! > > > --- On Wed, 6/16/10, Jeremy Thomerson wrote: > > > From: Jeremy Thomerson > > Subject: Re: How to remove css class from a component? > > To: users@wicket.apache.org >

Re: How to remove css class from a component?

2010-06-15 Thread Jeremy Thomerson
ot;), " ")); > > How can I remove this CSS class in java code? > > Best! > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: How to create a Popup Button

2010-06-15 Thread Jeremy Thomerson
PopupSettings.SCROLLBARS).setHeight( 300).setWidth(730).setTop(300).setLeft(180); Link link = new Link("link") { @Override public void onClick() { System.out.println("clicked"); setResponsePage(HomePage.class); } }; link.setPopupSettings(popupSettings); add(link); -- Jeremy Thomerson http://www.wickettraining.com

Re: Validation

2010-06-15 Thread Jeremy Thomerson
fire, how they > interact and so forth. Where is this info discussed? > > Brian Mulholland > > > > > On Tue, Jun 15, 2010 at 6:12 PM, Jeremy Thomerson > wrote: > > On Tue, Jun 15, 2010 at 4:57 PM, Brian Mulholland < > blmulholl...@gmail.com>wrote: > &

Re: Validation

2010-06-15 Thread Jeremy Thomerson
subscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > IIRC, a second validator will not get called if the first fails. Does the second one get called when the first succeeds? -- Jeremy Thomerson http://www.wickettraining.com

Re: Easy fast question, properties ´file for valida tion....

2010-06-15 Thread Jeremy Thomerson
at somewhere you have an error in naming - either in your code, or in the email. You say that your file is named "Home.java", but the code is for the "HomePage" class. This would create a compile error. So, it seems possible that your file is actually Ho

Re: got no pages from a data provider

2010-06-15 Thread Jeremy Thomerson
ure"), > Parameter.with("limit", String.valueOf(count)), > Parameter.with("offset", String.valueOf(first))); > users=myFriends.getData(); > } catch (FacebookException e) { > log.error(e); > sesion.error("te desconectaste de facebook"); > } > this.size=users.size(); > return users.iterator(); > } > ... > Any idea? > > -- > Fernando Wermus. > > www.linkedin.com/in/fernandowermus > What is size() returning? -- Jeremy Thomerson http://www.wickettraining.com

Re: Easy fast question, properties ´file for valida tion....

2010-06-15 Thread Jeremy Thomerson
.@wicket.apache.org > > Are you asking why your "Required" strings are not being rendered? If so, please check that your properties file has the same name as your java file. There are some inconsistencies in your email - not sure if this is just a typo in the email or what -- Jeremy Thomerson http://www.wickettraining.com

Re: Newbie question anti-patterns and wicket, constructor component building

2010-06-15 Thread Jeremy Thomerson
is bad. That's what models are for. Load data in models - not while constructing an object. -- Jeremy Thomerson http://www.wickettraining.com

Re: Newbie question anti-patterns and wicket, constructor component building

2010-06-15 Thread Jeremy Thomerson
is bad. That's what models are for. Load data in models - not while constructing an object. -- Jeremy Thomerson http://www.wickettraining.com

Re: Newbie question anti-patterns and wicket, constructor component building

2010-06-15 Thread Jeremy Thomerson
their constructor all the time - and it should NOT be there. -- Jeremy Thomerson http://www.wickettraining.com

Re: WebResponse ContentLength > 2G

2010-06-15 Thread Jeremy Thomerson
t; > > > - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Jeremy Thomerson http://www.wickettraining.com

Re: WebResponse ContentLength > 2G

2010-06-15 Thread Jeremy Thomerson
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > yes, please open a jira -- Jeremy Thomerson http://www.wickettraining.com

Re: Question about markup inheritance and page layouts

2010-06-15 Thread Jeremy Thomerson
> > > > Where did you place the wicket:panel tags in your markup? > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > They are in the SomePage: > > > SomePage.html: > > > > > > > > > > > > > No

Re: Wicket and mobile browsers

2010-06-15 Thread Jeremy Thomerson
On Tue, Jun 15, 2010 at 10:26 AM, Joachim F. Kainz wrote: > We have nothing to do with visural wicket Oops - my bad. Jolira / Visural - all the names jumble in my head after a while. -- Jeremy Thomerson http://www.wickettraining.com

Re: Question about markup inheritance and page layouts

2010-06-15 Thread Jeremy Thomerson
nize > the "BasePanel" HTML child code. > > My intended goal is to avoid duplicating HTML content, what is the best > way to achieve that. Maybe I should use markup inheritance for the > panel instead of the page? > > > Where did you place the wicket:panel tags in your markup? -- Jeremy Thomerson http://www.wickettraining.com

Re: Creating and zipping binary files for download

2010-06-15 Thread Jeremy Thomerson
urce that's local to the user's session and Wicket will create the URL for you. That also saves him from having to write it out to a file at all - he can just stream it back if desired. -- Jeremy Thomerson http://www.wickettraining.com

<    1   2   3   4   5   6   7   8   9   10   >