Right, should probably be something like:
protected void onSelectionChanged(SelectOption newSelection) {};
Also, note that SelectOption is generic...
Regards,
Sebastien.
On Tue, Apr 24, 2012 at 8:18 PM, Per Newgro per.new...@gmx.ch wrote:
it is because of the @override annotation on a non
a setResponsePage; you just have to get the right Page class from
the param and maybe construct your PageParameters also...
Hope this helps,
Sebastien.
you want to redirect to.
Hope it answers your need.
Sebastien.
On Mon, Apr 30, 2012 at 12:34 PM, raju.ch raju.challagun...@gmail.comwrote:
Thnx for the reply sebastian, but I didn't get the solution what you
suggested..Can you please explain it with an example?
thanks in advance
--
View
Hi,
The feedbackpanel always shows that the value it is getting back from
itemField is empty.
itemField.getValue or getModelObject will returns empty if it is not in
your form... (this is the only reason I see regarding to the code you
supplied)
Sebastien.
On Tue, May 1, 2012 at 3:54 PM
Oops, I did not saw you was using an AjaxLink... You have to use an
AjaxButton instead.
Sebastien.
On Tue, May 1, 2012 at 5:51 PM, cmagnollay cmagnol...@gmail.com wrote:
Well, that is not the case unfortunately. Here is my code as stripped down
as
I could get it, to still supply information
() (but not
getModelObject, which might return null in that case). Thus, the onSubmit
(the one of the form) will not be called (once again, because the form has
not been processed), only the button#onSubmit will.
Hope this helps,
Sebastien.
On Tue, May 1, 2012 at 6:51 PM, cmagnollay cmagnol...@gmail.com wrote:
Hmm
failed.
Sebastien.
On Tue, May 1, 2012 at 8:21 PM, cmagnollay cmagnol...@gmail.com wrote:
No, this looks very promising. Thank you very much for elaborating. I still
do not understand what is different about AutoCompleteTextField that it
will
not give me back the textual value (getModelObject
Hi Martin,
Here we are: https://issues.apache.org/jira/browse/WICKET-4549
Sebastien.
On Thu, May 10, 2012 at 9:38 AM, Martin Grigorov mgrigo...@apache.orgwrote:
Guys,
Please use Jira for bug reports.
On Thu, May 10, 2012 at 9:28 AM, Thomas Götz t...@decoded.de wrote:
I can confirm
onSubmit.
But apart from that, I just would like to tell you that if you need an
authentication mechanism, you'll probably better have to use the
wicket-auth-roles.
All you need to know is here:
http://wicket.apache.org/learn/projects/authroles.html
Regards,
Sebastien
On Mon, May 14, 2012 at 8:10
And the WICKET AJAX DEBUG mark appears as soon as you are dealing with
wicket ajax component. It is not displayed anymore when your configuration
changes from development to deployment (web.xml)
On Mon, May 14, 2012 at 9:47 PM, Sebastien seb...@gmail.com wrote:
Hi kshitiz,
Well, looking
? If terget == null
then nothing happens in onSubmit() method.
- Add some logging (log4j etc.), to your app
Regards
Wlodek
2012/5/14 Sebastien seb...@gmail.com:
And the WICKET AJAX DEBUG mark appears as soon as you are dealing with
wicket ajax component. It is not displayed anymore when your
Hi,
why does it call onFormSubmitted for the root form? Is this the way it
has to be programmed for nested forms to work?
Well, I think it should not be the case, according to:
https://cwiki.apache.org/WICKET/nested-forms.html
Regards,
Sebastien.
On Thu, May 17, 2012 at 4:18 PM, Hill, Joel
Hi,
I aggree with Sven. Another option is to pass the panel to the LDM's
contructor so you can do a panel.getPage() to get the page. Just cast to
the appropriate page type and do yourpage.getMyModel().
Best regards,
Sebastien.
On Wed, May 30, 2012 at 10:32 PM, Sven Meier s...@meiers.net wrote
Well, I don't think so, even it needs to be tested.
My guess is that the panel is added to the page (then, serialized). To the
LDM's contructor, you will pass 'this' (means, the panel). In the LDM, you
will store the reference of that 'this' into a variable. In all case, we
always have the
Hello again,
I tested in a quickstart and it works. (I just noticed you did not called
super.onInitialize())
The code I used:
class MyPOJO
{
public Boolean isSelected()
{
return true;
}
}
public class HomePage extends WebPage
{
private static final long serialVersionUID
no
problem to have the LDM as a nested class; for the quick start, the LDM was
in the MyPanel.java (not nested then, but there is no huge difference
strictly java speaking).
Regards,
Sebastien.
On Thu, May 31, 2012 at 1:41 AM, gmparker2000 greg.par...@brovada.comwrote:
Thank you so much
(rowModel);
item.add(new MyBigIntegerLabel(componentId, model)); //
MyBigIntegerLabel should format your model object as string (using
String.format?) properly here
}
Regards,
Sebastien.
On Thu, May 31, 2012 at 2:50 PM, Josh Kamau joshnet2...@gmail.com wrote:
Shouldnt the filtering
at DateConverter for help)
}
return super.getConverter(type);
}
Regards,
Sebastien.
On Fri, Jun 1, 2012 at 10:41 AM, Sebastien seb...@gmail.com wrote:
Hi,
I would have done something like that:
public class BigDecimalFilteredPropertyColumn extends
Hi,
Well, you do not tell a much about the issue...
So, several possible answers are:
- You cannot add the listview in the target as it is a repeater, you should
add its (or one of its) parent.
- If you change the list, is your list a model ? (userTypeDomainList)
Regards,
Sebastien.
On Sat
to add/remove
object), you can set ListView#setReuseItems to true so the re-rendering
will be more efficient.
Also, * If you nest a ListView in a Form, ALLWAYS set this property to
true, as otherwise validation will not work properly.* (setReuseItems
javadoc)
Hope this helps,
Sebastien.
On Sat, Jun
Hi,
It's to late to have
searchResultPanel.setOutputMarkupId(true);
in onSubmit()
You need to set this before the first rendering, because ajax need it in
order to know how to re-redner the panel.
Regards,
Sebastien.
On Sat, Jun 9, 2012 at 9:56 PM, kshitiz k.agarw...@gmail.com wrote:
Hi,
I
re-redner re-render
On Sat, Jun 9, 2012 at 10:01 PM, Sebastien seb...@gmail.com wrote:
Hi,
It's to late to have
searchResultPanel.setOutputMarkupId(true);
in onSubmit()
You need to set this before the first rendering, because ajax need it in
order to know how to re-redner the panel
());
error = true;
}
*target.add(searchFeedbackPanel);
}
Regards,
Sebastien.
On Sun, Jun 10, 2012 at 8:48 AM, kshitiz k.agarw...@gmail.com wrote:
Did u mean this:
final SearchResultPanel searchResultPanel = new
SearchResultPanel(searchResultPanel
but result panel is not getting refreshed. It is not even entering in
that panel as I have some sysouts in that panel to check...
Try to put one sysout in searchResultPanel#onBeforeRender, to check whether
the panel is going to be refreshed.
Additionally, look at the ajax debug window to see if
(searchDomain);
Also not needed, you already sets the model object at the form's creation.
That's about all I see. Hope this helps.
Sebastien.
On Mon, Jun 11, 2012 at 8:29 PM, kshitiz k.agarw...@gmail.com wrote:
Please help me I am really not able to understand why it is
happening
,
Duration.ONE_SECOND));
}
Best regards,
Sebastien.
On Tue, Jul 10, 2012 at 1:17 AM, Douglas Ferguson the...@gmail.com wrote:
How do you throttle ajax calls in 1.6?
Douglas
-
To unsubscribe, e-mail: users-unsubscr
Hi Sam,
I think you can use this:
UrlUtils.rewriteToContextRelative(ui/images/datepicker.png,
RequestCycle.get());
It also works in Wicket 6.
Regards,
Sebastien.
On Tue, Jul 10, 2012 at 7:22 PM, Sam Zilverberg samzilverb...@gmail.comwrote:
Hi,
First let me say that I already searched
+1 too
About the found raising, maybe could it be a book project in My Major
Company or Kickstarter for instance...
Regards,
Sebastien.
On Fri, Jul 27, 2012 at 9:27 AM, Josh Kamau joshnet2...@gmail.com wrote:
What if the developers donate (or do a fund raising... ) to fund the
writing
afterward, using ajax, you will weed to set
setOutputMarkupId(true), or even setOutputMarkupPlaceholderTag(true) if the
components starts un-rendered
Hope this helps,
Sebastien.
On Thu, Aug 9, 2012 at 10:53 PM, wicket user samd...@live.com wrote:
I was reading about setEnable(false
=fName
/div
/div
div wicket:id=test1
div wicket:id=message
/div
/div
Hope this helps,
Sebastien.
On Fri, Aug 10, 2012 at 12:49 AM, wicket user samd...@live.com wrote:
Hi,
I tried this .
public class MyContainer extends WebMarkupContainer{
public MyContainer(String id, MyVO
-jquery-ui-plugins, feel free to make a pull request ! :)
Thanks best regards,
Sebastien.
On Mon, Sep 3, 2012 at 10:28 AM, Decebal Suiu decebal.s...@asf.ro wrote:
Hi
In my opinion the main advantage of the jqwicket over
wiquery/wicket-jquery-ui is the impressive list of jquery plugins (ui
...
Best regards,
Sebastien.
On Sun, Sep 16, 2012 at 10:25 AM, seba.wag...@gmail.com
seba.wag...@gmail.com wrote:
Hi,
we build a single page application and want to extend that with some
jQuery plugins.
The issue is that $(document).ready( function() is not called (or
only the first time
Hi,
Why not use BUBBLE instead of BREADTH so the order of traversal are
component page ?
ie: this.send(/* your panel */ this, Broadcast.BUBBLE, .)
Sebastien.
On Wed, Sep 19, 2012 at 5:28 PM, lucast lucastol...@hotmail.com wrote:
Dear Forum,
I have the following tree structure: WebPage
Hi,
Did you also upgrade wicket-jquery-ui to 6.0.0 ?
Regards,
Sebastien.
On Thu, Sep 20, 2012 at 4:18 PM, nemanjko nemanja.kos...@gmail.com wrote:
Thanks for the reply Martin.
I don't get compilation error but runtime error when I try to start my
project with Wicket 6.
Here is the stack
Hi,
You may also use #toLong(defaultValue) which does not throws exception and
return a default value in case of conversion error (or value not supplied).
Regards,
Sebastien.
On Thu, Sep 20, 2012 at 9:22 PM, Francois Meillet
francois.meil...@gmail.com wrote:
I don't see where you set
Hi James, you're welcome! Glad to read that you like it.
If you have any questions, do not hesitate to use the forum (will may find
the address on the homepage).
Thanks best regards,
Sebastien.
On Fri, Sep 21, 2012 at 9:19 AM, James Eliyezar ja...@mcruncher.com wrote:
Hi Sebastien,
Checked
Hi Sebastien,
I am wondering how you imagine your range datepicker... Do you figure a
component embedding 2 datepickers like in the jQuery UI demo site, where
the user selects alternativey the start date and the end date:
http://jqueryui.com/demos/datepicker/#date-range
Or a component displaying
Hi again,
Well... I was looking for a jQuery plugin for the 3rd part of my HowTo's,
about creating a plugin using wicket-jquery-ui.
Maybe will I play with that one in the coming days... (just note that it
will be over Wicket 6)
Regards,
Sebastien.
On Fri, Sep 21, 2012 at 3:53 PM, Sébastien
), prefer: new Label(when, new
PropertyModelString(blogPost, text))
Hope this helps,
Sebastien.
On Sat, Sep 22, 2012 at 4:25 PM, Stephen Walsh
step...@connectwithawalsh.com wrote:
On a related note to this original question.
Can someone explain the difference between the two lines below
Hi Sebastien.
wicket-jquery-ui has the goal to integrate jQuery UI widgets as Wicket
components; but it's also designed to integrate (easily, I guess) any
jQuery plugins (that's what I tend to evince in the tutorial series...).
So, I played around with the fox-run-software (range-)date-picker
Hi Oscar,
If I understand, the problem is that the div of the parent page is
rendered, right?
If so, you can decide to not render the parent component's tag by using
myPanel.getRenderBodyOnly(true);
Hope this helps,
Sebastien.
On Sun, Sep 23, 2012 at 4:17 PM, Oscar Besga Arcauz obe
oops: setRenderBodyOnly(true);
On Sun, Sep 23, 2012 at 4:53 PM, Sebastien seb...@gmail.com wrote:
Hi Oscar,
If I understand, the problem is that the div of the parent page is
rendered, right?
If so, you can decide to not render the parent component's tag by using
myPanel.getRenderBodyOnly
James, thanks for your comment.
Yes, the demo site is a functional wicket app. You can get the source at
the github project.
Sebastien, you are welcome!
Thanks to let me know what you finally did...
Best regards,
Sebastien.
On Mon, Sep 24, 2012 at 3:06 AM, James Eliyezar ja...@mcruncher.com
https://github.com/decebals/wicket-dashboard
(small typo in your previous mail :)
Nice job indeed, I will probably use it! :)
Best regards,
Sebastien.
On Tue, Sep 25, 2012 at 2:16 PM, Decebal Suiu decebal.s...@asf.ro wrote:
Hi
I implemented a simple dashboard for wicket that can be found
enough,
Sebastien.
On Wed, Sep 26, 2012 at 8:50 AM, Martin Grigorov mgrigo...@apache.orgwrote:
It seems you use Wicket 1.5.x with wicket-jquery-ui 6.x which depends
on Wicket 6.0.0
On Wed, Sep 26, 2012 at 3:48 AM, Sebastien Gautrin
sebastien.gaut...@gmail.com wrote:
Hi,
Me again. I
Hi Sebastien,
Well, I am a little bit confused because it is technically almost
impossible to deploy a wrong version.
I checked the 1.2.3-SNAPSHOT source on the Nexus repository and it seems to
be correct.
What I know is that I deployed the 1.2.3-SNAPSHOT just after the
6.0.1-SNAPSHOT. I
Excellent! I deployed it just 5 min ago! :)
So, it is good to know we should make a mvn clean before the deploy in case
of git branch switching...
Enjoy then!
Best regards,
Sebastien.
On Wed, Sep 26, 2012 at 9:23 PM, Sebastien Gautrin
sebastien.gaut...@gmail.com wrote:
Just tested
Yes, I think the AbstractDefaultAjaxBehavior could look to something like:
public void renderHead(Component component, IHeaderResponse response)
{
super.renderHead(component, response);
response.renderJavaScript(function boup(id) { +
this.getCallbackScript() + }, my-script-id);
Hi,
Don't think you have to propagate #setRequired() to child components
because the whole formcomponent is required. But I think you could overrive
#checkRequired() - which is not final - to fit best your use case (which is
called underneath by #validate())
Hope this helps,
Sebastien.
On Mon
to provide Wicket jQuery UI
components having (I hope) the same philosophy/logic as Wicket's built-in
ones, so the user deals with these components the same manner he usually
deals with the Wicket ones. This is the most important point IMO. In
addition, it provides - as Sebastien said - pure Behavior
to
IRoleCheckingStrategy, then we bound a custom IAuthorizationStrategy to the
application, in charge to check whether the item being displayed (in an
edit page for instance) has a group that also belongs to the user.
Sebastien.
On Thu, Oct 18, 2012 at 4:09 PM, Nick Pratt nbpr...@gmail.com wrote:
[X] I use my own
Hi Sven,
Done: https://issues.apache.org/jira/browse/WICKET-4826
Thanks,
Sebastien.
On Sat, Oct 20, 2012 at 9:53 AM, Sven Meier s...@meiers.net wrote:
That was probably overlooked, please create an issue in Jira.
Thanks
Sven
On 10/20/2012 12:36 AM, Sebastien wrote:
Dear all,
Just
+1, perfectly explained IMHO. Migrating from 1.4 to 6 directly is much more
complicated than performing the migration in 2 steps and much more error
prone.
On Sat, Oct 20, 2012 at 2:55 PM, Chris Colman
chr...@stepaheadsoftware.comwrote:
I would say no only because going from 1.5 - 6 was super
));
}
}
}
Best regards,
Sebastien.
On Sat, Oct 20, 2012 at 11:05 PM, Sven Meier s...@meiers.net wrote:
I was just going to ask you why you don't overwrite #getCSSClass().
What harm does it if the CSS class is on the li too?
Sven
On 10/20/2012 11:01 PM, Alec Swan wrote:
Note
or
submit the pull request on github.
If you do not agree, please tell me what I can do.
Thanks best regards,
Sebastien.
Done, https://issues.apache.org/jira/browse/WICKET-4831
Please let me know if your encounter any issue (wrong base code for
instance) or if you have any questions...
Thanks,
Sebastien.
On Mon, Oct 22, 2012 at 8:06 PM, Sven Meier s...@meiers.net wrote:
Please open a Jira issue and provide
...
But at the end, will the user better understand getListCSS or
getListItemCSS? Also, is getLabelCSS the best? What about getMessageCSS?
That's all open questions... I wish you a good night with that! ;)
Sebastien
* http://en.wikipedia.org/wiki/Ouroboros
** I am pretty sure this term has previously been
projects.
I understand perfectly. Thus, there is a workarround I provided ealier in
this thread; but - IMHO, again - I think it could be considered as an issue
as it prevent a (logical?) customization...
Sebastien.
On Wed, Oct 24, 2012 at 4:48 PM, Paul Bors p...@bors.ws wrote:
Yes, but how would
variables so pages are not considered as distinct (MyPage?1 and
MyPage?2 should sums stats for only one page: MyPage, which is not the case
yet)
Thanks in advance!
Sebastien.
On Thu, Oct 25, 2012 at 4:17 PM, Martin Grigorov mgrigo...@apache.orgwrote:
On Thu, Oct 25, 2012 at 4:57 PM, Paolo
:
http://stackoverflow.com/questions/9103794/canonical-url-in-analytics
I will give this a try and will let you know!
Thanks again best regards,
Sebastien.
On Thu, Oct 25, 2012 at 5:17 PM, Martin Grigorov mgrigo...@apache.orgwrote:
Hi Sebastien,
Is
http://googlewebmastercentral.blogspot.com
[] {
CallbackParameter.converted(...),
CallbackParameter.explicit(...),
CallbackParameter.context(...),
CallbackParameter.resolved(...)
};
}
See javadoc for difference between converted, explicit, etc
Best regards,
Sebastien
On Fri, Oct 26, 2012 at 7:52 PM, Phillips, David david.phill
(context, explicit, resolved context)
and their corresponding javadoc in
org.apache.wicket.ajax.attributes.CallbackParameter
Sorry for the confusion,
Sebastien.
On Fri, Oct 26, 2012 at 8:18 PM, Phillips, David david.phill...@usaa.comwrote:
I don't see that API in AbstractAjaxBehavior
to Martin (I would say: again!) to have suggested the right pointers.
Sebastien.
On Fri, Oct 26, 2012 at 1:17 AM, Sebastien seb...@gmail.com wrote:
Hi Martin,
Thanks for your answer! Yes, I think it - indirectly - answers the need!
In short: Google Analytics does not take into account
,
Sebastien
(*) https://issues.apache.org/jira/browse/WICKET-4831
(**) Sure, dev-team opinion is also kindly asked! :)
(there is a new
#newMessageItem() method), the span element is not needed anymore and
therefore #newMessageDisplayComponent() neither. So, about the API break,
we are in situation :)
Thanks best regards,
Sebastien.
On Mon, Oct 29, 2012 at 6:18 PM, Joachim Schrod jsch...@acm.org wrote:
Hi,
This would
: in the report, all visited pages was starting with /http://;
(with the / at the beginning), instead of /context/my/path/to/page as
expected.
Thanks again best regards,
Sebastien.
On Mon, Oct 29, 2012 at 9:02 AM, Martin Grigorov mgrigo...@apache.orgwrote:
Hi Sebastien,
Thanks for sharing
to *override*
FeedbackPanel to achieve this goal...
Thanks in advance best regards,
Sebastien
(*) hazardous translation from French...
On Wed, Oct 31, 2012 at 11:37 PM, Alec Swan alecs...@gmail.com wrote:
So, the patch can be applied to 1.5.8 and will replace
label.add(levelModifier
relevant...
Best regards,
Sebastien.
On Thu, Nov 1, 2012 at 4:17 PM, Sven Meier s...@meiers.net wrote:
If you want to group messages you can easily use multiple feedback panels,
each filtering by severity.
Sven
Sebastien seb...@gmail.com schrieb:
Hi,
@Alec, unfortunately I think your
Hi,
Yes, by using Component#getBehaviors
Sebastien.
On Thu, Nov 1, 2012 at 6:13 PM, eugenebalt eugeneb...@yahoo.com wrote:
Thanks for the answers so far. My latest question is, I need to check if a
cfomponent has any Ajax behaviors added to it.
For some reason, a Component does not have
) to post the form to the server. Be sure your button is
of type button.
Regards,
Sebastien.
On Thu, Nov 1, 2012 at 7:30 PM, eugenebalt eugeneb...@yahoo.com wrote:
I appreciate the help so far.
A somewhat unusual question: We need a way to identify all Buttons which
don't go to the server
method: getMessageCssClass(message.getLevel()) or something
equivalent as we spoke before, so that's fine for me. Well done!
Thanks again best regards,
Sebastien.
On Thu, Nov 1, 2012 at 11:57 PM, Alec Swan alecs...@gmail.com wrote:
@Sebastien The scenario you described it exactly the scenario I
I think it is OK to upgrade to 1.8.2 for Wicket 6.3.0
+1
Thanks,
Sebastien.
On Fri, Nov 2, 2012 at 9:18 AM, Martin Grigorov mgrigo...@apache.orgwrote:
Hi Brian,
The new Wicket Ajax .js files were implemented and tested with jQuery
1.7.x and that's why we released them with 1.7.2.
The only
to be done for wicket7 (with the Martin's suggestion for instance). At
least I do not see yet any potential issue / unexpected behavior that can
happens, and we keep the advantage it provides...
Best regards,
Sebastien.
On Fri, Nov 2, 2012 at 4:21 PM, Alec Swan alecs...@gmail.com wrote:
Sebastien
Great! Thanks Martin!
On Fri, Nov 2, 2012 at 5:01 PM, Martin Grigorov mgrigo...@apache.orgwrote:
I'll take care.
On Fri, Nov 2, 2012 at 5:59 PM, Sebastien seb...@gmail.com wrote:
Hi Alec,
If Sven or Martin agree with this solution for 1.5.9 6.3.0, I can
attach
the patch(es
added a comment in the ticket about this,
I don't know if you had it)...
Thanks again best regards,
Sebastien.
On Fri, Nov 2, 2012 at 6:08 PM, Martin Grigorov mgrigo...@apache.orgwrote:
Done!
Please confirm that this is enough for now.
On Fri, Nov 2, 2012 at 7:01 PM, Sebastien seb
Hi,
Be sure to use a LoadableDetachableModel
Also, maybe you set ListView#*setReuseItems* to true (because the ListView
is in a form)? You can set it to false if you have no validation and then
you will get fresh data (see ListView javadoc)
Hope this helps,
Sebastien.
On Thu, Dec 6, 2012 at 11
ListView with a LDM, and it should be good.
If it's still not, maybe the persistence of the cookie update is a little
bit slow and IO-async... But I (means myself) could not help in a such
case.
Best regards,
Sebastien.
On Thu, Dec 6, 2012 at 11:41 PM, Corbin, James jcor...@iqnavigator.comwrote
...
Best regards,
Sebastien.
On Fri, Dec 7, 2012 at 12:28 AM, Corbin, James jcor...@iqnavigator.comwrote:
Hi Sebastian,
Thanks for your feedback. I wasn't recreating (semantics?) the Listview,
I was just refreshing it via ajax so it updates with the model changes.
What do you mean by reattach
Hi Cedric,
That's definitely an excellent idea to promote Wicket in France! :)
If you need help, I am there also!
Best regards,
Sebastien.
On Tue, Jan 8, 2013 at 8:55 PM, Pierre Goupil goupilpie...@gmail.comwrote:
Good evening,
Maybe three heads are better than two? If you need help, I'm
refreshes (or using a
AjaxSelfUpdatingTimerBehavior)
Hope this helps (a bit)
Sebastien.
On Mon, Jan 14, 2013 at 12:20 AM, Noven noven_...@yahoo.com wrote:
My idea is, first the member's apps have to able to call an admin's wicket
page, than post it using atmosphere to update the component from
Oops, sent to dev@ instead of users@, sorry.
On Thu, Jan 17, 2013 at 11:50 AM, Sebastien seb...@gmail.com wrote:
Dear all,
There is an issue when using AbstractNumberConverter when #getNumberFormat
returns NumberFormat#getCurrencyInstance()
I think the problem is due
(which is
equivalent to the code above)
locale = Locale.FRANCE;
final NumberFormat format = this.getNumberFormat(locale);
return this.parse(format, value, locale);
Thanks best regards,
Sebastien.
On Thu, Jan 17, 2013 at 5:22 PM, Sven Meier s...@meiers.net wrote:
It seems currency formatting
(with space before currency symbol)
Up to you to fix this or not, given the fact there will probably still not
works due to the thousand separator java bug...
Thanks again,
Sebastien.
On Thu, Jan 17, 2013 at 5:42 PM, Sven Meier s...@meiers.net wrote:
What does your test print for n?
Sven
Hi Sven,
The JIRA has been created:
https://issues.apache.org/jira/browse/WICKET-4988
Thanks best regards,
Sebastien.
On Thu, Jan 17, 2013 at 5:52 PM, Sebastien seb...@gmail.com wrote:
null, lol ! :)
Sorry, I read your link too quickly, I did not saw it was talking
specifically about
by looking quickly at your sample, I saw you are setting
values with a setData() method. Wouldn't be possible to have/use a
DataProvider?
Thanks best regards,
Sebastien.
On Sat, Jan 19, 2013 at 11:12 AM, Francois Meillet
francois.meil...@gmail.com wrote:
Hi Tom,
Great work !
Many Thanks
= this.getFormSubmitter(); //!\\
return submitter != null submitter.getForm() == this;
}
But I do not have any equivalent for #getFormSubmitter()...
Any ideas?
Thanks in advance,
Sebastien.
(# + this.setOutputMarkupId(true).getMarkupId(),
options));
Which can be shortened as:
add(new ResizableBehavior(JQueryWidget.getSelector(this), options));
Hope this helps,
Sebastien.
On Sun, Jan 27, 2013 at 5:19 PM, Pieter Claassen pie...@musmato.com wrote:
I have multiple panels on a page, each once constructed
with the current logic behind wicket-jquery-ui, I will
do a ResizePanel which will support such event.
That's not a big deal, I will look at this tonight...
Are you using Wicket 1.5.x or 6.x?
Thanks best regards,
Sebastien.
On Mon, Jan 28, 2013 at 7:45 AM, Pieter Claassen pie...@musmato.com wrote
Hi Martin,
Thanks for your answer!
I was thinking I did no have a submit button to provide (and that the form
was submitted using a div#onclick (wicket 1.5))
But... As I have a submit button, I can supply it in the
wicketSubmitFormById method...
Thanks again!
Sebastien.
On Mon, Jan 28, 2013
version
or
settings.setJQueryUIReference(null) //removes jquery ui library
this.setJavaScriptLibrarySettings(settings);
Hope this helps,
Sebastien.
On Mon, Jan 28, 2013 at 10:31 AM, Pieter Claassen pie...@musmato.comwrote:
Hi Sebastian,
Thanks. Wicket 6.5 is what I am using.
As to your question
in that case...
Best regards,
Sebastien.
On Mon, Jan 28, 2013 at 12:58 PM, Martin Grigorov mgrigo...@apache.orgwrote:
Hi Pieter,
Both Wicket and the libraries which integrate with jQuery UI provide ways
to setup custom JavaScriptResourceReference (JSRR) that loads jquery.js.
The easiest way
back to me if
you have any questions...
Best regards,
Sebastien.
On Mon, Jan 28, 2013 at 1:19 PM, Sebastien seb...@gmail.com wrote:
Hi Pieter, hi Martin,
As you are using wicket 6 and wicket-jquery-ui 6, there is no version
conflict because wicket-jquery-ui relies on wicket's embedded jquery
to make both the Component and the Behavior
to handle callback, but I would like to be sure it fit Wicket's philosophy.
Ernesto, thanks for your input. I would like other inputs on that subject
before changing the way the API is designed.
Best regards,
Sebastien.
On Tue, Jan 29, 2013 at 8:09 AM
your webapp if you need/wish... Feel free to
contact me in PM about this.
Best regards,
Sebastien.
On Tue, Jan 29, 2013 at 10:48 AM, Ernesto Reinaldo Barreiro
reier...@gmail.com wrote:
Hi,
On Tue, Jan 29, 2013 at 10:26 AM, Sebastien seb...@gmail.com wrote:
Hi Ernesto, Hi Martin,
IMHO
tell me if the new one is
good/relevant/wicket-way, I will really appreciate!
Best regards to you all,
Sebastien.
On Wed, Jan 30, 2013 at 4:08 PM, Ernesto Reinaldo Barreiro
reier...@gmail.com wrote:
Good that you where able to solve your problem!
On Wed, Jan 30, 2013 at 3:53 PM, Pieter Claassen
Hi Martin,
Thank you so much!
Then, I guess I am ready... All is located here (and sorry for the long
preamble):
https://github.com/sebfz1/wicket-jquery-ui/issues/17
Thanks best regards,
Sebastien.
On Thu, Jan 31, 2013 at 12:28 AM, Martin Grigorov mgrigo...@apache.orgwrote:
Sebastien
; /* the size of the image (optional) */
padding-left: 14px; /* the space left for the image display; so the
title does not overlap */
}
where 'myeventclass' is the css class name you set to the CalendarEvent
Hope this helps,
Sebastien.
On Tue, Feb 12, 2013 at 7:37 PM, grazia grazia.russolass
,
Sebastien.
On Wed, Feb 13, 2013 at 4:46 PM, Sebastian Gaul sebast...@mgvmedia.comwrote:
I have a TextField which overrides it's getConverter method to add a
Joda time converter instead:
new TextFieldP(id) {
@Override
public P IConverterP getConverter(ClassP type) {
return
Hi Martin, hi Ernesto,
Yes, definitely... I never tried (and even thought about) this but I guess
this is an important feature to have!
Thank you very much, Ernesto! I look at the code in detail asap :)
Best regards,
Sebastien.
On Fri, Feb 22, 2013 at 1:05 PM, Ernesto Reinaldo Barreiro
reier
that...
http://code.google.com/p/fullcalendar/issues/list (but there is many...)
Adam Shaw, the owner of fullcalendar seems to be highly back on the project
after a long freeze period. He will perform a new release will a lot of
fixes soon...
Thanks best regards,
Sebastien.
On Thu, Mar 7, 2013 at 8:59 PM
1 - 100 of 454 matches
Mail list logo