I'm using Wicket-1.5.
Figured out that an AjaxCallDecorator with failure handler almost
solves my problem.
What parameters are passed to failure handler of an Ajax call decorator ?
(to be able to figure out type of failure)
stefan
-
Try this: http://code.google.com/p/jqwicket/
Allow high/low level jQuery/UI access.
(sometimes low level JavaScripting is required).
Tried all libraries you mentioned but JqWicket
looks to be the most promising.
To make my life easier I modified it,
JQBehavior extends AbstractDefaultAjaxBehavior
(
// add to your ModalWindow constructor:
setWidthUnit("em");
setHeightUnit("em");
setResizable(false);
setOutputMarkupId(true);
@Override
public void show(AjaxRequestTarget target) {
super.show(target);
// ...
int width = ...;
int height = ...;
target.appendJavascript(""//
Had/have problems on IE7.
Never worked in a form being in a modal window (panel).
Stefan
On Tue, Sep 21, 2010 at 4:54 PM, Anna Simbirtsev wrote:
> I am using setDefaultButton to submit the form using enter key. It
> seems to be working ok, but I have read on the internet that people
> are havin
Congrats Martin !
Go ahead,
Istvan
On Thu, Jun 10, 2010 at 2:12 PM, Martin Makundi <
martin.maku...@koodaripalvelut.com> wrote:
> "Just do it" ;)
>
> 2010/6/10 Stefan Lindner :
> > I'm starting to implement jQuery's Accordion for jWicket now. Any
> > suggestions/wishes?
> >
> > Stefan
> >
> >
My seqnums are persistently stored,
when items are retrieved so the seqnum.
I used models to pass and get item data:
@Override
public void populateItem(final Item item) {
final ItemData itemData = item.getModelObject();
item.add(new MyLink("title", new DraggableModel(itemData) {
@O
You can implement by adding DraggableBehavior *and* DroppableBehavior to
each item,
something like this:
add(new DraggableBehavior() {
{
setName("someName");
setRevert(DraggableBehavior.DragRevertMode.ALWAYS);
setRevertDuration(0);
setHelper(DragHelperMode.CLONE
Yes, by opening the second window *when* the first is closed.
Try something like this:
abstract class Modal1 extends ModalWindow {
public Modal1(id) {
// ...
setWindowClosedCallback(new ModalWindow.CloseButtonCallback() {
@Override
public void onClose(AjaxRequestTa
I'm interrested in using jWicket,
please use this email for whatever announce,
thanks once again,
Stefan
10 matches
Mail list logo