Hi Ernesto,
I am very interested in contributing and completed my first plugin
this evening. Let me know how I can push this back into the distro or
if I should host in a separate space etc.
Tx!
John-
On Wed, Jun 30, 2010 at 2:12 PM, Ernesto Reinaldo Barreiro
wrote:
> John,
>
> I just uploaded
Hi!
> I'm using dynamic objects. In the first way based on the some event (e.g.
> tree node selection) I want to setup this MagicObject in home page, and then
> to show panel. Between these two there should be a call of getMagicObject()
> from the panel.
> How can I set this happen in appropriate
Hi
After I added setOutputMarkupPlaceHolderTag(true) to the details panel, the
Ajax function works and I can see the details panel. (Which I could not
earlier)
However, the problem still remains as in the model has not been updated and
still refers to the stale/old one.
@avrahmr
I used the setMo
oh,I've figured it out...I should cast it with generic class. thank you :)
try {
setResponsePage((Class)Class.forName(pageClass));
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
rolandpeng wrote:
>
> I've also tried casting like this.
> setResponsePage((Page)Cla
I've also tried casting like this.
setResponsePage((Page)Class.forName(pageClass));
but compiles error as well,the message below,
The method setResponsePage(Class) in the type Component is not applicable
for the arguments (Page)
James Carman wrote:
>
> Cast it?
>
> On Aug 3, 2010 10:19 PM, "r
Cast it?
On Aug 3, 2010 10:19 PM, "rolandpeng" wrote:
>
> Hi,I want to redirect to a dynamic webpage,but I can only get the
destination
> as a fullpath classname string .The sample code like below,
>
> String pageClass=task.getFormResourceName();
>
> WebPage page=null;
> if(pageClass.equals("com.
Hi,
I have attached the code as a text file. I have removed lines that don't
really make any contribution to the problem at hand after carefully
examining it.
Appreciate your time if you could see any issues please let me know.
Basically the code has the Form objects I used, and the different pa
Hi,I want to redirect to a dynamic webpage,but I can only get the destination
as a fullpath classname string .The sample code like below,
String pageClass=task.getFormResourceName();
WebPage page=null;
if(pageClass.equals("com.sandbox.Page1")){
page=new Page1();
}else if(pageClass.equals
visit all the children, check if they are a FormComponent and call
convertinput() followed by getconvertedinput()
-igor
On Tue, Aug 3, 2010 at 2:42 PM, Joseph Pachod
wrote:
> hi
> IF
> we're heavily reusing the edit components we do, and as such we wanted them
> to behave as "good form citizen"
catch the exception and dump the serialization hierarchy of the the
page objects into stdout accounting for circular references?
-igor
On Tue, Aug 3, 2010 at 7:58 AM, Douglas Ferguson
wrote:
> I wrote about this awhile ago and got some great responses. I poured over
> the code and couldn't find
Hi Martin,
I'm using dynamic objects. In the first way based on the some event (e.g.
tree node selection) I want to setup this MagicObject in home page, and then
to show panel. Between these two there should be a call of getMagicObject()
from the panel.
How can I set this happen in appropriate m
The problem solution is not increasing the max stack size in my opinion. The
matter with this issue i think inside it is recursion. Could you please
download the source and debug it. It could be bug or sth cause to infinite
recursive calls.
On Tue, Aug 3, 2010 at 6:05 PM, Martin Makundi <
martin.m
hi
IF
we're heavily reusing the edit components we do, and as such we wanted them to
behave as "good form citizen". On our way, we spotted the FormComponentPanel,
which seems to achieve our goal.
Yet, a question has popped up: how to deal with List edit ? Indeed, none of the
class extending Abs
There are many ways. This is one way:
modalWindow.setContent(new MyPanel(modalWindow.getContentId()) {
@Override
public MagicObject getMagicObject() {
return magicObject;
}
});
Also you can just pass your java object as parameter to myPanel or if
it is dynamic you can wrap it int
Hi,
I used the approach described in
http://stuq.nl/weblog/2008-06-05/wicket-how-to-write-a-reusable-modal-window-popup
to create a ModalWindow panel with the input form. Everything works fine,
but I need to send a Java object instance to the panel before calling
selectModalWindow.show(target), s
Hi all,
I have a model that look up an html file for being shown.
But I have an issue regarding how to get the file without matters if the
site is in deployment or development mode.
I thought the following,
URL input=classComponent.getResource("help.html");
My html files are in "/WEB-IN
On Tue, Aug 3, 2010 at 1:24 PM, wrote:
> I have to laugh because I also agree its kind of crazy...
>
> Yes the original value must be hashed by the client. The reasoning being
> that SSL could be broken and expose the data. I don't necessarily agree
> but thats how the original system was writt
They also understand that the one-way hashes aren't unique, right? Two
values may hash (or, more accurately, message digest) to the same value, but
that doesn't mean they're equal.
On Tue, Aug 3, 2010 at 2:24 PM, wrote:
> I have to laugh because I also agree its kind of crazy...
>
> Yes the ori
Can you create the text field and a hidden text field and have some
javascript that validates as the user types or an update link next to
the field? Once the entire SSN is entered or the link is pressed then
hash the ssn and store in the hidden text field. Once hashed, overwrite
the value in the
I have to laugh because I also agree its kind of crazy...
Yes the original value must be hashed by the client. The reasoning being
that SSL could be broken and expose the data. I don't necessarily agree
but thats how the original system was written.
James Carman
Sent by: jcar...@carmanco
And, you don't want to convert it before you store it in the db? It must be
converted at the browser level? Is there any more information you can give
us that would make this requirement not sound so crazy? :)
On Tue, Aug 3, 2010 at 2:15 PM, wrote:
> Correct
>
>
>
>
> James Carman
> Sent by:
Correct
James Carman
Sent by: jcar...@carmanconsulting.com
08/03/2010 02:12 PM
Please respond to
users@wicket.apache.org
To
users@wicket.apache.org
cc
Subject
Re: Encrypt Form Fields Using JS
So, you never need to get the original values out of the database?
On Tue, Aug 3, 2010 at 2
So, you never need to get the original values out of the database?
On Tue, Aug 3, 2010 at 2:10 PM, wrote:
> An already existing system is being rewritten and the db currently stores
> hashed values. I don't disagree there are better ways to reach the end
> goal, but this is the spec I am workin
An already existing system is being rewritten and the db currently stores
hashed values. I don't disagree there are better ways to reach the end
goal, but this is the spec I am working with.
James Carman
Sent by: jcar...@carmanconsulting.com
08/03/2010 01:45 PM
Please respond to
users@wick
And, what does that buy you? Why do you want to submit one-way hashed
values?
On Tue, Aug 3, 2010 at 1:37 PM, wrote:
> Ok, the value will be hashed, one-way...anyone have any ideas?
>
>
>
>
> James Carman
> Sent by: jcar...@carmanconsulting.com
> 08/02/2010 04:42 PM
> Please respond to
> users
Ok, the value will be hashed, one-way...anyone have any ideas?
James Carman
Sent by: jcar...@carmanconsulting.com
08/02/2010 04:42 PM
Please respond to
users@wicket.apache.org
To
users@wicket.apache.org
cc
Subject
Re: Encrypt Form Fields Using JS
Then it's not "encryption". Encrypte
It seems good but i would really like to be able to test Palette without a
new framework
Is it really impossible to test Palette with wicket-tester?
Regards
Loic
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/WicketTester-and-Palette-component-tp2306743p231204
Hi!
I had the same and for me the solution was to increase -vmargs
-Xss1234k size bigger.
**
Martin
2010/8/3 Douglas Ferguson :
> I wrote about this awhile ago and got some great responses. I poured over
> the code and couldn't find anything that would meet the criteria that you
> guys suggeste
I wrote about this awhile ago and got some great responses. I poured over
the code and couldn't find anything that would meet the criteria that you
guys suggested.
Does anybody have any suggestions as to how I could track this down?
Douglas.
2010-08-03 09:45:13,257 INFO [TP-Processor13] wicke
Avraham and Matt,
Thanks for the points. I will have a look at it tomorrow and post the code
if I still haven't resolved. I don't have the code on me at the moment.
Reg
Niv
On Tue, Aug 3, 2010 at 9:41 PM, mwilber wrote:
>
> Again without seeing more of the code some of this is guessing.
>
> I
If you are starting your Job from a Web Request, initialize your Bayeaux
service (as Rodolfo mentioned) and pass that to your processing Job (Your
Job doesn't have to be WebApi aware) as Rodolfo said, Bauyeaux is meant to
be used a messaging API.
On Tue, Aug 3, 2010 at 11:00 AM, fachhoch [via A
If I do that I am using web api in service which is not good , so any other
way ?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/using-cometd-with-threads-tp2310323p2311905.html
Sent from the Wicket - User mailing list archive at Nabble.com.
Again without seeing more of the code some of this is guessing.
If the component that you are trying to "update" is not part of the original
HTML it will not be updated in the ajax response. I see that you are marking
the component as visible and enabled. If it isn't visible during the initial
re
Hey
Thank you for your reply .. that is what I was looking for !
Kind regards
Armando
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/CSS-not-depending-on-locale-but-some-other-logic-tp2311409p2311753.html
Sent from the Wicket - User mailing list archive at Nabbl
Have you looked at the "style" property on Session?
On Tue, Aug 3, 2010 at 3:21 AM, armandoxxx wrote:
>
> Hey wicket ppl
>
> I got a question about styling my pages.
>
> In a web app project I'm working on, we have many different users coming
> from various companies. Each company has different
Without seeing the code I can't be of much help, but I think the line:
detailsPanel.getStudyForm().setModelObject(studyModel);
Should be:
detailsPanel.getStudyForm().setModel(studyModel);
You could also keep a reference to the studyModel when you construct the
Form and just c
Thanks for the response. It still does not work.
I added the ajax button on the SearchForm that has the New,Cancel and I
added this Refresh button just to test.
I added setOutputMarkupId(true) to the detailsPanle and then in SearchForm
that extends Form added the AjaxButton
protected void onSub
Create AjaxButton for refreshing your data:
new AjaxButton("refresh")
{
onSubmit(AjaxRequestTarget target)
{
onNew();
targer.addComponent(detailsPanel);
}
}
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Model-Is-Not-being-Refreshed-tp2311457p23
Just wanted to add that this issue is not exactly the same as i posted
earlier but related in a way. But it is a separate issue. - I am making sure
it is not re-post. Thank you
http://apache-wicket.1842946.n4.nabble.com/How-to-Update-contents-of-a-child-component-td2307756.html#a2307756
--
Vie
Hi
Can someone point me the right direction.
I have a search panel that does a look up and renders a resultsPanel. I
don't use detachable model here and used PageableListView
On the resultsPanel,onClick, I use the hibernate entity and pass it as a
model to the DetailsPanel. The detailsPanel rende
Yes it manages inventory, order processing, payment gateways, users
etc... So all of that is done with a nice admin interface already to
go. I'm just looking at building some front end component that use it's
api for actual store front. Their own default storefront is JSP based
and they have
> panel A / panel B / panel C
>
> to:
>
> panel A / panel B / panel D
One option could be to setActive(panel B) then activate(panel D factory); to
get the panel B reference just loop through the model or keep a reference to it
somewhere.
- Tor Iver
---
Hey wicket ppl
I got a question about styling my pages.
In a web app project I'm working on, we have many different users coming
from various companies. Each company has different CSS styles, in practice
that means that each company uses it's own skin for same web page.
So what I would like t
43 matches
Mail list logo