Re: TinyMCE and textarea : validation problem

2011-12-29 Thread ricmancio
I solved it.
I added TinyMceAjaxSubmitModifier class to my AjaxButton:

fc  = new AjaxButton(button,form){

.

};

fc.add(new TinyMceAjaxSubmitModifier());
form.add(fc);

*In conclusion:*

I added *TinyMceBehavior *to my textarea field

and

I added *TinyMceAjaxSubmitModifier *to my AjaxButton field

thanks



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/TinyMCE-and-textarea-validation-problem-tp4240317p4242178.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using JNDI from Jetty/Start.java

2011-12-29 Thread Chantal Ackermann
On Wed, 2011-12-28 at 16:52 +0100, armhold wrote:
 I moved the config file to src/test/jetty/jetty-env.xml because I didn't want
 it deployed with my production war file. It was really the two property
 settings I was missing. You might not even need the properties if you are
 using the jetty-maven-plugin; I did because I'm running Start#main()
 directly from my IDE.
 

Ok, it is probably cleaner to keep it under src/test/. I might have had it 
there in the beginning and it probably did not work.

Now, I'm excluding it when building the war.


 PS: also using Solr.  Small world. :-)

Cheers :)
Chantal


 
 
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Using-JNDI-from-Jetty-Start-java-tp4237903p4240237.html
 Sent from the Users forum mailing list archive at Nabble.com.
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Ernesto Reinaldo Barreiro
Allen,

Isn't it possible to make the panel implement IAjaxIndicatorAware?

Regards,

Ernesto

On Wed, Dec 28, 2011 at 11:41 PM, Allen Gilbert allen.gilb...@doane.eduwrote:

 Hello,

 I have a Panel containing many child components that perform various ajax
 actions.  Whenever an ajax request is initiated from the panel or any of
 its children, I'd like to show an indicator on the panel and block user
 interaction with it.  However, I don't want the indicator to be shown for
 ajax requests initiated by other components on the page.  Is there a way to
 access the context of an ajax request in a javascript pre- or post-ajax
 call handler in order to determine what component is initiating the
 request?  Looking at wicket-ajax.js, there doesn't seem to be.

 Alternatively, is there a way to decorate all ajax request javascript for a
 panel's child components?  I'd like to avoid having to modify every ajax
 behavior of the Panel's child components in order to show the activity
 indicator on the panel.

 -Allen



Re: Palette and onComponentTagBody

2011-12-29 Thread matteus
I'm wondering how I didnt think about that before *slap*

Thank you very much...

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Palette-and-onComponentTagBody-tp4241432p4242524.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Palette and onComponentTagBody

2011-12-29 Thread Ernesto Reinaldo Barreiro
On the same package where you put MyPalette.java create a file
MyPalette.html with swapped columns.

Ernesto

On Thu, Dec 29, 2011 at 12:17 PM, matteus matteu...@hotmail.com wrote:

 And how I'm supposed to provide my own MyPalette.html? I tried here to
 override /onComponentTagBody/ and add the html component to the response,
 but it didnt worked as expected.

 Can you show me how I can do it?

 Thanks...

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Palette-and-onComponentTagBody-tp4241432p4242467.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Re: AJAX on large page

2011-12-29 Thread Ernesto Reinaldo Barreiro
Anatoly,

I would do more or less the following

1-Created a panel with an AbstractAjaxBehavior on it.
2-Use that behavior as context for rendering JSON format and handling row
clicks.
3-Build the list using JSON+JavaScript. Each row could be built out of JSON
data:  when panel is loaded use some JavaScript to query back the behavior
for JSON and build rows using that data. The onClick of the each button
would point to the same AJAX behavior but pass the index of the row as
parameter.

This way you would have a very lightweight component.

Regards,

Ernesto


On Thu, Dec 29, 2011 at 3:48 PM, Anatoly Kupriyanov kan@gmail.comwrote:

 Hi everybody!

 I have a page which displays long list of messages. I use
 LoadableDetachableModel for the list view, because it should display the
 latest messages each time page renders. Each message has a ajax button to
 make some action on the message. Each time I click the button, wicket loads
 the list, looks up for the message (by index? or how?) and invokes my
 onClick method.
 It doesn't look great. What is a better approach to do it?
 I want minimize memory usage (don't keep in session list of all messages)
 and avoid querying the whole list each time from database (moreover, it is
 changing!). The wise solution is to somehow refer a concrete button to a
 message by the message PK and query only the message, but I don't know an
 elegant way to do it, only fighting with the wicket approach.

 --
 WBR, Anatoly.



AJAX on large page

2011-12-29 Thread Anatoly Kupriyanov
Hi everybody!

I have a page which displays long list of messages. I use
LoadableDetachableModel for the list view, because it should display the
latest messages each time page renders. Each message has a ajax button to
make some action on the message. Each time I click the button, wicket loads
the list, looks up for the message (by index? or how?) and invokes my
onClick method.
It doesn't look great. What is a better approach to do it?
I want minimize memory usage (don't keep in session list of all messages)
and avoid querying the whole list each time from database (moreover, it is
changing!). The wise solution is to somehow refer a concrete button to a
message by the message PK and query only the message, but I don't know an
elegant way to do it, only fighting with the wicket approach.

-- 
WBR, Anatoly.


Re: AJAX on large page

2011-12-29 Thread Sven Meier

Switch to a DataTable, IDataProvider has #model() exactly for your usecase.

And if you haven't already, read
  http://wicketinaction.com/2008/09/building-a-smart-entitymodel/

Sven

On 12/29/2011 03:48 PM, Anatoly Kupriyanov wrote:

Hi everybody!

I have a page which displays long list of messages. I use
LoadableDetachableModel for the list view, because it should display the
latest messages each time page renders. Each message has a ajax button to
make some action on the message. Each time I click the button, wicket loads
the list, looks up for the message (by index? or how?) and invokes my
onClick method.
It doesn't look great. What is a better approach to do it?
I want minimize memory usage (don't keep in session list of all messages)
and avoid querying the whole list each time from database (moreover, it is
changing!). The wise solution is to somehow refer a concrete button to a
message by the message PK and query only the message, but I don't know an
elegant way to do it, only fighting with the wicket approach.




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AJAX on large page

2011-12-29 Thread Anatoly Kupriyanov
Thanks for the answer, Ernesto.

A message has quite complex layout, it would be a lot of work to redo it in
json. And I lose all benefits of wicket tester...
Yes, that's that I mean by fighting the wicket, do everything manually, not
using the wicket...
Is it only solution?
It worries me because I have to rewrite quite a few such pages - if a page
has a lot of data, I cannot use wicket's AJAX abilities.

On 29 December 2011 15:06, Ernesto Reinaldo Barreiro reier...@gmail.comwrote:

 Anatoly,

 I would do more or less the following

 1-Created a panel with an AbstractAjaxBehavior on it.
 2-Use that behavior as context for rendering JSON format and handling row
 clicks.
 3-Build the list using JSON+JavaScript. Each row could be built out of JSON
 data:  when panel is loaded use some JavaScript to query back the behavior
 for JSON and build rows using that data. The onClick of the each button
 would point to the same AJAX behavior but pass the index of the row as
 parameter.

 This way you would have a very lightweight component.

 Regards,

 Ernesto


 On Thu, Dec 29, 2011 at 3:48 PM, Anatoly Kupriyanov kan@gmail.com
 wrote:

  Hi everybody!
 
  I have a page which displays long list of messages. I use
  LoadableDetachableModel for the list view, because it should display the
  latest messages each time page renders. Each message has a ajax button to
  make some action on the message. Each time I click the button, wicket
 loads
  the list, looks up for the message (by index? or how?) and invokes my
  onClick method.
  It doesn't look great. What is a better approach to do it?
  I want minimize memory usage (don't keep in session list of all messages)
  and avoid querying the whole list each time from database (moreover, it
 is
  changing!). The wise solution is to somehow refer a concrete button to a
  message by the message PK and query only the message, but I don't know an
  elegant way to do it, only fighting with the wicket approach.
 
  --
  WBR, Anatoly.
 




-- 
WBR, Anatoly.


Re: IE6 Stops Loading Images

2011-12-29 Thread Dawid Dudzinski
Martin,

I think we found a culprit. There are some http 504 errors appearing
eventually in the transparent proxy that we set up. I think at this
point it is a networking issue.

Many thanks for responding.

Sincerely,
Dawid

On Thu, Dec 29, 2011 at 9:33 AM, Dawid Dudzinski dawi...@gmail.com wrote:
 Wicket 1.4.15
 Images are img tags returned through  Wicket's AjaxRequestTarget
 object. The app returns new markup that is supposed to get rendered in
 browser.

 So far all indications are that the html is generated properly - we
 used a transparent proxy between browser and server to inspect
 requests and responses.

 We also uncovered an issue with failed HTTP 302 redirects. It is a
 possibility that this is causing the problem.

 In the meantime are you aware of any relevant issues that had been
 addressed in subsequent Wicket releases?

 Thanks,
 Dawid



 On Thu, Dec 29, 2011 at 12:23 AM, Martin Grigorov mgrigo...@apache.org 
 wrote:
 Which version of Wicket ?
 What kind of request loads the image - Ajax or normal ?

 On Thu, Dec 29, 2011 at 4:47 AM, Dawid Dudzinski dawi...@gmail.com wrote:
 Hello,

 I have an issue that may not be related to Wicket but I'm trying every
 possible angle to solve my issue quickly and any suggestion would be
 greatly appreciated.

 I have an application that for the most part loads only one screen and
 then swaps out data via Wicket calls. It runs about 10-12 hours a day
 non-stop and from time to time my users run into a situation where
 images just stop loading in IE6. The only fix at that point is to
 clear browser cache and things come back to normal. It may be worth to
 mention that part of the functionality is an image browser.

 Image implementation extends the NonCachingImage class but 99% of the
 time user will works with unique images.

 Like I wrote above, the application just stops loading images and
 users have to clear the browser cache to get the app running again.

 I can't test it with newer browsers - not even newer IE and it only
 happens after an extended usage.

 Has anyone run into the same or similar issue? If anyone had to
 venture a guess it it could be related to Wicket in any way?

 Thanks in advance,
 Dawid

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Martin Grigorov
 jWeekend
 Training, Consulting, Development
 http://jWeekend.com

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: IE6 Stops Loading Images

2011-12-29 Thread Dawid Dudzinski
Wicket 1.4.15
Images are img tags returned through  Wicket's AjaxRequestTarget
object. The app returns new markup that is supposed to get rendered in
browser.

So far all indications are that the html is generated properly - we
used a transparent proxy between browser and server to inspect
requests and responses.

We also uncovered an issue with failed HTTP 302 redirects. It is a
possibility that this is causing the problem.

In the meantime are you aware of any relevant issues that had been
addressed in subsequent Wicket releases?

Thanks,
Dawid



On Thu, Dec 29, 2011 at 12:23 AM, Martin Grigorov mgrigo...@apache.org wrote:
 Which version of Wicket ?
 What kind of request loads the image - Ajax or normal ?

 On Thu, Dec 29, 2011 at 4:47 AM, Dawid Dudzinski dawi...@gmail.com wrote:
 Hello,

 I have an issue that may not be related to Wicket but I'm trying every
 possible angle to solve my issue quickly and any suggestion would be
 greatly appreciated.

 I have an application that for the most part loads only one screen and
 then swaps out data via Wicket calls. It runs about 10-12 hours a day
 non-stop and from time to time my users run into a situation where
 images just stop loading in IE6. The only fix at that point is to
 clear browser cache and things come back to normal. It may be worth to
 mention that part of the functionality is an image browser.

 Image implementation extends the NonCachingImage class but 99% of the
 time user will works with unique images.

 Like I wrote above, the application just stops loading images and
 users have to clear the browser cache to get the app running again.

 I can't test it with newer browsers - not even newer IE and it only
 happens after an extended usage.

 Has anyone run into the same or similar issue? If anyone had to
 venture a guess it it could be related to Wicket in any way?

 Thanks in advance,
 Dawid

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Martin Grigorov
 jWeekend
 Training, Consulting, Development
 http://jWeekend.com

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Allen Gilbert
After a bit more digging, I'm not sure I'll be able to use
IAjaxIndicatorAware at this time:
https://issues.apache.org/jira/browse/WICKET-4257.  I have a few components
that currently use it, and we've noticed this issue as well.  For them,
it's simply an annoyance (the indicator graphic doesn't go away), but with
this Panel, it will be very problematic if the blocking div is not removed
properly.

On Thu, Dec 29, 2011 at 10:56 AM, Ernesto Reinaldo Barreiro 
reier...@gmail.com wrote:

 That's perfectly doable: put the loading indicator on top of the blocking
 div.

 On Thu, Dec 29, 2011 at 5:28 PM, Allen Gilbert allen.gilb...@doane.edu
 wrote:

  Ernesto,
 
  Interesting...I've only used IAjaxIndicatorAware to display a loading
 gif,
  but it might solve this problem if I can get it to nicely show and hide a
  div that a) blocks the user from interacting with my panel and b) shows a
  loading indicator.  I'll try it out.  Thanks!
 
  -Allen
 
  On Thu, Dec 29, 2011 at 3:40 AM, Ernesto Reinaldo Barreiro 
  reier...@gmail.com wrote:
 
   Allen,
  
   Isn't it possible to make the panel implement IAjaxIndicatorAware?
  
   Regards,
  
   Ernesto
  
   On Wed, Dec 28, 2011 at 11:41 PM, Allen Gilbert 
 allen.gilb...@doane.edu
   wrote:
  
Hello,
   
I have a Panel containing many child components that perform various
  ajax
actions.  Whenever an ajax request is initiated from the panel or any
  of
its children, I'd like to show an indicator on the panel and block
 user
interaction with it.  However, I don't want the indicator to be shown
  for
ajax requests initiated by other components on the page.  Is there a
  way
   to
access the context of an ajax request in a javascript pre- or
 post-ajax
call handler in order to determine what component is initiating the
request?  Looking at wicket-ajax.js, there doesn't seem to be.
   
Alternatively, is there a way to decorate all ajax request javascript
   for a
panel's child components?  I'd like to avoid having to modify every
  ajax
behavior of the Panel's child components in order to show the
 activity
indicator on the panel.
   
-Allen
   
  
 



Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Cemal Bayramoglu
Allen,

Is this what yo uneed?

http://wicketinaction.com/2008/12/preventing-double-ajax-requests-in-3-lines-of-code/#more-302

Regards - Cemal
jWeekend
Training, Consulting, Development
http://jWeekend.com

On 29 December 2011 16:28, Allen Gilbert allen.gilb...@doane.edu wrote:

 Ernesto,

 Interesting...I've only used IAjaxIndicatorAware to display a loading gif,
 but it might solve this problem if I can get it to nicely show and hide a
 div that a) blocks the user from interacting with my panel and b) shows a
 loading indicator.  I'll try it out.  Thanks!

 -Allen

 On Thu, Dec 29, 2011 at 3:40 AM, Ernesto Reinaldo Barreiro 
 reier...@gmail.com wrote:

  Allen,
 
  Isn't it possible to make the panel implement IAjaxIndicatorAware?
 
  Regards,
 
  Ernesto
 
  On Wed, Dec 28, 2011 at 11:41 PM, Allen Gilbert allen.gilb...@doane.edu
  wrote:
 
   Hello,
  
   I have a Panel containing many child components that perform various ajax
   actions.  Whenever an ajax request is initiated from the panel or any of
   its children, I'd like to show an indicator on the panel and block user
   interaction with it.  However, I don't want the indicator to be shown for
   ajax requests initiated by other components on the page.  Is there a way
  to
   access the context of an ajax request in a javascript pre- or post-ajax
   call handler in order to determine what component is initiating the
   request?  Looking at wicket-ajax.js, there doesn't seem to be.
  
   Alternatively, is there a way to decorate all ajax request javascript
  for a
   panel's child components?  I'd like to avoid having to modify every ajax
   behavior of the Panel's child components in order to show the activity
   indicator on the panel.
  
   -Allen
  
 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Modal IE8

2011-12-29 Thread northar
I can also confirm this. Is this reported in Jira, c and more important will
it be fixed for wicket 1.5.4? There are still people using IE8..:(

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Modal-IE8-tp4128656p4242591.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Ernesto Reinaldo Barreiro
That's perfectly doable: put the loading indicator on top of the blocking
div.

On Thu, Dec 29, 2011 at 5:28 PM, Allen Gilbert allen.gilb...@doane.eduwrote:

 Ernesto,

 Interesting...I've only used IAjaxIndicatorAware to display a loading gif,
 but it might solve this problem if I can get it to nicely show and hide a
 div that a) blocks the user from interacting with my panel and b) shows a
 loading indicator.  I'll try it out.  Thanks!

 -Allen

 On Thu, Dec 29, 2011 at 3:40 AM, Ernesto Reinaldo Barreiro 
 reier...@gmail.com wrote:

  Allen,
 
  Isn't it possible to make the panel implement IAjaxIndicatorAware?
 
  Regards,
 
  Ernesto
 
  On Wed, Dec 28, 2011 at 11:41 PM, Allen Gilbert allen.gilb...@doane.edu
  wrote:
 
   Hello,
  
   I have a Panel containing many child components that perform various
 ajax
   actions.  Whenever an ajax request is initiated from the panel or any
 of
   its children, I'd like to show an indicator on the panel and block user
   interaction with it.  However, I don't want the indicator to be shown
 for
   ajax requests initiated by other components on the page.  Is there a
 way
  to
   access the context of an ajax request in a javascript pre- or post-ajax
   call handler in order to determine what component is initiating the
   request?  Looking at wicket-ajax.js, there doesn't seem to be.
  
   Alternatively, is there a way to decorate all ajax request javascript
  for a
   panel's child components?  I'd like to avoid having to modify every
 ajax
   behavior of the Panel's child components in order to show the activity
   indicator on the panel.
  
   -Allen
  
 



Re: Wicket.Ajax.registerPre/PostCallHandler filtering

2011-12-29 Thread Allen Gilbert
Ernesto,

Interesting...I've only used IAjaxIndicatorAware to display a loading gif,
but it might solve this problem if I can get it to nicely show and hide a
div that a) blocks the user from interacting with my panel and b) shows a
loading indicator.  I'll try it out.  Thanks!

-Allen

On Thu, Dec 29, 2011 at 3:40 AM, Ernesto Reinaldo Barreiro 
reier...@gmail.com wrote:

 Allen,

 Isn't it possible to make the panel implement IAjaxIndicatorAware?

 Regards,

 Ernesto

 On Wed, Dec 28, 2011 at 11:41 PM, Allen Gilbert allen.gilb...@doane.edu
 wrote:

  Hello,
 
  I have a Panel containing many child components that perform various ajax
  actions.  Whenever an ajax request is initiated from the panel or any of
  its children, I'd like to show an indicator on the panel and block user
  interaction with it.  However, I don't want the indicator to be shown for
  ajax requests initiated by other components on the page.  Is there a way
 to
  access the context of an ajax request in a javascript pre- or post-ajax
  call handler in order to determine what component is initiating the
  request?  Looking at wicket-ajax.js, there doesn't seem to be.
 
  Alternatively, is there a way to decorate all ajax request javascript
 for a
  panel's child components?  I'd like to avoid having to modify every ajax
  behavior of the Panel's child components in order to show the activity
  indicator on the panel.
 
  -Allen
 



Re: Palette and onComponentTagBody

2011-12-29 Thread matteus
And how I'm supposed to provide my own MyPalette.html? I tried here to
override /onComponentTagBody/ and add the html component to the response,
but it didnt worked as expected.

Can you show me how I can do it?

Thanks...

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Palette-and-onComponentTagBody-tp4241432p4242467.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



my book updated for Wicket 1.5.x

2011-12-29 Thread Kent Tong
Hi,

I've updated my book for Wicket 1.5.x. You may check it out or download the
first two chapters at http://agileskills2.org/EWDW

Thanks!


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Could not locate error message for component: ..

2011-12-29 Thread Rahman USTA
Hi, im new in Wicket. im trying out an external validation , my validation
class is here http://chopapp.com/#htmnirs3 ,
 i get a message like this

Could not locate error message for component: TextField@form:ad and error:
[ValidationError message=[null], keys=[isim 3 karakterden büyük olmalı],
variables=[null]]. Tried keys: ad.isim 3 karakterden büyük olmalı, isim 3
karakterden büyük olmalı.

how can i handle this issue.

-- 
Rahman USTA
Computer  Control Education Technologist
0-(531)-922-28-05
www.kodcu.com


Re: Could not locate error message for component: ..

2011-12-29 Thread Christian Huber

Hi,

i assume the string isim 3 karakterden büyük olmalı is the error 
message you want to display.


You have two options here, first use ValidationError#setMessage instead 
of addMessageKey. The later considers it's argument being a message key 
to be looked up from a properties file.


The alternative would be to put the message into a properties file and 
the pass the corresponding key to addMessageKey instead of the error 
message itself.


I would also recommend having a look at the wicket javadoc api.

The Sanity Resort http://sanityresort.blogspot.com/

Am 29.12.2011 21:39, schrieb Rahman USTA:

Hi, im new in Wicket. im trying out an external validation , my validation
class is here http://chopapp.com/#htmnirs3 ,
  i get a message like this

Could not locate error message for component: TextField@form:ad and error:
[ValidationError message=[null], keys=[isim 3 karakterden büyük olmalı],
variables=[null]]. Tried keys: ad.isim 3 karakterden büyük olmalı, isim 3
karakterden büyük olmalı.

how can i handle this issue.



Re: Trying to use IAjaxCallDecorator after Modal Window close

2011-12-29 Thread mshaver
Found a work-around for this... before showing the modal, I manually call the
javascript to show the mask, then hide it in the WindowClosedCallback.

Not ideal, but hey.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Trying-to-use-IAjaxCallDecorator-after-Modal-Window-close-tp4081142p4244277.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Could not locate error message for component: ..

2011-12-29 Thread Rahman USTA
I get it Christian, Thanks a lot

2011/12/29, Christian Huber hub...@butterbrot.org:
 Hi,

 i assume the string isim 3 karakterden büyük olmalı is the error
 message you want to display.

 You have two options here, first use ValidationError#setMessage instead
 of addMessageKey. The later considers it's argument being a message key
 to be looked up from a properties file.

 The alternative would be to put the message into a properties file and
 the pass the corresponding key to addMessageKey instead of the error
 message itself.

 I would also recommend having a look at the wicket javadoc api.

 The Sanity Resort http://sanityresort.blogspot.com/

 Am 29.12.2011 21:39, schrieb Rahman USTA:
 Hi, im new in Wicket. im trying out an external validation , my validation
 class is here http://chopapp.com/#htmnirs3 ,
   i get a message like this

 Could not locate error message for component: TextField@form:ad and
 error:
 [ValidationError message=[null], keys=[isim 3 karakterden büyük olmalı],
 variables=[null]]. Tried keys: ad.isim 3 karakterden büyük olmalı, isim 3
 karakterden büyük olmalı.

 how can i handle this issue.




-- 
Rahman USTA
Computer  Control Education Technologist
0-(531)-922-28-05
www.kodcu.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Can't open modal popups in ie8 or under

2011-12-29 Thread northar
Can confirm this bug, and would be glad to see it fixed for 1.5.4, as a lot
of users probaly still use ie8. Does 4241 really fix this?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Can-t-open-modal-popups-in-ie8-or-under-tp4241461p4245024.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Regarding Stack Overflow exception

2011-12-29 Thread Igor Vaynberg
have you tried 1.4.19?

-igor

On Wed, Dec 28, 2011 at 11:47 PM, smsmaddy smsd...@gmail.com wrote:
 Hi,
  Can you please suggest the version in which serialization issue is fixed.
 Even in the change log, I am not able to find the relevant entry of
 serialization fix?

 -
 //Maddy
 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Regarding-Stack-Overflow-exception-tp4203930p4242123.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Can't open modal popups in ie8 or under

2011-12-29 Thread northar
I can also confirm this was working in 1.5.0 but not in 1.5.1 - 1.5.3. 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Can-t-open-modal-popups-in-ie8-or-under-tp4241461p4245065.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Can't open modal popups in ie8 or under

2011-12-29 Thread Igor Vaynberg
can you try the snapshot and see if its fixed?

-igor

On Thu, Dec 29, 2011 at 11:42 PM, northar josef.anders...@gmail.com wrote:
 I can also confirm this was working in 1.5.0 but not in 1.5.1 - 1.5.3.

 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Can-t-open-modal-popups-in-ie8-or-under-tp4241461p4245065.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org