Der wicket wizzards,
how can I modify the look (e.g. the font-size) of the DatePicker popup
js-component? I try to override the css class (.calendar) in my own css
but this has no effect.
Html-code like
head
link rel=stylesheet type=text/css
href=MyOwnCalendarStyle.css/
Why don't you just put the following code into the head-part of your BasePage?
head
link rel=stylesheet type=text/css href=yourpath/your.css
/
/head
Wicket does not touch thie header if it's the head in your BasePage. If you
place some panels at your page and
after the datepicker sheet?
Martijn
On 9/9/07, Stefan Lindner [EMAIL PROTECTED] wrote:
Der wicket wizzards,
how can I modify the look (e.g. the font-size) of the DatePicker popup
js-component? I try to override the css class (.calendar) in my own
css but this has no effect.
Html-code like
Problem is solved with a workaround. Thank you all.
-Ursprüngliche Nachricht-
Von: Stefan Lindner [mailto:[EMAIL PROTECTED]
Gesendet: Sonntag, 9. September 2007 12:26
An: users@wicket.apache.org
Betreff: RE: DatePicker style in old Wicket 2.0
I hope my css is loaded after
?
Thanks,
Jason
Stefan Lindner wrote:
Why don't you just put the following code into the head-part of your
BasePage?
head
link rel=stylesheet type=text/css href=yourpath/your.css
/
/head
Wicket does not touch thie header if it's the head in your BasePage
)?
Stefan Lindner
-Ursprüngliche Nachricht-
Von: Jan Kriesten [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 19. Oktober 2007 09:40
An: users@wicket.apache.org
Betreff: Re: Update page asynchronus through the server
hi stefan,
Does Wicket provide any mechanism or can anyboldy helb me
And where can I find the org.wicketstuff.dojo.AbstractRequireDojoBehavior class
that is referenced by wicketstupp-push? It's not in the www.wicketstuff.org's
contrib-dojo.
Stefan Lindner
-Ursprüngliche Nachricht-
Von: Jan Kriesten [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 19
and tell the client
to reload it's table?
Of course, I can use a Ajax self updating Timer behavior that polls the
server but that ist not what I dream of. Any hints? I remember a mailing
som moths ago concerning this case but I did not find a sufficent search
prhase for nabble.
Stefan Lindner
Hallo Herr Schäfer,
ganz unverbindlich angefragt: Raum Nürnberg, würde das Ihrem Verständnis von
southern Germany entsprechen?
Mit freundlichen Grüßen
Stefan Lindner
-Ursprüngliche Nachricht-
Von: Uwe Schäfer [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 6. November 2007 13:52
This would be a great benefit for mee too. I have the same problem and I
currently use a self updateing Timer to trigger an AjaxRequestTarget to open
the modal window.
Stefan
-Ursprüngliche Nachricht-
Von: Matej Knopp [mailto:[EMAIL PROTECTED]
Gesendet: Samstag, 17. November 2007
I just can tell you our experience as wicket users. We recently moved a
production system from wicket 2.0 (was an alpha version or so) to 1.4RC1. This
system is now in production again. It runs as stable as the old one.
We developed two applications with 1.4RC1 (going through M1 to M3) which are
serialization in 1.4RC1
Does your page inside modal window contain reference to outer page?
-Matej
On Tue, Nov 25, 2008 at 1:43 PM, Stefan Lindner [EMAIL PROTECTED] wrote:
I have a ModalWindow with a page inside it (constructed via
modalWindow.setPageCreator). The page contains a lot of AjaxButtons etc
@wicket.apache.org
Betreff: Re: ModalWindow and page serialization in 1.4RC1
On Tue, Nov 25, 2008 at 6:37 PM, Stefan Lindner [EMAIL PROTECTED] wrote:
No, it does not contain any references to the outer page. I had a similar
case last week, so that this was the first ascpect to investigate.
The page
instead of anonymous make it a private static inner class
-igor
On Tue, Nov 25, 2008 at 9:48 AM, Stefan Lindner [EMAIL PROTECTED] wrote:
Arghhh! Ok, so the Page object itself holds a reference to the parent class.
But is there any way to suppress the serialization of this parent object?
Stefan
The definition of IOptionRenderer is
Interface IOptionRendererT
java.lang.String getDisplayValue(java.lang.Object
object)
the definition of IChoiceRenderer is
Interface IChoiceRendererT
java.lang.Object getDisplayValue(T object)
Why is the
Erlangen, Germany
We are using Wicket Since version 1.0 for all new web projects.
Stefan
-Ursprüngliche Nachricht-
Von: Jeremy Levy [mailto:jel...@gmail.com]
Gesendet: Montag, 15. Dezember 2008 23:51
An: users@wicket.apache.org
Betreff: Re: [OT] wicket users around the world
New York,
It depends :-) You may control the attributes of an element (e.g. attribute
class) with
Component.add(new simpleAttributeModifier(class,
someComponentClass);
Stefan
-Ursprüngliche Nachricht-
Von: walnutmon [mailto:justin.m.boy...@gmail.com]
Gesendet: Dienstag, 23. Dezember
What's the problem? Which wicket version? We use the date picker in Wicket 1.4
trunk inside modal windows and it works fine.
Stefan
-Ursprüngliche Nachricht-
Von: wilson meier [mailto:wilson.me...@googlemail.com]
Gesendet: Mittwoch, 14. Januar 2009 16:47
An: users@wicket.apache.org
We are looking for Wicket programmers with native German language for a project
in Health Care. If anybody on this list knows about persons with free
development capacity please mail to
Stefan Lindner
lind...@visionet.de
In my experience jquery is more rubust and the interference with other
javascript frameworks is no problem. Scriptacolous for example modifys the
javascript basic behavior and tends to cause problems for other frameworks.
-Ursprüngliche Nachricht-
Von: miro
Several Ways to to this. The easiest way for your example
HTML:
H2span wicket:id=content/H2/
In Java
ModelString contentModel = new ModelString();
add(new Label(content, contentModel));
if (user=='admin'=
contenModel.setObject(Admin part);
else if (user == 'anonymous')
clear and consistent with wicket way of doing things...
Best
Ernesto
On Mon, Feb 2, 2009 at 11:47 AM, Stefan Lindner lind...@visionet.de wrote:
Yes, you just have to tell the e.g. Label component not to escapte the
model's content (label.setExcapteModelStrings(false)) Then the model's
string
the HTML by hand... Then what would be the point in
using Wicket? And in this particular case I personally would prefer to use
panels...
Best,
Ernesto
On Mon, Feb 2, 2009 at 12:18 PM, Stefan Lindner lind...@visionet.de wrote:
Of course! And: why not use wicket's Loop for generating each tr and
nested
?
Stefan Lindner wrote:
Several Ways to to this. The easiest way for your example
HTML:
H2H2/
In Java
ModelString contentModel = new ModelString();
add(new Label(content, contentModel));
if (user=='admin'=
contenModel.setObject(Admin part);
else if (user == 'anonymous
Hi Antoine,
we use Vista64 for development and IE 7 64 for testing. We have pages with some
dozen components (buttons, labels, optionfields) that are updated simulaniously
but we never had a problem with IE7 like you described. But I must say we use
Wicker 1.4 current runk, not 1.3.x.
Stefan
And a little bit of example's code too.
-Ursprüngliche Nachricht-
Von: tomlist0...@gmail.com [mailto:tomlist0...@gmail.com] Im Auftrag von Thomas
Mäder
Gesendet: Donnerstag, 5. Februar 2009 23:38
An: users@wicket.apache.org
Betreff: Re: java.lang.ClassCastException in ListMultipleChoice
You need to do 2 things.
1. Mount your Page in Applicatioin.init() methode like
mountBookmarkablePage(/Login, Login.class);
As you see, you can give your page any name you want
2. Your e.g. Login.class must have a parameterless constructor or a constructor
like
public
Yes Willis, that's what we do. So we prefer to have a generic
BuukmarkablePageLink.
-Ursprüngliche Nachricht-
Von: Willis Blackburn [mailto:wbo...@panix.com]
Gesendet: Montag, 2. März 2009 13:43
An: users@wicket.apache.org
Betreff: Re: Why is BookmarkablePageLink generified?
Dear wicket users and wizzards!
Is ist possible to use wicket to implement partial pages that can be
embedded into another page? E.g. to have a normal content management
system like Joomla and use wicket top lug it into exisiting pages for
some dynamic, database driven content? The HTML that is
Hava a look at http://www.wicketstuff.org/wicket13/ajax/form.1 , then download
the wicket sample application and examine the source code.
-Ursprüngliche Nachricht-
Von: newbieabc [mailto:newbie...@yahoo.com]
Gesendet: Mittwoch, 4. März 2009 20:55
An: users@wicket.apache.org
Betreff:
It is still there. I had massive problems with updating dropable items in a
table with ajax.
-Ursprüngliche Nachricht-
Von: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com]
Gesendet: Donnerstag, 19. März 2009 21:31
An: users@wicket.apache.org
Betreff: Re: drag and drop
I would use
Did you already have a look at http://www.walterzorn.com/tooltip/tooltip_e.htm ?
-Ursprüngliche Nachricht-
Von: RoyBatty [mailto:math...@afjochnick.net]
Gesendet: Donnerstag, 26. März 2009 09:21
An: users@wicket.apache.org
Betreff: Re: best way to add tooltips in wicket
OK, OK, i get
in finalize because the classes are already
invalidated. The invalidate method of session is not called on Session
end. I'm using wicket 1.4M2.
Stefan Lindner
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e
Holding a JDBC connection in session is hardly a good idea. Anyway,
take a look at HttpSessionListener.
Which is the preferred pattern for this case? Where should I store a
JDBC Session object?
Stefan Lindner
-
To unsubscribe
How does your RAW html file look like? The one you write by yourself? Something
like
span wicket:id=myTabPanel/span
?
-Ursprüngliche Nachricht-
Von: Pierre Gilquin [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 10. Juli 2008 08:27
An: users@wicket.apache.org
Betreff:
a class=myCssClass href=# wicket:id=myLinkimg
src=images/neu.gif alt=Klicken Sie hier um einen neuen
Therapiekatalog anzulegen.//a
Use css a.myCssClass:hover to modify mouse cursor on over.
-
To unsubscribe, e-mail: [EMAIL
We moved to wicket 1.4M3 (current trunk) with success. It was not so
hard because we already have wrappers for most of wickets core
components (e.g. GenericPanel etc.). We still love the way generics were
in M2 but we can live with M3. But it definitely makes sense that
ConverterLocator is no
I Use wicket 1.3M3.I want to use the ISO-8859-1 encoding for my pages so I
- Have all Java files and all HTML files use ISO-8859-1 encoding.
- All HTML files start with
?xml version=1.0 encoding=ISO-8859-1?
and have
head
meta
tos et the encoding in
Applicaiton.init via setResponseRequestEncoding?
Stefan
-Ursprüngliche Nachricht-
Von: Stefan Lindner [mailto:[EMAIL PROTECTED]
Gesendet: Donnerstag, 24. Juli 2008 13:38
An: users@wicket.apache.org
Betreff: encoding riddle ISO-8859-1
I Use wicket 1.3M3.I want
I had the same problem some week ago but got no answer on this list. Now I use
getMarkupSettings().setDefaultMarkupEncoding(ISO-8859-1);
getRequestCycleSettings().setResponseRequestEncoding(ISO-8859-1);
in the Application.init() method of wicket 1.4M3. Wicket seems to
Amazon says that it ist to be published on Sept. 28. It's the seond time that
the publishing date moved towards the end oft he year.
Stefan
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von James Carman
Gesendet: Montag, 1. September 2008 00:24
You can always have
html
div wicket:id=content/div
/html
and java
class MyPage extens WebPage {
public MyPage() {
add(new Label(content, a lot of html tags and things fort he
page).setEscapeModelStrings(false));
Your DropDownChoice element has no Model so the submit code does not know where
to store your selection. Add a
new ModelString()
to it's constructor.
-Ursprüngliche Nachricht-
Von: Azzeddine Daddah [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 16. September 2008 15:01
An:
A microsoft tech tip (http://support.microsoft.com/kb/222064) for IE
suggests to put a
/BODY
HEAD
META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE
/HEAD
/HTML
head tag after the closing /body tag. But wicket (1.4M3) deletes the
head and the served page is
difference as we set the
proper http headers. Pragmas are just alternative thing to do so.
-Matej
On Wed, Sep 17, 2008 at 10:28 PM, Stefan Lindner [EMAIL PROTECTED]wrote:
A microsoft tech tip (http://support.microsoft.com/kb/222064) for IE
suggests to put a
/BODY
HEAD
Wicket in Action is out, the open issues for 1.4 are constantly decreasing. Is
a 1.4M4 in sight?
Stefan
Whichis the correct way to terminate the Itialisation of an application? When a
fatal error occurs in my Application's init() method the initialisation oft he
Application should be stopped. Currently I call
unset();
internalDestroy();
But internalDestroy()
just terminate that webapp, dont know if it
will call destroy...
On 9/21/08, Stefan Lindner [EMAIL PROTECTED] wrote:
Whichis the correct way to terminate the Itialisation of an application?
When a fatal error occurs in my Application's init() method the
initialisation oft he Application should
The global session timeout for all sessions can be set in the web.xml
file. Is it possible to set an individual session timeout for each
session? E.g. depending on the user's role?
Stefan
-
To unsubscribe, e-mail: [EMAIL
: Individual session timeout
session.settimeout() ?
Stefan Lindner wrote:
The global session timeout for all sessions can be set in the web.xml
file. Is it possible to set an individual session timeout for each
session? E.g. depending on the user's role?
Stefan
/HttpSession.html
You can get that from the wicket session... Or request cycle... I
cant remember..
Stefan Lindner wrote:
I forgut to tell you that I use Wicket 1.4 M3. I can't see any
settimeout-Method in Session.
Stefan
-Ursprüngliche Nachricht-
Von: Nino Saturnino Martinez Vazquez Wael
On the page buy the book (http://wicketinaction.com/buy/) is a wrong url for
Manning.com-Ebook and print. The wrong url is http://manning.com/dashorst;
the correcturl is http://www.manning.com/dashorst;
Stefan
-Ursprüngliche Nachricht-
Von: Martijn Dashorst [mailto:[EMAIL PROTECTED]
... what is the problem?
Martijn
On Tue, Sep 30, 2008 at 2:51 PM, Stefan Lindner [EMAIL PROTECTED] wrote:
On the page buy the book (http://wicketinaction.com/buy/) is a wrong url
for Manning.com-Ebook and print. The wrong url is
http://manning.com/dashorst; the correcturl is
http
think i will make some time this weekend to look over jira issues and also
merge back a lot of changes i already did in 1.3.5
igor did also a lot of stuff already so for me within 1 or 2 weeks we could
do both releases
johan
On Thu, Oct 2, 2008 at 8:15 AM, Stefan Lindner [EMAIL PROTECTED] wrote
Is it possible to submit a form to a bookmarkable page (with form input
as page parameters)?
What I want is a form with a submit button/link that leads to a page
with e.g. URl
http://mysite.com/myapp/targetPage/param1/value1/param2/value2
Of course I mount the submit link#s target page
to bookmarkable page
you can override form's oncomponenttag() and call super then
tag.put(action, urlfor(yourpage.class));
i believe that should work
-igor
On Thu, Oct 2, 2008 at 8:41 AM, Stefan Lindner [EMAIL PROTECTED] wrote:
Is it possible to submit a form to a bookmarkable page (with form input
, Stefan Lindner [EMAIL PROTECTED] wrote:
Wow! Seems to be a good starting point. I'm using wicket for 2 years now but
still got a lot to learn. Sigh!
Now I have a form with a simple submit button. In the Form's onComponentTag I
have
tag.put(action, urlFor(TargetPage.class, parameters
The solution, if anybody else should encounter this problem ist to put
the following into the onSubmitMethod
PageParameters p = new PageParameters();
p.add(myParameterName, getModelObjectOfFormComponent());
getResponse().redirect(urlFor(MyTargetPage.class,
p).toString());
().setRequestTarget(new RedirectRequestTarget(myurl));
}
-igor
On Thu, Oct 2, 2008 at 2:12 PM, Stefan Lindner [EMAIL PROTECTED] wrote:
OK. But how to
and in onsubmit construct the url and redirect to it.
The only methods for redirects I know are the redirectToInterceptPage method
Have a look at
http://www.nabble.com/body-onload-contribution-to13097473.html#a13097473
-Ursprüngliche Nachricht-
Von: Edgar Merino [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 3. Oktober 2008 13:53
An: users@wicket.apache.org
Betreff: Contribute to the body tag (onload)
Hello,
Is
I need to perform some actions on sesson destroy or after session is
destroyed. In Application I can override ths sessionDestroyed method.
This method hast he session id as it's parameter. So it should be
possible to address a certain Sesson. But how can I obtain the session's
id on creation? When
I try to create a watchdog page for our site. My idea was to check the
neccessary resources and respond with a 500 error in case of failure.
So I placed
getWebRequestCycle().getWebResponse().getHttpServletResponse().setStatus
(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
in the page
);
}
Alternatively, you can throw an AbortWithWebErrorCodeException and
provide it
with the appropriate error code and an optional message.
Stefan Lindner wrote:
I try to create a watchdog page for our site. My idea was to check the
neccessary resources and respond with a 500 error in case of failure.
So
I searched the mailing list for posts about uploading a file with an
AjaxButton. The general meaning ist hat this is not possible in wicket. On post
statet that there might be a solution in wicketstuff (where).
Did anybody solve this problem?
Stefan
Use a FeedbackPanel(final String id, IFeedbackMessageFilter filter) constructor
with a message filter.
Stefan
-Ursprüngliche Nachricht-
Von: Herbert Winter [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 14. Oktober 2008 11:04
An: users@wicket.apache.org
Betreff: Two /(Upload)Forms and 2
2008 12:40
An: users@wicket.apache.org
Betreff: RE: Migration to 1.4 - generic headache
Hi Stefan!
Stefan Lindner wrote:
Use a Void Link (LinkVoid) or create your own Link wrapper class
Class MyLink extends LinkVoid
I know I can create a wrapper but it is a ugly was to solve my
: Re: AW: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop
Wichtigkeit: Hoch
Hi Stefan,
Op vrijdag 25-04-2008 om 18:03 uur [tijdzone +0200], schreef Stefan Lindner:
To all the other WicketStuff Dojo users: I have successfully built a
version for current wicket 1.4 trunk. If someone nedds it, please let
IndicatingAjaxFallbackLink is not generic. It extends AjaxFallbackLink
public abstract class IndicatingAjaxFallbackLink extends
AjaxFallbackLink
which is generic
public abstract class AjaxFallbackLinkT extends LinkT
implements IAjaxLink
I think IndicatingAjaxFallbackLink should
@wicket.apache.org
Betreff: Re: WIcket 1.4 IndicatingAjaxFallbackLink
it is generic in trunk.
-igor
On Wed, Nov 5, 2008 at 12:55 AM, Stefan Lindner [EMAIL PROTECTED] wrote:
IndicatingAjaxFallbackLink is not generic. It extends AjaxFallbackLink
public abstract class
up and
it will be generified.
-igor
On Wed, Nov 5, 2008 at 2:52 PM, Stefan Lindner [EMAIL PROTECTED] wrote:
I checked out trunk from http://svn.apache.org/repos/asf/wicket/trunk and
IndicatingAjaxFallbackLink is still not generic. Am I using the wrong trunk
URL?
Stefan
-Ursprüngliche
What is the perfect way to replace the reattach method of wicket 2.0 in
Wicket 1.4? Is it correct to replace the 2.0 expressioin
myComponent.reAttach()
with
addOrReplace(myComponent);
Stefan
-
To unsubscribe,
Thanks Igor!
-Ursprüngliche Nachricht-
Von: Igor Vaynberg [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 7. November 2008 22:14
An: users@wicket.apache.org
Betreff: Re: how to replace 2.0's reAttach
yes
-igor
On Fri, Nov 7, 2008 at 1:10 PM, Stefan Lindner [EMAIL PROTECTED] wrote:
What
Why don't you use a LazyLoadPanel? May this be an option?
-Ursprüngliche Nachricht-
Von: eyalbenamram [mailto:[EMAIL PROTECTED]
Gesendet: Montag, 10. November 2008 12:17
An: users@wicket.apache.org
Betreff: form being posted many times
Hi
I have a login page (with a form) that
and
those are also serialized.
On 11/12/08, Stefan Lindner [EMAIL PROTECTED] wrote:
I have a ModalWindow with a page as content, not a panel. Wn Ajax button on
this modal window starts another modal window inside the first modal window
(Page as content not a panel). This second modal window holds
I have a ModalWindow with a page as content, not a panel. Wn Ajax button on
this modal window starts another modal window inside the first modal window
(Page as content not a panel). This second modal window holds a Button. The
Button has an AjaxEventBehavior
Button mybutton = new
Take a look at Joomla 1.5 (www.joomla.org). If you have a linux box with
Apache/php/MySql the Joomla installation is just to unzip the distribution and
run a litte menu driven install program. Administration is easy, plugins for
nearly every purpose are available. 3 designs are part of the base
Use a link and make it look like a button with css. Or use a button
type=button.
-Ursprüngliche Nachricht-
Von: miro [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 14. November 2008 16:27
An: users@wicket.apache.org
Betreff: button without aform
Can I have buttons without a form ? I
.
-los
Stefan Lindner wrote:
I guess that 'web-app version=2.4' means this is a web application for
servlet version 2.4. But Tomcat 5.0 supports only version 2.3? Mybe this
could help you. Or you just drop the 'version =...' attribute.
Stefan
-Ursprüngliche Nachricht-
Von
In the onSubmit method of your form place something like
PageParameters p = new PageParameters();
// add your search parameters here
getRequestCycle().setRequestTarget(new
RedirectRequestTarget(urlFor(MySearchResults.class, p).toString()));
Try out
Yes!
Von: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com]
Gesendet: So 16.08.2009 15:50
An: users@wicket.apache.org
Betreff: Re: jQuery+Wicket+Form
Hi, by WIA you mean Wicket in Action?
**
Martin
2009/8/16 Stefan Lindner lind...@visionet.de:
I
You need
@Override
protected WebRequest newWebRequest(HttpServletRequest servletRequest) {
return new UploadWebRequest(servletRequest);
}
In your Application's class. I think you should definitly read the APIdoc (see
UploadProgressBar)!
Stefan
had to download documentation for
1.4 from the maven repository.
Thanks again.
Stefan Lindner wrote:
You need
@Override
protected WebRequest newWebRequest(HttpServletRequest servletRequest) {
return new UploadWebRequest(servletRequest);
}
In your
Check the mailinglist archive. I remember that there was a long discussion
about this question. I also would prefert to have a generic Panel.
But the Wicket users vote against it. Most users did not want to write
PanelVoid for not generic Panels. The easiest was is to define your own
generic
Yes, we should! I started an initial implementation for old Wicket 2.0 in
wicketstuff. But this was 3 years ago. I still have a simple implementation
that works with wicket 1.4.
Not much documentation, not very flexible, but it works and may be suitable for
a quick and dirty solution for you.
Dear wicket users,
I have a lazy loading panel. The components inside the generated panel (i.e.
the panel that is generated inside the getLazyLoadComponent method) have some
header contributing ajax behaviors (jQuery etc.).
The lazyly loaded components render javascript resources to the head
(JavascriptPackageResource.getHeaderContribution(ResourceReference...));
and this works fine in any browser I have tested (IE, FF, Chrome, etc).
Best,
Ernesto
On Fri, Oct 9, 2009 at 2:25 PM, Stefan Lindner lind...@visionet.de wrote:
Dear wicket users,
I have a lazy loading panel. The components inside the generated panel
(i.e
contribution in lazy load panels
Why not use firebug and see your script section is added the head of the
page?
Ernesto
On Fri, Oct 9, 2009 at 4:51 PM, Stefan Lindner lind...@visionet.de wrote:
I have some Behaviors that extend AbstractDefaultAjaxBehavior. In the
renderHead method of the Behaviors
In my Wicket 1.4(.2) application I have a AjaxFallbackDefaultDataTable . No big
tricks, no method overriding, just an out of the box
AjaxFallbackDefaultDataTable. The resulting rendered html table has no head
section. It should be there because the source for datatable.html shows a
thead
Forget my post. Some FF-Plugins must have mixed up the html. After a fresh
FF-Installation the thead is back again. Strange.
Stefan
-Ursprüngliche Nachricht-
Von: Stefan Lindner [mailto:lind...@visionet.de]
Gesendet: Montag, 12. Oktober 2009 01:36
An: users@wicket.apache.org
Betreff
I found inmethod datagrid at
http://wicketstuff.org/maven/repository/com/inmethod/grid-examples/ but
no hint or link to it on the wiki page
http://wicketstuff.org/confluence/display/STUFFWIKI/Wiki.
The project remained in 1.0 state since the end of last year. Is it
compatible with wicket 1.4? Is
Thenk you all for your replies!
I found a hand full of mailing list entrys with hints for patches to
make some classes generic. Are there any attempts to integrate them into
the current trunk? I think a generic IGridColumn would be very handy.
Should I start doing it?
Stefan
I play around with the DefaultDataGrid component and I have two questions:
1. Is it possible to register for a column resized event? This would give us
the ability to remember the user's favorite column widths.
2. Is it possible to hide the navigation footer? Yes, I can do it via css but
if I
for it and attach it there.
-Matej
On Mon, Oct 12, 2009 at 5:24 PM, Stefan Lindner lind...@visionet.de wrote:
Thenk you all for your replies!
I found a hand full of mailing list entrys with hints for patches to
make some classes generic. Are there any attempts to integrate them into
the current
, Oct 13, 2009 at 10:24 AM, Stefan Lindner lind...@visionet.de wrote:
May I create a branch like inmethod-grid-1.0b4? This would help me in
checking in intermediate steps and revert if I'm on the wrong way. Approx
half of inmehtod grid is generic now.
Stefan
-Ursprüngliche Nachricht
Looking into the JavaDoc /API is always a good approach:
One other option you should know of is the 'defaultFormProcessing' property of
Button components. When you set this to false (default is true), all validation
and formupdating is bypassed and the onSubmit method of that button is called
I have an AjaxLink
HTML: a wicket:id=linkimg/a
JAVA: new AjaxLinkMyClass(link, model){
@Override
public void onClick(AjaxRequestTarget target) {
// open a ModalWindow
}
When I klick into the open ModalWindow, the ModalWindow taktes the focus and
the opening link's onClick isn't called anymore. How can I manage to set the
Focus at the ModalWindow?
-Ursprüngliche Nachricht-
Von: Stefan Lindner [mailto:lind...@visionet.de]
Gesendet: Sonntag, 15. November
// Put Javascript into body after compoonent
@Override
protected void onComponentRendered() {
super.onComponentRendered();
JavascriptUtils.writeJavascript(response, our javascript);
}
or
// put Javascript into head
I try to add a AjaxFormComponentUpdatingBehavior to a RadioGroup. The
RadioGroup contains some Radio-Components.
Now, when I click onto any Radio, nothing happens. The RadioGroup
AjaxFormComponentUpdatingBehavior does not see the click onto a Radio.
But I can't add a
I should have asked google first.
AjaxFormChoiceComponentUpdatingBehavior does ist!
Stefan
-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org
1 - 100 of 311 matches
Mail list logo