Re: AjaxLazyLoadPanel

2015-04-23 Thread Sven Meier
Am 21.04.2015 um 05:24 schrieb Andrew Geery < andrew.ge...@gmail.com : In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id parameter, not "pList", when creating the PListPanel. Andrew @Override public Component getLazyLoadComponent(String id) {

Re: AjaxLazyLoadPanel

2015-04-23 Thread Martin Grigorov
;>>> thanks >>>>>>> >>>>>>> Am 21.04.2015 um 13:39 schrieb Martin Grigorov < >>>>>>>> mgrigo...@apache.org >>>>>>>> >>>>>>> : >>>>> >>>>&g

Re: AjaxLazyLoadPanel

2015-04-23 Thread Sven Meier
015 um 05:24 schrieb Andrew Geery : In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id parameter, not "pList", when creating the PListPanel. Andrew @Override public Component getLazyLoadComponent(String id) { return new PListPanel("pL

Re: AjaxLazyLoadPanel

2015-04-23 Thread Sven Meier
e although JS is enabled. WebClientInfo clientInfo = WebSession.get().getClientInfo(); if (clientInfo.getProperties().isJavaEnabled()) … br, Chris Am 21.04.2015 um 05:24 schrieb Andrew Geery : In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id parameter, not &q

Re: AjaxLazyLoadPanel

2015-04-23 Thread Martin Grigorov
>>>> https://twitter.com/mtgrigorov > >>>> > >>>> On Tue, Apr 21, 2015 at 2:09 PM, Chris wrote: > >>>> > >>>>> Andrew, thanks a lot! > >>>>> > >>>>> How could I in addition check if Javascrip

Re: AjaxLazyLoadPanel

2015-04-22 Thread Chris
PM, Chris wrote: >>>> >>>>> Andrew, thanks a lot! >>>>> >>>>> How could I in addition check if Javascript is enabled so that I can >>> add a >>>>> default Panel in case if it is not enabled? >>>>> >>>>

Re: AjaxLazyLoadPanel

2015-04-21 Thread Chris
e if it is not enabled? >>>> >>>> The following 2 lines do not work as it returns false although JS is >>>> enabled. >>>> >>>> WebClientInfo clientInfo = WebSession.get().getClientInfo(); >>>> if (clientInfo.getProperties().is

Re: AjaxLazyLoadPanel

2015-04-21 Thread Martin Grigorov
ientInfo = WebSession.get().getClientInfo(); > >> if (clientInfo.getProperties().isJavaEnabled()) … > >> > >> br, Chris > >> > >>> Am 21.04.2015 um 05:24 schrieb Andrew Geery : > >>> > >>> In AjaxLazyLoadPanel#getLazyComponent(String

Re: AjaxLazyLoadPanel

2015-04-21 Thread Chris
enabled? >> >> The following 2 lines do not work as it returns false although JS is >> enabled. >> >> WebClientInfo clientInfo = WebSession.get().getClientInfo(); >> if (clientInfo.getProperties().isJavaEnabled()) … >> >> br, Chris >> >>

Re: AjaxLazyLoadPanel

2015-04-21 Thread Martin Grigorov
JavaEnabled()) … > > br, Chris > > > Am 21.04.2015 um 05:24 schrieb Andrew Geery : > > > > In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id > > parameter, not "pList", when creating the PListPanel. > > &

Re: AjaxLazyLoadPanel

2015-04-21 Thread Chris
(clientInfo.getProperties().isJavaEnabled()) … br, Chris > Am 21.04.2015 um 05:24 schrieb Andrew Geery : > > In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id > parameter, not "pList", when creating the PListPanel. > > Andrew > > @Override >

Re: AjaxLazyLoadPanel

2015-04-20 Thread Andrew Geery
In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id parameter, not "pList", when creating the PListPanel. Andrew @Override public Component getLazyLoadComponent(String id) { return new PListPanel("pList", pModel); // change

AjaxLazyLoadPanel

2015-04-20 Thread Chris
Hi all, I am following the example from http://www.mkyong.com/wicket/how-do-use-ajaxlazyloadpanel-in-wicket/ but get following error: Last cause: Cannot replace a component which has not been added: id='pList', component=[PListPanel [Component id = pList]]: [AjaxLazyLoadPanel [Co

Re: Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread vp143
Sorry, I missed the that post. Works fine so far. Many thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-reloads-continuously-AjaxLazyLoadPanel-tp471p479.html Sent from the Users forum mailing list archive at Nabble.com

Re: Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread Martin Grigorov
e page and reload a fresh page every > time? > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Page-reloads-continuously-AjaxLazyLoadPanel-tp471p475.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread vp143
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-reloads-continuously-AjaxLazyLoadPanel-tp471p475.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Re: Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread Martin Grigorov
look. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Jul 18, 2014 at 11:47 AM, Vishal Popat wrote: > Hi, > > I have upgraded from 6.7.0 to 6.16.0 and now one of my pages continuously > reloads. > > On this page I have AjaxLazyLoadPanel w

Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread Vishal Popat
Hi, I have upgraded from 6.7.0 to 6.16.0 and now one of my pages continuously reloads. On this page I have AjaxLazyLoadPanel which does not call getLazyLoadComponent method when using 6.16. It does call the constructor and does call getLoadingComponent method. If I remove 6.16 jars and

Re: AjaxLazyLoadPanel loading asynchronously

2014-03-31 Thread vp143
AjaxLazyLoadPanel { public GetPrices(String id, final PageParameters changeDatesParam) { super(id); } public Component getLoadingComponent(String markupId) { return new Label(markupId, ""); }

Re: AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread MadasamySankarapandian
> On Mon, Feb 10, 2014 at 4:37 PM, Martin Grigorov wrote: > >> Hi, >> >> See http://markmail.org/message/4gxbwbhoqojutox6 >> >> Martin Grigorov >> Wicket Training and Consulting >> >> >> On Mon, Feb 10, 2014 at 9:31 AM, MadasamySankarapandian < >> m

Re: AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread MadasamySankarapandian
ing > > > On Mon, Feb 10, 2014 at 9:31 AM, MadasamySankarapandian < > madas...@mcruncher.com> wrote: > > > We have using 6.6.0 in our application. In home page we using > > AjaxLazyLoadPanel to load the widgets data, It take long time to render > > the widget

Re: AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread Martin Grigorov
Hi, See http://markmail.org/message/4gxbwbhoqojutox6 Martin Grigorov Wicket Training and Consulting On Mon, Feb 10, 2014 at 9:31 AM, MadasamySankarapandian < madas...@mcruncher.com> wrote: > We have using 6.6.0 in our application. In home page we using > AjaxLazyLoadPanel to load

AjaxLazyLoadPanel is block other page render while processing

2014-02-10 Thread MadasamySankarapandian
We have using 6.6.0 in our application. In home page we using AjaxLazyLoadPanel to load the widgets data, It take long time to render the widget. When loading widget, if click the other page, the page is not rendered immediately. After completed AjaxLazyLoadPanel process then only the clicked

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-08 Thread Paul Bors
Replace it it on the parent, then add the parent to the ajax target to be refreshed on the screen. ~ Thank you, Paul Bors On Feb 6, 2014, at 5:25 AM, Vishal Popat wrote: > Hi, > > I have the following panel layout: > > SomeOtherPanel > AjaxLazyLoadPanel >

replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread Vishal Popat
Hi, I have the following panel layout: SomeOtherPanel AjaxLazyLoadPanel Panel loading with AjaxLazyLoadPanel PanelToReplace I am trying to replace PanelToReplace using replaceWith within IndicatingAjaxFallbackLink onClick method but I get the message: Component

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread vp143
That was it! Thank you -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/replaceWith-method-in-Panel-not-working-with-AjaxLazyLoadPanel-tp4664232p4664257.html Sent from the Users forum mailing list archive at Nabble.com

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread Martin Grigorov
target.add(emptyPanel); > ^^ replace with: target.add(info); > } > }; > item.add(additionalInfoLink); > > I think this is correct? > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/replaceWith-method-in-Panel-not-working-with-AjaxLazyLoadPa

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread vp143
rrect? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/replaceWith-method-in-Panel-not-working-with-AjaxLazyLoadPanel-tp4664232p4664246.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread Martin Grigorov
SomeOtherPanel > AjaxLazyLoadPanel > Panel loading with AjaxLazyLoadPanel > PanelToReplace > > I am trying to replace PanelToReplace using replaceWith within > IndicatingAjaxFallbackLink onClick method but I get the message: > Component '[EmptyPanel [Compo

replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread Vishal Popat
Hi, I have the following panel layout: SomeOtherPanel AjaxLazyLoadPanel Panel loading with AjaxLazyLoadPanel PanelToReplace I am trying to replace PanelToReplace using replaceWith within IndicatingAjaxFallbackLink onClick method but I get the message: Component

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread Bas Gooren
avior-java-L19 After deserialization it will be null. Martin Grigorov Wicket Training and Consulting -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664151.html Sent from the Users forum mailing list archive at

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread vp143
r-java-L19 > After deserialization it will be null. > > Martin Grigorov > Wicket Training and Consulting -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664151.html Sent from the Users forum maili

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread Martin Grigorov
en it is null, the constructor value passed through is not null, but is > null within onTimer. > > Any ideas on this? > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664140.html > Sent from the Use

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread vp143
? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664140.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mai

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread Martin Grigorov
nder the panel > > 2-If not then schedule a timer to poll the panel again > > > > Regards - Ernesto Reinaldo Barreiro > > Does anyone have a link to this post as I cannot find it? > Regards, V > > > -- > View this message in context: > http://apache-wicke

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread vp143
would prefer to stay away from it as REST functionality would be heavily used area on the website. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664064.html Sent from the Users forum mailing list archive a

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread vp143
el again > > Regards - Ernesto Reinaldo Barreiro Does anyone have a link to this post as I cannot find it? Regards, V -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-loading-asynchronously-tp4664035p4664063.html Sent from the Users fo

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-29 Thread Peter Henderson
On 29 January 2014 12:28, Vishal Popat wrote: > Hi, > > I have a situation where I have to make multiple REST calls to different > suppliers. > I currently am using AjaxLazyLoadPanel to make these calls but loading > time is very slow and not scaleable if I wanted to add more

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-29 Thread Ernesto Reinaldo Barreiro
Hi, > > I have a situation where I have to make multiple REST calls to different > suppliers. > I currently am using AjaxLazyLoadPanel to make these calls but loading > time is very slow and not scaleable if I wanted to add more suppliers. > > Is there a way to make AjaxLazy

AjaxLazyLoadPanel loading asynchronously

2014-01-29 Thread Vishal Popat
Hi, I have a situation where I have to make multiple REST calls to different suppliers. I currently am using AjaxLazyLoadPanel to make these calls but loading time is very slow and not scaleable if I wanted to add more suppliers. Is there a way to make AjaxLazyLoadPanel asynchronously? I have

Re: AjaxLazyLoadPanel in wicket 6

2013-12-20 Thread Entropy
Hi, Does anyone have some insight on this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-in-wicket-6-tp4663083p4663163.html Sent from the Users forum mailing list archive at Nabble.com

Re: AjaxLazyLoadPanel in wicket 6

2013-12-17 Thread Entropy
component not needed/allowed INFO: focus set on wicketDebugLink INFO: focus removed from wicketDebugLink -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-in-wicket-6-tp4663083p4663091.html Sent from the Users

Re: AjaxLazyLoadPanel in wicket 6

2013-12-17 Thread Sven Meier
I have an AjaxLazyLoadPanel that loads a grid of data that takes a little time to load. It worked fine in the 1.4.7 version of the app, though there are code changes from the conversion, they seem to have been driven by the compile differences. Anyway, here's what it looks like: add (new AjaxLazyLoadPa

AjaxLazyLoadPanel in wicket 6

2013-12-17 Thread Entropy
Hi, it's me again, and I am still converting from 1.4.7 to 6.12. I think I am starting to get down to the last few errors. I have an AjaxLazyLoadPanel that loads a grid of data that takes a little time to load. It worked fine in the 1.4.7 version of the app, though there are code changes

Re: Possible bug with AjaxLazyLoadPanel

2013-05-16 Thread Raul
Michael Zhavzharov the way you've indicated, it works correctly. Thank you. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Possible-bug-with-AjaxLazyLoadPanel-tp4658793p4658846.html Sent from the Users forum mailing list archive at Nabbl

Re: Possible bug with AjaxLazyLoadPanel

2013-05-15 Thread Michael Zhavzharov
Hm, I just tried to do what you are talking about and it works for me. I have an ALLP: add(new AjaxLazyLoadPanel("lazy") { @Override public Component getLazyLoadComponent(*String id*) { return new ContentPanel(*id*); } }); an

Re: Possible bug with AjaxLazyLoadPanel

2013-05-15 Thread Raul
I know how it works, in my case the component is already loaded, and I can access it, the problem is I have to access the internal components of the "AjaxLazyLoadPanel". -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Possible-bug-with-AjaxLaz

Re: Possible bug with AjaxLazyLoadPanel

2013-05-15 Thread Martin Grigorov
onent is as follows. > > Component current = this.getPage().get("commentsPanel").get > ("modalPanel"); > > Where "commentsPanel" is a "AjaxLazyLoadPanel" and "modalPanel" is of type > "Panel", If "commentsPanel" I

Possible bug with AjaxLazyLoadPanel

2013-05-14 Thread Raul
Hello, I'm trying to get a component to update with Ajax from a AjaxLink, but always returns null, the access component is as follows. Component current = this.getPage().get("commentsPanel").get ("modalPanel"); Where "commentsPanel" is a "AjaxLazyLoadP

Re: AjaxLazyLoadPanel update with target.addComponent

2013-03-18 Thread brazz
found a solution. Here is a class which can be used for every long running interactions for which you have an AjaxRequestTarget available. You can use it instead of AjaxLazyLoadPanel, when creating a new instance of your class is inappropriate. I used the concept of callback script in

AjaxLazyLoadPanel update with target.addComponent

2013-03-08 Thread brazz
Hi, i'm using a Table inside an AjaxLazyLoadPanel. The table should repaint lazy (with busy icon) when i call: target.addComponent(AjaxLazyLoadPanel.this); is this possible somehow? i've read a post that i would have to replace the od AjaxLazyLoadPanel with a new instance, but

Re: load with AjaxLazyLoadPanel just once

2013-01-21 Thread Gabriel Landon
Maybe you can use something like this : new AjaxLazyLoadPanel("PanelId") { Panel myPanel; @Override public Component getLazyLoadComponent(String varMarkupId) { if (myPanel == null) { myPanel = new

load with AjaxLazyLoadPanel just once

2013-01-21 Thread infiniter
I have a panel that's too heavy so I'm using an an AjaxLazyLoadPanel to lazy load it. That panel is being reloaded on every Ajax call that rerenders the containing panel , but now I want to use lazy loading just once the page is loaded, and when rerendering the containing panel I wan

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Karsten Gaul
is used in getLazyLoadComponent(String markupId). 'myContent' contains the lazy load component 'content'. StatelessAjaxLazyLoadComponent is added to a WebMarkupContainer which itself is added to MyPage. If you look at the source of AjaxLazyLoadPanel the 'content' (added in on

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Martin Grigorov
onent(String markupId). 'myContent' > contains the lazy load component 'content'. > > StatelessAjaxLazyLoadComponent is added to a WebMarkupContainer which > itself is added to MyPage. > > If you look at the source of AjaxLazyLoadPanel the 'content' (added in

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Karsten Gaul
d component 'content'. StatelessAjaxLazyLoadComponent is added to a WebMarkupContainer which itself is added to MyPage. If you look at the source of AjaxLazyLoadPanel the 'content' (added in onBeforeRender) is replaced in the respond method of the Behavior. Could that be the reason why it is

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Martin Grigorov
Container.get(**MarkupContainer.java:354) > > Would that be sufficient? > > Thanks, > Karsten > > > Am 06.12.2012 11:30, schrieb Martin Grigorov: > >> Show us some code and the real exception. >> >> >> On Thu, Dec 6, 2012 at 11:26 AM, Karsten Gaul **

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Karsten Gaul
ely need this lazy loading as I have to wait for a soap response every 10 mins and for user experience issues need to display some loading component/icon as provided by AjaxLazyLoadPanel. Thanks, Karsten Am 05.12.2012 09:38, schrieb Karsten Gaul: Hi, I'm trying to use the functionality of

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Martin Grigorov
wait for a soap response every 10 mins and for user > experience issues need to display some loading component/icon as provided > by AjaxLazyLoadPanel. > > Thanks, > Karsten > > Am 05.12.2012 09:38, schrieb Karsten Gaul: > > Hi, >> >> I'm trying to use the f

Re: stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-06 Thread Karsten Gaul
provided by AjaxLazyLoadPanel. Thanks, Karsten Am 05.12.2012 09:38, schrieb Karsten Gaul: Hi, I'm trying to use the functionality of an AjaxLazyLoadPanel in a stateless page but this doesn't seem to work as the injected content is not a container and the following exception

stateless AjaxLazyLoadPanel wicket 1.4.21

2012-12-05 Thread Karsten Gaul
Hi, I'm trying to use the functionality of an AjaxLazyLoadPanel in a stateless page but this doesn't seem to work as the injected content is not a container and the following exception is thrown: java.lang.IllegalArgumentException: Component is not a container and so does not c

refresh ajaxlazyloadpanel

2012-10-12 Thread lukuperman
Hello, I'm using an ajaxlazyloadpanel and I already read that instantiating a new instance is the way to 'refresh' the panel. But my question is where do you think is the most appropriate/elegant way to do so when I have various different places in my page that reloads the pane

Re: AjaxLazyLoadPanel

2012-10-04 Thread Martin Grigorov
Hi, On Thu, Oct 4, 2012 at 11:07 PM, ayman wrote: > hello , > > > I'm using wicket 1.4.15 and trying to apply AjaxLazyLoadPanel on a form and > it gives me the following error :: > > ERROR [353637652@qtp-888943868-3] (RequestCycle.java:1529) - close tag not &g

AjaxLazyLoadPanel

2012-10-04 Thread ayman
hello , I'm using wicket 1.4.15 and trying to apply AjaxLazyLoadPanel on a form and it gives me the following error :: ERROR [353637652@qtp-888943868-3] (RequestCycle.java:1529) - close tag not found for tag: . Component: [MarkupContainer [Component id = tasksForm]] this is the code sn

Re: Pretty URLs for AjaxLazyLoadPanel

2012-05-29 Thread Martin Grigorov
anation.  This is what I was looking for. > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Pretty-URLs-for-AjaxLazyLoadPanel-tp4649499p4649555.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: Pretty URLs for AjaxLazyLoadPanel

2012-05-29 Thread kevjay
Thanks for the explanation. This is what I was looking for. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pretty-URLs-for-AjaxLazyLoadPanel-tp4649499p4649555.html Sent from the Users forum mailing list archive at Nabble.com

Re: Pretty URLs for AjaxLazyLoadPanel

2012-05-29 Thread Martin Grigorov
n context: > http://apache-wicket.1842946.n4.nabble.com/Pretty-URLs-for-AjaxLazyLoadPanel-tp4649499p4649552.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: use

Re: Pretty URLs for AjaxLazyLoadPanel

2012-05-29 Thread kevjay
be able to control what these URLs looked like. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Pretty-URLs-for-AjaxLazyLoadPanel-tp4649499p4649552.html Sent from the Users forum mailing list archive at

Re: Pretty URLs for AjaxLazyLoadPanel

2012-05-28 Thread Martin Grigorov
Hi, Only pages may have "pretty" urls. AjaxLazyLoadPanel is a component and it should be used inside a page. Additionally it needs to find the exact page instance. Read about stateful components for more info. What is your use case ? Why you need to make requests to an Ajax componen

Pretty URLs for AjaxLazyLoadPanel

2012-05-25 Thread kevjay
I'm using AjaxTabbedPanel and AjaxLazyLoadPanel. How do I make the URLs for the individual panels the way I want? Right now, a link to a specific panel looks like http://localhost:/?1-1.ILinkListener-tabs-tabs~container-tabs-2-link. How do I make it something like http://localhost

Re: AjaxLazyLoadPanel not loading in IE

2012-01-13 Thread Martin Grigorov
Hi On Fri, Jan 13, 2012 at 2:18 PM, Michal Wegrzyn wrote: > Hi, > > I have seen that AjaxLazyLoadPanel does not load in IE 9.0 with Wicket 1.5.3. > > What is insteresting, it does not load for me only at the first time after > login. > Scenario: lazy panels are placed o

AjaxLazyLoadPanel not loading in IE

2012-01-13 Thread Michal Wegrzyn
Hi, I have seen that AjaxLazyLoadPanel does not load in IE 9.0 with Wicket 1.5.3. What is insteresting, it does not load for me only at the first time after login. Scenario: lazy panels are placed on ListItems and after login they are constantly in loading state. When ListItems are replaced

Re: AjaxLazyLoadPanel question

2011-11-18 Thread Igor Vaynberg
t;> myLazyLoadPanel=myLazyLoadPanel.replaceWith(new >>>> MyLazyLoadPanel(myLazyLoadPanel.getId(), ..) >>>> target.addComponent(myLazyLoadPanel); >>>> >>>> this will reset the state of lazyloadpanel to the "not-yet-loaded" >>

Re: AjaxLazyLoadPanel question

2011-11-18 Thread heapifyman
set the state of lazyloadpanel to the "not-yet-loaded" >>> >>> -igor >>> >>> On Thu, Feb 3, 2011 at 11:40 AM, Matt Schmidt >>> wrote: >>> > I currently have a DataGridView loaded inside of an AjaxLazyLoadPanel, >>> > including the s

Re: AjaxLazyLoadPanel question

2011-11-18 Thread heapifyman
myLazyLoadPanel); >> >> this will reset the state of lazyloadpanel to the "not-yet-loaded" >> >> -igor >> >> On Thu, Feb 3, 2011 at 11:40 AM, Matt Schmidt >> wrote: >> > I currently have a DataGridView loaded inside of an AjaxLaz

Re: AjaxLazyLoadPanel question

2011-11-18 Thread heapifyman
gt; target.addComponent(myLazyLoadPanel); > > this will reset the state of lazyloadpanel to the "not-yet-loaded" > > -igor > > On Thu, Feb 3, 2011 at 11:40 AM, Matt Schmidt > wrote: > > I currently have a DataGridView loaded inside of an AjaxLazyLoadPanel, > > includi

Re: AjaxLazyLoadPanel question

2011-11-17 Thread Igor Vaynberg
eb 3, 2011 at 11:40 AM, Matt Schmidt wrote: > I currently have a DataGridView loaded inside of an AjaxLazyLoadPanel, > including the service call to get the data. > > myLazyLoadPanel = new AjaxLazyLoadPanel("id", new CollectionModel()) { >    public Component g

Re: AjaxLazyLoadPanel question

2011-11-17 Thread heapifyman
hat would be a great help. Thanks in advance, Philip 2011/2/4 Pedro Santos > I Matt, try to decorate the AJAX javascript to show/hide the indicator > using > an IAjaxCallDecorator > > On Thu, Feb 3, 2011 at 5:40 PM, Matt Schmidt wrote: > > > I currently have a DataGr

Help with AjaxLazyLoadPanel

2011-11-16 Thread heapifyman
Hello everyone, I'm using an AjaxLazyLoadPanel in one of my pages to lazily load a datatable where the data is read in from some files, which might take a while. This is working fine so far. However, I also need to provide functionality to clear the whole table and read in the data from the

Re: AjaxLazyLoadPanel changes

2011-11-10 Thread Martin Grigorov
Use Jira for such RFEs On Thu, Nov 10, 2011 at 4:12 PM, Michal Wegrzyn wrote: > Hi, > > Is it possible to apply two changes for AjaxLazyLoadPanel > (apache.wicket.extensions.ajax.markup.html.AjaxLazyLoadPanel)? > > - Can LAZY_LOAD_COMPONENT_ID be public? Sometimes id is

AjaxLazyLoadPanel changes

2011-11-10 Thread Michal Wegrzyn
Hi, Is it possible to apply two changes for AjaxLazyLoadPanel (apache.wicket.extensions.ajax.markup.html.AjaxLazyLoadPanel)? - Can LAZY_LOAD_COMPONENT_ID be public? Sometimes id is needed beforehand. - AjaxLazyLoadPanel uses anonymous AbstractDefaultAjaxBehavior, so AjaxChannel cannot be

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread codix
Here is the code: http://pastebin.com/uQnU464W http://pastebin.com/uQnU464W -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Bookmarkable-link-within-AjaxLazyLoadPanel-tp3943587p3946743.html Sent from the Users forum mailing list archive at Nabble.com

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread Martin Grigorov
> View this message in context: >> > http://apache-wicket.1842946.n4.nabble.com/Bookmarkable-link-within-AjaxLazyLoadPanel-tp3943587p3943587.html >> > Sent from the Users forum mailing list archive at Nabble.com. > >

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread codix
Sorry about that. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Bookmarkable-link-within-AjaxLazyLoadPanel-tp3943587p3943642.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread manuelbarzi
ontext: > > http://apache-wicket.1842946.n4.nabble.com/Bookmarkable-link-within-AjaxLazyLoadPanel-tp3943587p3943587.html > > Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread wholalotta
I think you forgot to close the following link.add(new Label(""+count)*)*; -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Bookmarkable-link-within-AjaxLazyLoadPanel-tp3943587p3943617.html Sent from the Users forum mailing list archive at

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread Martin Grigorov
On Thu, Oct 27, 2011 at 10:25 AM, codix wrote: > I am trying to put a link inside an AjaxLazyLoadPanel using > BookmarkablePageLink and Label. However, I always run into a "close tag not > found" error. > Here's my Java code: > > > add(new AjaxLazyLoadPanel(&q

Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread codix
I am trying to put a link inside an AjaxLazyLoadPanel using BookmarkablePageLink and Label. However, I always run into a "close tag not found" error. Here's my Java code: add(new AjaxLazyLoadPanel("itemcnt"){ @Override public Component getLazyLoadComponent(S

Re: ajaxlazyloadpanel and ie

2011-07-02 Thread Kurt Sys
updated info and code in http://apache-wicket.1842946.n4.nabble.com/ajax-GET-stopped-because-of-precondition-check-td3640560.html new thread -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ajaxlazyloadpanel-and-ie-tp3637730p3640599.html Sent from the Users forum

ajaxlazyloadpanel and ie

2011-07-01 Thread Kurt Sys
Hey all, I've got a problem with ajaxlazyloadpanel and IE, being the panels do not load in IE9 (didn't check IE8 or previous versions). The panels keep loading forever. There is no problem with loading the panels in other browsers (Chrome, Midori, Firefox). The panels are quite simpe

Re: AjaxLazyLoadPanel question

2011-02-04 Thread Pedro Santos
I Matt, try to decorate the AJAX javascript to show/hide the indicator using an IAjaxCallDecorator On Thu, Feb 3, 2011 at 5:40 PM, Matt Schmidt wrote: > I currently have a DataGridView loaded inside of an AjaxLazyLoadPanel, > including the service call to get the data. > > myLazyLoa

AjaxLazyLoadPanel question

2011-02-03 Thread Matt Schmidt
I currently have a DataGridView loaded inside of an AjaxLazyLoadPanel, including the service call to get the data. myLazyLoadPanel = new AjaxLazyLoadPanel("id", new CollectionModel()) { public Component getLazyLoadComponent(String markupId) { if(getDefaultModelObject

Re: AjaxLazyLoadPanel and back button

2011-01-09 Thread flavius
Thanks Pedro. I've opened WICKET-3318 regarding this issue and attached a quickstart. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-and-back-button-tp3168379p3206574.html Sent from the Users forum mailing list archive at Nabbl

Re: AjaxLazyLoadPanel and back button

2011-01-01 Thread Pedro Santos
Hi Flavius, please fill a ticket with a quickstart. On Thu, Dec 30, 2010 at 1:19 PM, flavius wrote: > > I'm using the AjaxLazyLoadPanel to load images I'm generating from reports. > When > I'm on a page with the AjaxLazyLoadPanel, click a link to another page > (l

AjaxLazyLoadPanel and back button

2010-12-30 Thread flavius
I'm using the AjaxLazyLoadPanel to load images I'm generating from reports. When I'm on a page with the AjaxLazyLoadPanel, click a link to another page (like a BookmarkablePageLink) and then click back, the image that was generated is still in place. However, if I submit a

Re: Unit-Test AjaxLazyLoadPanel on a page after successful load

2010-12-27 Thread Per Newgro
Thanks, after i got it that i have to set the second parameter to the parent of my lazyload the tester worked. Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h.

Re: Unit-Test AjaxLazyLoadPanel on a page after successful load

2010-12-22 Thread Pedro Santos
: > Hi *, > > i try to get it for hours now, but i can't. > > I have a page with an AjaxLazyLoadPanel on it. The lazyLoadComponent on it > is a simple panel. > Everything works as expected. > > But if i start my unit test (wickettester.startPage) the content panel is &

Unit-Test AjaxLazyLoadPanel on a page after successful load

2010-12-22 Thread Per Newgro
Hi *, i try to get it for hours now, but i can't. I have a page with an AjaxLazyLoadPanel on it. The lazyLoadComponent on it is a simple panel. Everything works as expected. But if i start my unit test (wickettester.startPage) the content panel is not exchanged. All i get is the lazy

Re: AjaxLazyLoadPanel, nothing else works until it finishes loading

2010-11-25 Thread Avraham Rosenzweig
manner in another thread, thus making the UI appear > non-blocking. > > https://gist.github.com/594468 > https://gist.github.com/636875 > > hope you find them useful. > Jonny > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/AjaxL

Re: AjaxLazyLoadPanel, nothing else works until it finishes loading

2010-11-24 Thread jwray
://gist.github.com/636875 hope you find them useful. Jonny -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-nothing-else-works-until-it-finishes-loading-tp2322202p3058132.html Sent from the Users forum mailing list archive at Nabble.com

  1   2   >