Re: Setting the RadioChoice with selected value -

2010-07-12 Thread sander v F
in this case 'autoGenerateSubjectKey' should contain "Yes" or "No" to be
selected.

You could change the property type of 'autoGenerateSubjectKey' from Boolean
to String, but i think it is better to change the type of the choices to
Boolean:


List list = new ArrayList();
list.add(Boolean.TRUE);
list.add(Boolean.FALSE);

IChoiceRenderer choiceRederer = new IChoiceRenderer()
{
/** serialVersionUID */
private static final long serialVersionUID = 1L;

/**
 * @see
org.apache.wicket.markup.html.form.IChoiceRenderer#getDisplayValue(java.lang.Object)
 */
public Object getDisplayValue(final Boolean b)
{
String displayValue = "No";
if (b != null && b.booleanValue())
{
displayValue = "Yes";
}
return displayValue;
}

/**
 * @see
org.apache.wicket.markup.html.form.IChoiceRenderer#getIdValue(java.lang.Object,
int)
 */
public String getIdValue(final Boolean object, final int index)
{
return object.toString();
}
};

PropertyModel propertyModel =
new PropertyModel(study,"autoGenerateSubjectKey");
return new
RadioChoice(radioChoiceId,propertyModel,list,choiceRenderer);




2010/7/12 Nivedan Nadaraj 

> Hi All
>
> The problem:
>
> This seems pretty basic but I have some issues when I want the UI to be set
> with the value from the Model. Any pointers  would be great.
>
> My Model has a property of type Boolean.On the UI I represent this as Yes
> and No using RadioChoice. When I perist this enitity,
> the Yes is converted into a boolean and then persisted in the database.
>
> However when the page refreshes,  the radio buttons loosed their
> pre-selected/selected values.I guess its around the Model that I have gone
> wrong.
>
> List list = new ArrayList();
> list.add("Yes");
> list.add("No");
>
> PropertyModel propertyModel = new
> PropertyModel(study,"autoGenerateSubjectKey"); //study is the Entity and
> has
> a property autoGenerateSubjectKey
> return new RadioChoice(radioChoiceId,propertyModel,list);
>
> Thank you
> Regards
> Niv
>


Re: Wicket wicket-contrib-tinymce populate Styles drop-down

2010-07-09 Thread sander v F
I think you could do that like this:

TinyMCESettings settings = new TinyMCESettings();
settings.register(new Plugin("style_formats")
{
@Override
protected void definePluginSettings(StringBuffer buffer)
{
define(buffer, "style_formats", "["
+ "{title : 'Bold text', inline : 'b'},"
+ "{title : 'Red text', inline : 'span', styles : {color : '#ff'}},"
+ "{title : 'Red header', block : 'h1', styles : {color : '#ff'}},"
+ "{title : 'Example 1', inline : 'span', classes : 'example1'},"
+ "{title : 'Example 2', inline : 'span', classes : 'example2'},"
+ "{title : 'Table styles'},"
+ "{title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}"
+ "]");
}
});

Also see:
http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/style_formats
http://tinymce.moxiecode.com/examples/example_24.php


2010/7/9 Pedro Santos 

> Hi, I misunderstood your question. I was think you are asking about session
> style.
>
> On Fri, Jul 9, 2010 at 5:30 AM, Peter Miklosko 
> wrote:
>
> > I'm sort of dubious about your suggestion as I don't see any direct
> > connection
> > between this DropDownChoice and TinyMCE editor from
> wicket-contrib-tinymce.
> > Would you care to explain little more about integration?
> >
> > Peter
> >
> >
> >
> >
> >
> > 
> > From: Pedro Santos 
> > To: users@wicket.apache.org
> > Sent: Thu, July 8, 2010 5:09:08 PM
> > Subject: Re: Wicket wicket-contrib-tinymce populate Styles drop-down
> >
> > Hi, you can use an  DropDownChoice  to present the available styles for
> > your
> > app, and allow user to select one.
> > Example:
> >
> > public class StyleSelect extends DropDownChoice {
> >public StyleSelect(String id, List options) {
> >super(id, options);
> >setModel(new IModel() {
> >public Object getObject() {
> >return getSession().getStyle();
> >}
> >
> >public void setObject(Object object) {
> >getSession().setStyle(object == null ? null : object.toString());
> >}
> >
> >public void detach() {}
> >});
> >}
> >@Override
> >protected boolean wantOnSelectionChangedNotifications() {
> >return true;
> >}
> > }
> >
> > On Thu, Jul 8, 2010 at 11:53 AM, Peter Miklosko  > >wrote:
> >
> > > Can somebody please help me populate drop down menu for Styles?
> > > Customer  decided to use this option and I have difficulties to figure
> > out
> > > how
> > > to  do it.
> > > Even in the wicket-contrib-tinymce examples this is not active.
> > >
> > > Peter
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> > --
> > Pedro Henrique Oliveira dos Santos
> >
> >
> >
> >
> >
>
>
>
> --
> Pedro Henrique Oliveira dos Santos
>


Re: Regarding datepicker popup when inputfield pressed

2009-08-21 Thread sander v F
There is a JQuery plugin capable of doing this, see:
http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerClickInput.html

You should have a look at WiQuery ( http://code.google.com/p/wiquery/ ), a
Wicket JQuery component. I don't know if they already implemented this
datepicker, but it should be easy to make a plugin.



2009/8/21 Michael Mosmann 

> Am Freitag, den 21.08.2009, 14:33 +0200 schrieb copenhag copenhagen:
> > Has no one really needed the calendar popup when the input field is
> > selected/pressed ?
>
> sorry.. (btw. IMHO it is annoying ..)
>
> i searched for some solution.. but i think you have to
> a) take a look into this yui magic
> b) ask on dev list for some infos about an extension of the current
> datepicker
> c) choose some different..
> d) ..?
>
> mm:)
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: How to show ModalWindow in menuě onClick event?

2009-07-13 Thread sander v F
I don't know YUI menu2, but if it is an AjaxClick, you could use
AjaxRequestTarget.get() to get the current AjaxRequestTarget.



2009/7/13 Petr Fejfar 

> Hi all,
>
> originally I had a row of AjaxLinks and on some clicks
> I opened a modal window by calling:
>
>  dialog.show(target);
>
> Later, I've changed AjaxLinks to menuBar based on
> YUI menu2, but I do know how to show the modal
> window because of my onClick handler does not have
> an argument of AjaxRequestTarget type.
>
> Please, how to handle menu2 click to be able
> show modal windows?
>
>
> Thanks, Petr
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: AjaxSubmitLink

2009-06-19 Thread sander v F
Like the error says: "Make sure you called component.setOutputMarkupId(true)
on the component whose markup you are trying to update."
That would be the component with id: 'verifyPanelWmc'.

Your code:
final WebMarkupContainer parent = new
WebMarkupContainer("verifyPanelWmc");
//parent.setOutputMarkupId(true);
parent.setVisible(false);
form.add(parent);

I think you tried that already, but because the component is not visible,
the component won't be rendered and written to the response. So there
wouldn't be any component to update with ajax. That's why there's the error
"Component with id [[verifyPanelWmc9]] a was not found while trying to
perform markup update"

You should try "setOutputMarkupPlaceholderTag(true)". This will create a
placeholder so the component can be updated with ajax.





2009/6/18 

>  I am trying to use an AjaxSubmitLink to show a panel when a button is
> clicked. I am receiving the following error when I try to submit the form:
>
> Wicket.Ajax.Call.processComponent: Component with id [[verifyPanelWmc9]] a
> was not found while trying to perform markup update. Make sure you called
> component.setOutputMarkupId(true) on the component whose markup you are
> trying to update.
>
> My code is as follows:
>
> public class InitiateDeclarationPage extends EzdecBaseWebPage {
> @SpringBean
> private IDeclarationService declarationService;
>
> public InitiateDeclarationPage() {
> final Declaration declaration = new
> Declaration(EzdecSession.getCurrentUser().getAccount(),
> EzdecSession.getCurrentUser(), "", County.COOK,
> State.ILLINOIS);
> add(new FeedbackPanel("feedback"));
>
> final Form form = new Form("initiateDeclarationForm", new
> CompoundPropertyModel(declaration));
>
> form.add(new Button("submitButton") {
> @Override
> public void onSubmit() {
> Declaration declaration = (Declaration)
> form.getModelObject();
> declaration.setStatus(Status.OPEN);
> ParcelIdentification pin =
> declarationService.findParcelIdentification(declaration.getPin());
> if (pin == null) {
> error("No PIN found for PIN " +
> getFormattedPIN(declaration.getPin()));
> } else {
> if
> (declarationService.initiateDeclaration(declaration)) {
> EzdecSession.get().info("Declaration " +
> declaration.getTxNumber() + " created");
> setResponsePage(new DeclarationPage(declaration, 0,
> pin));
> } else {
> error("Creating declaration with PIN: " +
> declaration.getPin());
> }
> }
> }
> });
>
> final EzdecRequiredTextField pinText = new
> EzdecRequiredTextField("pin");
> form.add(pinText);
>
> form.add(new DropDownChoice("county",
> Arrays.asList(County.values()))
>  .setRequired(true)
>  .setEnabled(false));
>
> final WebMarkupContainer parent = new
> WebMarkupContainer("verifyPanelWmc");
> //parent.setOutputMarkupId(true);
> parent.setVisible(false);
> form.add(parent);
>
> AjaxSubmitLink verifyPinLink = new AjaxSubmitLink("verifyPinLink")
> {
> @Override
> public void onSubmit(AjaxRequestTarget target, Form form) {
> Declaration declaration = (Declaration)
> form.getModelObject();
> ParcelIdentification pid =
> declarationService.findParcelIdentification(declaration.getPin());
> if (pid == null) {
> error("No PIN found for PIN " + declaration.getPin());
> } else {
> //parent.setOutputMarkupId(true);
> InitiateDeclarationVerifyPanel decVerifyPanel = new
> InitiateDeclarationVerifyPanel("verifyPanel", pid);
> decVerifyPanel.setOutputMarkupId(true);
> decVerifyPanel.setVisible(true);
> parent.add(decVerifyPanel);
> parent.setVisible(true);
> target.addComponent(decVerifyPanel);
> //target.addComponent(parent);
> }
> }
> };
>
> form.add(verifyPinLink);
>
> add(form);
> }
>
> }
>
> Anyone know how I can get around this?
>


Re: checking for required fields

2009-06-04 Thread sander v F
you could use a visitor:

form.visitChildren(new Component.IVisitor()
{
public Object component(Component component)
{
if (component instanceof FormComponent)
{
FormComponent formComponent = (FormComponent)
component;
if (!formComponent.isRequired())
{
// do something
}
}
return component;
}
});


2009/6/4 Eyal Golan 

> Hi,
> What is the best way to check if there are any required fields in a page?
> I want a page that checks for these fields and do something accordingly.
>
> Thanks,
>
> Eyal Golan
> egola...@gmail.com
>
> Visit: http://jvdrums.sourceforge.net/
> LinkedIn: http://www.linkedin.com/in/egolan74
>
> P  Save a tree. Please don't print this e-mail unless it's really necessary
>


Re: lazily loaded table structure?

2009-05-18 Thread sander v F
for client-side ordering of the items you should take a look at JQuery.
There is a tablesorter plugin (http://tablesorter.com/docs/) that looks easy
and helpful.




2009/5/15 Jan Torben Heuer 

> Hi,
>
> I want to display a table structure, however the data retrieving takes a
> certain time. Currently I use the AjaxLazyLoadPanel to display all results
> at once.
>
> But in future I'd like to to immediately display it on the page when it is
> retrieved. So I need some kind of table where I can add rows via Ajax *AND*
> reorder the items (because they are not retrieved in the final order).
>
> Do you know of any components that can be helpful for this task?
>
>
> Thanks,
>
> Jan
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: tinymce ajax submit

2008-08-11 Thread sander v F
For a project I also needed a AjaxSubmitLink to submit the tinyMce data, so
i've searched for a solution and found it at
http://dwairi.blogspot.com/2006/12/tinymce-ajax.html
The solution is to add "tinyMCE.triggerSave(true,true);" to the onclick of
the ajax button/link before the wicket code is called.

I made a nice Wicket AttributeModifier (TinyMceAjaxSubmitModifier) which can
be added to the ajax button/link and I also made a TinyMceAjaxButton and
TinyMceAjaxSubmitLink for easier use.

These component are added to the wicket-contrib-tinymce project.



2008/2/19 Igor Vaynberg <[EMAIL PROTECTED]>

> tinymce replaces the textarea with an iframe. after that it installs
> an onsubmit hook to detect when the form is submitted and does the
> opposite. since you are submitting via ajax form's onsubmit() is never
> called and so tinymce doesnt replace the iframe with a textarea piror
> tp submit. you need to look at what that callback calls and call it
> yourself
>
> -igor
>
> On Feb 19, 2008 2:55 AM, Benjamin Ernst <[EMAIL PROTECTED]> wrote:
> > Hi Marc,
> >
> > I have the same problem. When i am submitting a textarea with a
> > TinyMCEBehavior the model of the textarea does not get updated.
> > I am interested in your solution, but I do not understand it.
> >
> > It would be nice if you (or anyone else) could explain it for me.
> >
> > Thanks in advance,
> > Benjamin
> >
> > 2007/11/19, godin <[EMAIL PROTECTED]>:
> >
> > >
> > > godin a écrit :
> > > > Frank Bille a écrit :
> > > >> Hi,
> > > >>
> > > >> Do you have problems with it?
> > > >>
> > > >>
> > > >
> > > > yes , the submit work half a time 
> > > > i will investigate it more
> > >
> > >
> > > Ok find a workaround,
> > > pb on mozilla, use a decorator
> > > super.decorateScript("tinyMCE.triggerSave(true,
> > > true);"+script+"tinyMCE.idCounter=0;");
> > >
> > > regards marc
> > > Wicket rocks !
> > > >> I tried it over a year ago, and as far as I remember there was
> > > >> nothing to
> > > >> it. That was Wicket 1.2.3 and tinymce from back then.
> > > >>
> > > >> Frank
> > > >>
> > > >> On Nov 16, 2007 5:24 PM, godin <[EMAIL PROTECTED]> wrote:
> > > >>
> > > >>
> > > >>> Hi,
> > > >>> doe somebody manage to make tinymce work with an ajax submit button
> > > >>> regards
> > > >>> Marc
> > > >>>
> > > >>>
> -
> > > >>> To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > >>> For additional commands, e-mail: [EMAIL PROTECTED]
> > > >>>
> > > >>>
> > > >>>
> > > >>
> > > >>
> > > >
> > > > -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > >
> > > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: modify an arbitrary dom element

2008-08-07 Thread sander v F
If you want to do in serverside (with wicked), you should add a wicket tag
to the 'li'.
 Home

the java/wicket code should look something like:

WebMarkupContainer listItem=new WebMarkupContainer("listItem");
listItem.add(new AttributeModifier("class",  new
Model("notSelectedItem")));
listItem.add(new PageLink("homePageLink", HomePage.class)));
add(listItem);

or as igor suggested, you could do it client side:
document.getElementById(link).parentNode.className="notSelectedItem";



2008/8/7 Igor Vaynberg <[EMAIL PROTECTED]>

> you have to make it a component if you want to do it on serverside
>
> if you want to do it on clientside you would do something like
> document.getelementbyid(link).parentnode.style.foo=bar
>
> -igor
>
> On Thu, Aug 7, 2008 at 10:15 AM, Brill Pappin <[EMAIL PROTECTED]> wrote:
> > I have a case where I want to modify the css class of the dom element
> that
> > contains the component I'm working with.
> >
> > I found the wiki page:
> >
> http://cwiki.apache.org/WICKET/how-to-modify-an-attribute-on-a-html-tag.html
> > but that will allow me to modify the component only.
> >
> > Specifically what I'm doing is something like:
> >
> >
> > > wicket:id="homePageLink">Home
> >
> >
> > so I actually want to modify the css class of the containing li element
> (not
> > the a element).
> > Is it possible to do it that way, and if not, does anyone have any
> > suggestions on how this might be done better?
> >
> >
> >  - Brill
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: Notification on session destroyed?

2008-04-16 Thread sander v F
Example:


public class PojoUpdater implements HttpSessionListener
{
private static Map pojos = new HashMap();

public void sessionCreated(HttpSessionEvent se)
{
//do nothing
}

public void sessionDestroyed(HttpSessionEvent se)
{
Object object=pojos.get(se.getSession().getId());
if(object != null)
{
// Do what you want here with the object
}
}

public static void registerPojo(String sessionId,Object object)
{
pojos.put(sessionId,object);
}
}

2008/4/16, sander v F <[EMAIL PROTECTED]>:
>
> You could also use a HttpSessionListener for knowing when a session is
> destroyed. The problem is indeed that you can't get the attributes when the
> session is invalidated, but you can get the sessionId. So you could use a
> Map to register the session id with the Pojo you would like to update. So
> when the session get's destroyed you can update the Pojo.
>
> See
> http://www.stardeveloper.com/articles/display.html?article=2001112001&page=1for
>  an example with the HttpSessionListener.
>
>
>
>
> 2008/4/16, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]>:
> >
> > So what do you think?
> >
> > Im not sure how common a case this is ?
> >
> >
> > regards Nino
> >
> > Nino Saturnino Martinez Vazquez Wael wrote:
> >
> > > Hmm, that feels a bit hacky.. Then I'll need to implement a way of
> > > tracking sessions, and I saw something about keeping references to 
> > > destroyed
> > > sessions arent that great.
> > >
> > > It might be me that's just way of context(not knowing all of the
> > > internals), but should something like this be easy todo in wicket?
> > >
> > > Like maybe have a onDestroy or onExpire(or both?) in session class?
> > > However I have no idea on how much overhead this would bring to 
> > > applications
> > > that does not use the feature.
> > >
> > >
> > > regards Nino
> > >
> > > Johan Compagner wrote:
> > >
> > > > attached to a session of the session that is just invalided/expired?
> > > > That wont work. You cant get to a http sessions attributes when it
> > > > is
> > > > invalidated.
> > > >
> > > > To know which session id's are destroyed:
> > > >
> > > > public void sessionDestroyed(String sessionId) of WebApplication
> > > >
> > > > johan
> > > >
> > > >
> > > > On Tue, Apr 15, 2008 at 9:07 AM, Nino Saturnino Martinez Vazquez
> > > > Wael <
> > > > [EMAIL PROTECTED]> wrote:
> > > >
> > > >
> > > >
> > > > > Hi
> > > > >
> > > > > I've checked a little around, but could not find anything
> > > > > directly. This
> > > > > is what I want todo:
> > > > >
> > > > > When a user either logs out or expire I want to update a pojo
> > > > > attached to
> > > > > session.
> > > > >
> > > > > So does anyone have an example on how todo this(if possible)?
> > > > >
> > > > > --
> > > > > -Wicket for love
> > > > >
> > > > > Nino Martinez Wael
> > > > > Java Specialist @ Jayway DK
> > > > > http://www.jayway.dk
> > > > > +45 2936 7684
> > > > >
> > > > >
> > > > >
> > > > > -
> > > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> > >
> > --
> > -Wicket for love
> >
> > Nino Martinez Wael
> > Java Specialist @ Jayway DK
> > http://www.jayway.dk
> > +45 2936 7684
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>


Re: Notification on session destroyed?

2008-04-16 Thread sander v F
You could also use a HttpSessionListener for knowing when a session is
destroyed. The problem is indeed that you can't get the attributes when the
session is invalidated, but you can get the sessionId. So you could use a
Map to register the session id with the Pojo you would like to update. So
when the session get's destroyed you can update the Pojo.

See
http://www.stardeveloper.com/articles/display.html?article=2001112001&page=1for
an example with the HttpSessionListener.




2008/4/16, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]>:
>
> So what do you think?
>
> Im not sure how common a case this is ?
>
>
> regards Nino
>
> Nino Saturnino Martinez Vazquez Wael wrote:
>
> > Hmm, that feels a bit hacky.. Then I'll need to implement a way of
> > tracking sessions, and I saw something about keeping references to destroyed
> > sessions arent that great.
> >
> > It might be me that's just way of context(not knowing all of the
> > internals), but should something like this be easy todo in wicket?
> >
> > Like maybe have a onDestroy or onExpire(or both?) in session class?
> > However I have no idea on how much overhead this would bring to applications
> > that does not use the feature.
> >
> >
> > regards Nino
> >
> > Johan Compagner wrote:
> >
> > > attached to a session of the session that is just invalided/expired?
> > > That wont work. You cant get to a http sessions attributes when it is
> > > invalidated.
> > >
> > > To know which session id's are destroyed:
> > >
> > > public void sessionDestroyed(String sessionId) of WebApplication
> > >
> > > johan
> > >
> > >
> > > On Tue, Apr 15, 2008 at 9:07 AM, Nino Saturnino Martinez Vazquez Wael
> > > <
> > > [EMAIL PROTECTED]> wrote:
> > >
> > >
> > >
> > > > Hi
> > > >
> > > > I've checked a little around, but could not find anything directly.
> > > > This
> > > > is what I want todo:
> > > >
> > > > When a user either logs out or expire I want to update a pojo
> > > > attached to
> > > > session.
> > > >
> > > > So does anyone have an example on how todo this(if possible)?
> > > >
> > > > --
> > > > -Wicket for love
> > > >
> > > > Nino Martinez Wael
> > > > Java Specialist @ Jayway DK
> > > > http://www.jayway.dk
> > > > +45 2936 7684
> > > >
> > > >
> > > >
> > > > -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> --
> -Wicket for love
>
> Nino Martinez Wael
> Java Specialist @ Jayway DK
> http://www.jayway.dk
> +45 2936 7684
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: AJAX mouseover popup

2008-02-07 Thread sander v F
WicketStuff-Dojo (tooltips)

http://wicketstuff.org/wicketdojo13/?wicket:bookmarkablePage=%3Aorg.wicketstuff.dojo.examples.tooltip.TooltipTestPage


I havent worked with WicketStuff-Dojo yet, so I can't help you with it, but
i hope this is what you're looking for.





2008/2/6, Niels Bo <[EMAIL PROTECTED]>:
>
>
> Hi
>
> I am looking for some wicket code or a component that can show mouseover
> popups loaded by AJAX.
>
> Exactly as can be seen on this page
> http://www.mathertel.de/AJAXEngine/S03_AJAXControls/AJAXPopUpDemo.aspx
> http://www.mathertel.de/AJAXEngine/S03_AJAXControls/AJAXPopUpDemo.aspx
>
>
> Many thanks if someone can help.
> Niels
> --
> View this message in context:
> http://www.nabble.com/AJAX-mouseover-popup-tp15312817p15312817.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>