Re: AjaxEditableLabel not saving

2007-12-22 Thread Advanced Technology®
Yes I do. I am using Wicket 1.3.0rc2 with Wicket Extension 1.3.0rc1. 2007/12/22, TahitianGabriel [EMAIL PROTECTED]: I'm already using the iso-8859-1 in a meta tag in my html file. I have also try in the setHeader function and it's not working. Do you have a correct behavior with accented

Re: AjaxEditableLabel not saving

2007-12-22 Thread Johan Compagner
Why not use the default of wicket utf8. If you really want to use another one then you have to configure wicket's encoding setting. So that wicket does set the right headers and encodes the output right On 12/22/07, TahitianGabriel [EMAIL PROTECTED] wrote: I'm already using the iso-8859-1 in a

Two wicket applications in one spring context

2007-12-22 Thread Per Newgro
Hi * i try to adapt the phonebook example to my needs. What i try to achieve is to develop an admin part and an user part of my application. I would like to connect to my applications by two urls (localhost:8080 and localhost:8080/admin). So i think i have to develop two applications. They

Re: How can i present a busy component

2007-12-22 Thread Sergey Podatelev
On Dec 21, 2007 10:40 PM, Per Newgro [EMAIL PROTECTED] wrote: On one panel there is a button. If this is clicked a long running task is executed. The problem is that the cursor is still a pointer and the browser seems to do nothing. If there's a long time interval between button click and

Re: How can i present a busy component

2007-12-22 Thread Per Newgro
Thanks Sergey, If there's a long time interval between button click and submission to server, you could use javascript. The time between pressing the button and process starts is ok. The server / application is calculating some time. The task is: I build a calendar panel. On the panel there

Re: Two wicket applications in one spring context

2007-12-22 Thread Martijn Dashorst
Why two applications? Martijn On Dec 22, 2007 11:12 AM, Per Newgro [EMAIL PROTECTED] wrote: Hi * i try to adapt the phonebook example to my needs. What i try to achieve is to develop an admin part and an user part of my application. I would like to connect to my applications by two urls

Components questions

2007-12-22 Thread Neo Anderson
I am new to Wicket framework and I got a few questions. Does Wicket provide components such as grid (table)? If yes, does the grid / table support row/ column span? If not, what should I do if I want to achieve such effect in Wicket? Thank you very much.

Re: Components questions

2007-12-22 Thread Neo Anderson
Thanks your reply. I still have one question. If I want to achieve the effect as following html code in Wicket. What should I do? Thank you very much. table !-- beg -- tr td rowspan=4date/td td1/td td2/td td3/td /tr tr td1/td td2/td td3/td /tr tr td1/td td2/td td3/td /tr tr

Re: Components questions

2007-12-22 Thread Neo Anderson
Sorry I forgot to attach another question related to data view (http://www.wicketstuff.org/wicket13/repeater/) whilst replying the message. If a table (grid) is to be created, does the length of the column require to be prepared first? For example, in Tapestry (4.x), the column names have to

Re: How can i present a busy component

2007-12-22 Thread Per Newgro
Hi Christian Alejandro Marquez Grabia this looked promising but it's not working here. Am i missing something? I use wicket 1.3-rc1 and added my link this way add(new AjaxLink(aFogLink) { protected IAjaxCallDecorator getAjaxCallDecorator() { return new IAjaxCallDecorator() { public

Re: Two wicket applications in one spring context

2007-12-22 Thread Peter Ertl
I wouldn't separate that but put admin and user into one application. - same code base (easy sharing) - no two web sessions that need to be linked - easy deployment you my 2ct Am 22.12.2007 um 11:12 schrieb Per Newgro: Hi * i try to adapt the phonebook example to my needs. What i try to

Problems Refreshin a Image from AjaxLink

2007-12-22 Thread Marco Santos
Hello there! I'm with problems refreshing an Image. On my web application i'm trying to refresh or change an Image that is on a Panel. On the panel there is a Image (it is rendered the first time) and a label. Outside the panel i have AjaxLink's (that are images too) that refresh the panel, and

Re: Problems Refreshin a Image from AjaxLink

2007-12-22 Thread Matej Knopp
Image doesn't change because it's being cached by the browser. To ensure that browser doesn't cache the image you need to append a string to url that changes on every refresh. Just like NonCachingImage does. -Matej On Dec 22, 2007 8:53 PM, Marco Santos [EMAIL PROTECTED] wrote: Hello there!

Re: How can i present a busy component

2007-12-22 Thread Christian Alejandro Marquez Grabia
It looks fine for meI never used that code to change the cursormaybe you should try something else to check if it works...I called my function to hide / show a span, and it works for me (remember, I used 1.2.6), instead of changing cursor style. I really don't know what else to say, since

Re: Problems Refreshin a Image from AjaxLink

2007-12-22 Thread Marco Santos
Thanks a lot! I worked! Tell me, do you know a good book about wicket? I have red the 1st chapter o Wicket in Action from manning and it seams nice, but it is not finished yet. Thanks again! --ms Matej Knopp-2 wrote: Image doesn't change because it's being cached by the browser. To

Re: Two wicket applications in one spring context

2007-12-22 Thread Maurice Marrink
As the other members suggested, use one app and have your security handle the logic for deciding what to show. There are currently 2 security frameworks (that i know of) for wicket to choose from. Take a look at this site to see which security framework suits your needs better.