Hi,
Anyone compare wicket with Tibco General Interface? Tibco's stuff
seems very impressive.
Also I found it's very difficult to have a more advanced example for
each wicket components.API doc and examples only list the very basic
one.(ie: I want a single click behavior inside Palette which I s
make both of your components not required, and use IFormValidator to
make sure at least one is filled in. alternatively you can override
form.onvalidate() and perform custom validation there. remember to use
component.getconvertedinput() and not getmodelobject() during
validation.
-igor
On Mon,
You might want to use ajax to show the textfield only after a specific
option in the dropdown is chosen.
Add, for example, OnChangeAjaxBehavior to the dropdown where you add
the textfield to the target. In the textfield's isVisible method you
evaluate whether to show it or not.
textfield = new te
thats pretty freaking cool :)
-igor
On Mon, Apr 6, 2009 at 8:52 PM, John Armstrong wrote:
> I think this may be a first but I am now running wicket on my AppleTV
> under Jetty.
>
> This is for a home automation project where wicket will be the glue
> between serial port communications and a USB-
I think this may be a first but I am now running wicket on my AppleTV
under Jetty.
This is for a home automation project where wicket will be the glue
between serial port communications and a USB-UIRT infrared input
device.
Hooray for Wicket, new frontiers.. Well, it wasn't that hard but I
think
New to wicket trying to figure out the best way to do custom validation. I
have a dropdown and a textfield, only 1 of which is required. I want the
user to select from the dropdown, and if their option is not listed, be
able to enter anything in the textfield
Are you using something else together with wicket-jsecurity? I saw the
example in the svn and there is no annotation based authorization or
something like this. How did you implement the authorization in your
(big) application?
Thanks,
Eduardo S. Nunes
On Tue, Mar 10, 2009 at 2:53 PM, Les Hazlewo
I have a Modal Window that acts like a progress indicator. It has an
AbstractAjaxTimerBehavior that checks to see if a condition is met. When
it is met an image on the Modal Window is removed and a form with an
AjaxButton is added. The image starts with isVisible() = true and the
form and butto
have you tried ListView#setReuseItems(true) ?
Ryan Gravener
http://ryangravener.com/flex | http://twitter.com/ryangravener
On Mon, Apr 6, 2009 at 4:57 PM, Jeff Palmer wrote:
> I have a list view that has some form components (a checkbox and a
> RadioChoice). All of the data from the ListView i
I have a list view that has some form components (a checkbox and a
RadioChoice). All of the data from the ListView is getting displayed on the
page properly, but when I try to modify one of the form values, it isn't
getting updated as expected. If anyone has any idea what I might be doing
wrong
hi,
i've problems with submitting my form in a modal window. when i use the same
component (surrounded with a panel) directly on a page everything works fine.
the problem is, that all component-models are set to null.
in the request-map i found these parameters:
-random:0.5499189677089167
-butt
Hi all!
I have several swf files in webapp/ folder and I need to publish them
for any user. How can I achieve that in wicket?
Thanks in advance!
--
Fernando Wermus.
www.linkedin.com/in/fernandowermus
http://mientretiempo.blogspot.com/
Although it'd probably be more correct to check the state of the
navPanel within a switchingPanel (
switchingPanel.getPage().get("navPanel") ) and render it accordingly.
On Mon, Apr 6, 2009 at 8:00 PM, Sergey Podatelev
wrote:
> Not sure if I understand your problem correctly, but you can try to
>
Not sure if I understand your problem correctly, but you can try to
use navPanel.getPage().get("switchingPanel")
On Mon, Apr 6, 2009 at 5:23 PM, HHB wrote:
> Hey,
> For our application layout we decided to go with
> switching panels technique.
> The Index page contains the navigation panel
> whic
The problem is that your unit tests run out of the web container, you
can't rely on a servlet context listener to load the Spring context in
this situation.
You need a hook to inject a mock context when testing. This post
describes a solution: http://blog.ehour.nl/index.php/archives/21
2009/4/6
I tried what you suggested, no luck, the same error.
Leandro Féres wrote:
>
> Sorry, didn't see (at first) that you've already done something similar.
> Anyway, try replacing "classpath:applicationContext.xml" for
> "WEB-INF/applicationContext.xml". I'm not sure if this classpath param
> works
Sorry, didn't see (at first) that you've already done something similar.
Anyway, try replacing "classpath:applicationContext.xml" for
"WEB-INF/applicationContext.xml". I'm not sure if this classpath param works
there.
Regards,
Leandro.
2009/4/6 Leandro Féres
> You must tell where's your sprin
You must tell where's your spring context (applicationContext.xml).
Try this:
org.springframework.web.context.ContextLoaderListener
contextConfigLocation
WEB-INF/applicationContext.xml
Regards,
Leandro.
2009/4/6 HHB
> Hey,
> I'm trying to integrate Spring 2.5 into our Wicket
>
Hey,
I'm trying to integrate Spring 2.5 into our Wicket
application, I did the following:
web.xml:
contextConfigLocation
classpath:applicationContext.xml
org.springframework.web.
context.ContextLoaderListener
OpenSessionInViewFilter
As I went thru the new wicketstuff-core, I found there is a lightbox for
JQuery. I suppose we could use lightbox for JQuery for those who move to
Wicket-1.4. Sorry I haven't gone in details but I presume it has the same
style and serves the same purpose.
nino martinez wael wrote:
>
> wicketst
Hey,
For our application layout we decided to go with
switching panels technique.
The Index page contains the navigation panel
which contains links to switch panels.
I know how to implement this technique but only
when the links that are supposed
to switch panels are on the same Index page, not
Hi there!
I have a question regarding your code below:
@Override
public IResourceStream getMarkupResourceStream( final MarkupContainer
container, final Class containerClass )
{
String markup = call to method to get the markup string (
creates it on the fly
It could probably be done using an AjaxSelfUpdatingBehavior, though
you'll need to off load the actual uploading to a separate thread. Once
the upload is complete set some flag/messages in the session and have
the behaviour show the modal window based upon this(could use a second
behaviour on t
Hi.
Seems like you're missing a jar file. The
"java.lang.NoClassDefFoundError" means just what it sais. The class can
not be found in the classpath.
It has nothing to do whether the class is abstract or not.
/Jörgen
Branden Tanga skrev:
Hello all,
I'm trying to follow the examples given on
wicketstuff core.. But the common js lib are something that the
libraries so use internally. Like Dojo, scriptaculous or minies.. So
the thing would be to patch both to use that..
2009/4/4 TH Lim :
>
> Are you refering to Wicket core or wicketsutff-core? Where do I find this
> common JS library?
Hello all,
I'm trying to follow the examples given on wicketstuff.org for TabbedPanel
here: http://tinyurl.com/cpzkas
My code compiles fine, but when I run it I get a noclassdeffound error for
AbstractTab. Here's my snippet of code:
import org.apache.wicket.markup.html.WebPage;
import org.apache
ComponentStringResourceLoader's javadoc is very helpful here:
assume a component hierarchy like page1.form1.input1 and your are
requesting a key named 'Required'. Wicket will search the property in
the following order:
page1.properties => form1.input1.Required
page1.properties => Required
Tip: search for rendering to String.
Regards,
Erik.
James Carman wrote:
On Wed, Apr 1, 2009 at 9:57 AM, Brill Pappin wrote:
I'd love to use wicket as a more general template library.
My immediate problem is that I need to build email template library.
Has anyone done an extension that
I would use a panel (as Igor already suggested) but in case you decide to use
a Page there is already an
org.apache.wicket.markup.html.link.InlineFrame
class that can be handy.
Ernesto
TradeMark wrote:
>
> Hi there,
>
> -i would like to ask whether it is possible to display other page in
On Mon, Apr 6, 2009 at 12:18 PM, Peter Ross wrote:
> Hi,
>
> I'm new to wicket and I am looking at integrating Prince XML with Wicket.
>
> Prince supplies a method
>
> public boolean convert(InputStream xmlInput, OutputStream pdfOutput)
> throws IOException
>
> What I would like to do is add this
30 matches
Mail list logo