decebal
unread,Mar 19, 2012, 11:06:16 AM3/19/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jqwicket-user
Hi
I try to port an application from wiquery to jqwicket and I have some
problems related to ajax.
For example in wiquery I have these code lines (the code it's simple
to understand without comments):
toogle.add(new WiQueryAjaxEventBehavior(MouseEvent.CLICK) {
protected void onEvent(AjaxRequestTarget target) { ... }
}
and
SortableAjaxBehavior sortableAjaxBehavior = new SortableAjaxBehavior()
{
public void onReceive(Component sortedComponent, int index,
Component parentSortedComponent, AjaxRequestTarget
ajaxRequestTarget) { ... }
public void onRemove(Component sortedComponent, AjaxRequestTarget
ajaxRequestTarget) { ... }
public void onUpdate(Component sortedComponent, int index,
AjaxRequestTarget ajaxRequestTarget) { ...}
}
Any advice How can I translate these code lines from wiquery in
jqwicket.
Best regards,
Decebal