Closed solomax closed 9 years ago
Hi Maxim,
Done. I am deploying snapshots versions (6.20.2-SNAPSHOT
& 7.0.2-SNAPSHOT
), but since last releases the code may not be fully aligned on 6.x & 7.x.
So far the 7.x changelog looks like:
15a58ef (HEAD, origin/master, origin/HEAD, master) jQueryUI: added AbstractWizard#newFeedbackPanel; fixes #201 AbstractWizard#getFeedbackPanel() now returns WebMarkupContainer 12773f1 Kendo UI: Reworking DataTable button (toolbar & command)
0c561b9 Kendo UI: AutoCompleteTextField, restored converter & added Class
Kendo UI: ComboBox#newDataSource, use ListUtils#exclude; fixes #198
Thanks a lot! will try to test ASAP
just have tried it unfortunately there seems to be an issue: "[feedback]" placeholder is being displayed on the wizard :(
trying to use it as follows
@Override
protected WebMarkupContainer newFeedbackPanel(String id) {
KendoFeedbackPanel feedback = new KendoFeedbackPanel("feedback", new Options("button", true));
feedback.setEscapeModelStrings(false);
return feedback;
}
Additionally: is it possible not to close Wizard in onClick" method if Finish button is pressed?
Oops, correcting (and testing :p)...
"[feedback]" placeholder is being displayed on the wizard
corrected
is it possible not to close Wizard in onClick" method if Finish button is pressed?
Yes, but that's not the case yet. Are you sure you want this? Because it may lead to a (silent) api break...
Actually I'm using wizard to provide installer wizard functionality And I need to display progress, then close the wizard
To avoid API break optional property OFF by default maybe introduced (or overridable getter method returning boolean)
Understood & agreed...
Thanks!
Perfect! Thanks!
I will deploy 7.0.2-SNAPSHOT later today... I will try to align with wicket6.x asap (I'm almost sure cannot cherrypick, at least one of the commits)
sure, I also can test only tomorrow, sitting at the airport now :)
Well... You are at the airport since a while now ! :/
I got connection in Moscow for 5 hours found free wifi and power outlet, can do some wicket-jquery-ui testing :))))
Lucky me, lol ! ;)
Hi Maxim,
I've redeployed 6.20.2-SNAPSHOT
& 7.0.2-SNAPSHOT
yesterday evening. I will redeploy tonight with #204 fix...
Enjoy! :) Sebastien.
Great, thanks a lot! will test both :)
Just have tested 6.20.2-SNAPSHOT, everything seems to work Do you have any plans for release date? :))
Hi Maxim,
Glad to read this!
Well bugfix-releases are outside wicket's release planning.... So I can do it this WE.. ;)
Best regards, Sebastien.
great! Will wait for it! Thanks a lot!
Hello Sebastien, Can you please release 6.20.2 and 7.02, it is extremely hard to work with maven snapshots with ivy :(
Let me check my status and if I'm clean (what I think), I'll do it in a few minutes... :)
On Thu, Oct 8, 2015 at 7:27 PM, Maxim Solodovnik notifications@github.com wrote:
Hello Sebastien, Can you please release 6.20.2 and 7.02, it is extremely hard to work with maven snapshots with ivy :(
— Reply to this email directly or view it on GitHub https://github.com/sebfz1/wicket-jquery-ui/issues/201#issuecomment-146630923 .
I can see 7.0.2, Thanks!
6.20.2 is also released, it should appear in maven central soon... Enjoy! :)
Hello Sebastien,
I would like to replace standard feedback of Wizard with my own one (I would like to use KendoUI feedback with button) I guess currently it is impossible :( Maybe some overridable method can be added to AbstractWizard to be able to to this? Something like:
Thanks in advance!