Re: Wicket Cookie Deletion

2019-10-07 Thread Sibgha Nazir
and where to look for it. On Mon, Oct 7, 2019 at 9:15 AM Martin Grigorov wrote: > Hi, > > On Mon, Oct 7, 2019 at 3:14 AM Sibgha Nazir wrote: > > > Hi, > > > > I set a cookie from JavaScript in the chrome browser like > > > > > var d = new Date

Wicket Cookie Deletion

2019-10-06 Thread Sibgha Nazir
he same space? I am confused why it wouldn't work. Does it have to anything with the Tomcat server? Best Regards, Sibgha Nazir

Re: Wicket first time visit check

2019-09-22 Thread Sibgha Nazir
gt; On Fri, Sep 20, 2019, 21:25 Sibgha Nazir wrote: > > > Hi, > > > > I have a wicket application and I want to do something when the user > opens > > the webpage for the first time. > > > > Could anyone give me a clue on how to check if this is the

Wicket first time visit check

2019-09-20 Thread Sibgha Nazir
Hi, I have a wicket application and I want to do something when the user opens the webpage for the first time. Could anyone give me a clue on how to check if this is the first visit on a certain webpage? Best Regards, Sibgha

Re: Import Javascript through webjars as maven dependency.

2019-09-09 Thread Sibgha Nazir
It does not match with the Maven artifact id - it uses lower case > 't'. > Because of this WebjarsJavaScriptResourceReference cannot find it. > > On Sun, Sep 8, 2019 at 3:27 PM Sibgha Nazir wrote: > > > Hi, > > > > I am not able to import the following through webjar as

Re: Import Javascript through webjars as maven dependency.

2019-09-09 Thread Sibgha Nazir
instead. > > Hope this helps > Sven > > Am 8. September 2019 14:27:34 MESZ schrieb Sibgha Nazir < > sibgha...@gmail.com>: > >Hi, > > > >I am not able to import the following through webjar as maven > >dependency in > >my project. > > >

Import Javascript through webjars as maven dependency.

2019-09-08 Thread Sibgha Nazir
Hi, I am not able to import the following through webjar as maven dependency in my project. https://github.com/flesler/jquery.scrollTo I deployed it to the webjar using *bower install jquery.scrollTo* and it is also visible on the webjars.org org.webjars.bowergithub.flesler

Enjoy Hints on wicket application

2019-09-06 Thread Sibgha Nazir
Hi, I want to integrate https://xbsoftware.com/products/enjoyhint/ in my wicket application. Just need a little idea if its possible. I havent tries yet. But it seems like a angular js application. I always had some trouble integrating complex javascript with wicket and I apologize for lack of

Re: Notify Action to the Parent Class

2019-05-26 Thread Sibgha Nazir
event > event.stop(); > } > } > > > // look at the docs > > https://ci.apache.org/projects/wicket/guide/8.x/single.html#_wicket_events_infrastructure > > > François > follow Apache Wicket on twitter : https://twitter.com/apache_wicket < > https://twitter.com/a

Notify Action to the Parent Class

2019-05-26 Thread Sibgha Nazir
Hi, In my application, Home Page creates DPanel and Dpanel has the drop down menu. In the class DPanel at 'onchange' event, I want to do some action in the class HomePage.java. How can that be possible? *HomePage.java*public HomePage(final PageParameters parameters) {

Wicket DropDown Change event

2019-05-20 Thread Sibgha Nazir
Hi, I am not able to trigger the on change event of the drop down in the wicket. In the class DPanel,java, I am simply trying to print on the console when the change event has occured. dropdown.add(*new* AjaxFormComponentUpdatingBehavior("onchange") { /** *

Re: Loadable Detachable Model on button click and not before

2019-04-30 Thread Sibgha Nazir
Hi, Following up on my question. I cant find the solution on the internet. Best Regards, Sibgha On Mon, Apr 29, 2019 at 1:53 PM Sibgha Nazir wrote: > Hi, > > I have the following code: > > > *LearningCurveChartPanel* > > *public* LearningCurveChartPanel(Str

Loadable Detachable Model on button click and not before

2019-04-29 Thread Sibgha Nazir
Hi, I have the following code: *LearningCurveChartPanel* *public* LearningCurveChartPanel(String aId, IModel aModel) { *super*(aId); model = aModel; //initially the chart is empty. passing empty model chartPanel = *new*

Re: Loadable Detachable Model not updating on re-render

2019-04-29 Thread Sibgha Nazir
I will do that. Thanks. On Mon, Apr 29, 2019 at 9:54 AM Maxim Solodovnik wrote: > http://wicket.apache.org/start/quickstart.html > > And upload your project to github or some other service like this :) > > On Mon, 29 Apr 2019 at 14:49, Sibgha Nazir wrote: > > > H

Re: Loadable Detachable Model not updating on re-render

2019-04-29 Thread Sibgha Nazir
click a button. How do I change the below line to chartPanel = *new* ChartPanel(*MID_CHART_CONTAINER*, LoadableDetachableModel.*of*(*this*::renderChart)); And how do I define such thing in the onClick event? Best, Sibgha On Sun, Apr 28, 2019 at 9:29 PM Sibgha Nazir wrote: >

Re: Loadable Detachable Model not updating on re-render

2019-04-29 Thread Sibgha Nazir
How to create quick start? On Mon, Apr 29, 2019 at 9:39 AM Sven Meier wrote: > > > Hi, > > > > that should do it, no need to call detach() for yourself. > > > > Hard to tell what's going wrong.Can you create a quickstart? > > > > Regards > > Sven > > > > > > > > > > > > > > On 29.04.2019 at

Re: Loadable Detachable Model not updating on re-render

2019-04-29 Thread Sibgha Nazir
Hi, I tried doing the following *public* ChartPanel(String aId, LoadableDetachableModel loadableDetachableModel) { *super*(aId*,**loadableDetachableModel*); chartModel = (loadableDetachableModel); chart = *new* WebMarkupContainer(*MID_CHART_CONTAINER*);

Loadable Detachable Model not updating on re-render

2019-04-28 Thread Sibgha Nazir
Hi, This question is related to LoadableDetachable Model. I have a wicket panel, LearningCurveChartPanel. *public* LearningCurveChartPanel(String aId, IModel aModel) { *super*(aId); model = aModel; //initially the chart is empty. passing empty model

Re: Partial

2019-04-24 Thread Sibgha Nazir
*())) renderChart(target.get()); } On Wed, Apr 24, 2019 at 7:00 PM Martin Grigorov wrote: > Hi, > > On Wed, Apr 24, 2019 at 5:08 PM Sibgha Nazir wrote: > > > Hello wicket developer, > > > > I am facing the following exception on re-rendering a w

Re: Partial

2019-04-24 Thread Sibgha Nazir
In renderChart there is a line updating the chart panel like this PartialPageRequestHandler.add(chartPanel); On Wed, Apr 24, 2019 at 8:06 PM Sibgha Nazir wrote: > I make the call like this > > @Override > > *public* *void* renderHead(IHeaderRe

Partial

2019-04-24 Thread Sibgha Nazir
-container]] can no longer be added It renders it perfectly the first time. But I want to call this again and again when user clicks refresh button. What does this mean? Best Regards, Sibgha Nazir

Re: Wicket collapsable panel

2019-04-17 Thread Sibgha Nazir
o the > link that toggles the panel) > 2- Use wicket AJAX and content.steVisible(false|true) where content is the > panel containing you "box" content. This logic attached to the AJAX link > closing/opening box. > > > > On Mon, Apr 15, 2019 at 10:28 PM Sibgha Nazir w

Wicket collapsable panel

2019-04-15 Thread Sibgha Nazir
Hi, I am looking for a way to create a panel that opens and closes from one side of the container. I havent been lucky enough to find a related thing on internet. Can anybody hint me? Thanks.