Re: How to get client ip with wicket 1.5

2011-11-20 Thread vineet semwal
either do that or simply this HttpServletRequest request=(HttpServletRequest)getRequestCycle().getRequest().getContainerRequest(); String ipAddress=request.getHeader("X-Forwarded-For"); On Mon, Nov 21, 2011 at 12:50 PM, vineet semwal wrote: >  ServletWebRequest serv

Re: PageParameters in 1.5: a sanity check request

2011-11-23 Thread vineet semwal
; --------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: PageParameters in 1.5: a sanity check request

2011-11-23 Thread vineet semwal
ot;param"); // or use an index if you wish > if (!param.isEmpty()) { >    ... param.toString() ... > } > > Matt > > On 2011-11-23 12:17, vineet semwal wrote: >> >> List  liSVs = params.getValues([Param name]); >>  if ((liSVs != null)&am

Re: WebResource in Wicket 1.5

2011-11-25 Thread vineet semwal
Wicket-1-5-tp4106181p4106181.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- thank you,

Re: How to test just a panel using apache wicket?

2011-11-27 Thread vineet semwal
me. > > pozdrawiam > Paweł Kamiński > > kami...@gmail.com > pkaminski@gmail.com > ______ > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.

Re: How to test just a panel using apache wicket?

2011-11-27 Thread vineet semwal
sorry typo *use* :) 2011/11/27 vineet semwal : > ues tester.startcomponentinpage(new myPanel(a,b)) > > On Sun, Nov 27, 2011 at 4:11 PM, kamiseq wrote: >> well im talking about 1.5.3, and it is not like you startPanel and it >> works, as it will try to call constructor with

Re: How to test just a panel using apache wicket?

2011-11-27 Thread vineet semwal
ng (to use startComponentInPage(C > component) > > thanks ;] > > pozdrawiam > Paweł Kamiński > > kami...@gmail.com > pkaminski@gmail.com > __ > -- thank you, regards, Vineet Semwal -

Re: wicket migrating getConverter to 1.5

2011-11-27 Thread vineet semwal
------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wicket migrating getConverter to 1.5

2011-11-27 Thread vineet semwal
additional commands, e-mail: users-h...@wicket.apache.org >>>> >>>> >>> >>> >>> >>> -- >>> Martin Grigorov >>> jWeekend >>> Training, Consulting, Development >>> http://jWeekend.com >>> >>>

Re: wicket migrating getConverter to 1.5

2011-11-28 Thread vineet semwal
you paste an example that needs casting in the users' code ? > > On Mon, Nov 28, 2011 at 8:20 AM, vineet semwal > wrote: >> you are right cast is only done once but it is done by *wicket users* >> when they override the method, >> it can be avoided  by introducing

Re: wicket migrating getConverter to 1.5

2011-11-28 Thread vineet semwal
erter(Integer.class).convertToObject("...", locale) > ... > > So, you do the cast in the library code (it doesn't matter that the > component is yours. in this case you have your own library) and from > there on all clients of this component don't need to cast. >

Re: WebApplication.get().getSharedResources.remove()

2011-12-06 Thread vineet semwal
--- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: WebApplication.get().getSharedResources.remove()

2011-12-07 Thread vineet semwal
st 'name' and scope > will fallback to default o.a.w.Application. > > On Wed, Dec 7, 2011 at 8:42 AM, vineet semwal > wrote: >> can i ask why are you dismounting? >> >> create your resourcereference that returns your resource,use >> resourcereference f

Re: WebApplication.get().getSharedResources.remove()

2011-12-07 Thread vineet semwal
thanks created one https://issues.apache.org/jira/browse/WICKET-4284 On Wed, Dec 7, 2011 at 2:26 PM, Martin Grigorov wrote: > Use Jira ;-) > > On Wed, Dec 7, 2011 at 9:55 AM, vineet semwal > wrote: >> hi martin, >> thanks for the explanation.. >>  i think  getkey

Re: WebApplication.get().getSharedResources.remove()

2011-12-07 Thread vineet semwal
see how StackOverflowError may happen. >> >> The problems I see are more memory consumption and longer time to >> iterate over the mappings and find the one that matches. >> >>> >>> >>> vineet semwal wrote: >>>> >>>> can

Re: WebApplication.get().getSharedResources.remove()

2011-12-07 Thread vineet semwal
correction i meant not much memory will be eaten in mounting and maintaining that map.. On Wed, Dec 7, 2011 at 4:08 PM, vineet semwal wrote: > i agree with martin.. > wicket only maintains concurrenthashpmap of key(ResourceRefrence.Key) > and value (ResourceRefrence) > both ar

Re: Repainting only newly-created repeater items via ajax

2011-12-12 Thread vineet semwal
um mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal

Re: Repainting only newly-created repeater items via ajax

2011-12-12 Thread vineet semwal
just checked out your code in nabble,it didnt get through in mail authorizationdetail should be added to listitem in the button and listitem shouldbe added to listview in button listitem id should be the new unique index On Mon, Dec 12, 2011 at 8:03 PM, vineet semwal wrote: > repeatingview

Re: Repainting only newly-created repeater items via ajax

2011-12-13 Thread vineet semwal
-newly-created-repeater-items-via-ajax-tp4186028p4188835.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wic

Re: Java class and javascript

2012-01-19 Thread vineet semwal
gt;        response.renderJavascriptReference(new > ResourceReference(HistoricoBehavior.class, "MyComponent.js")); >        super.renderHead(response); >    } > > > I've tried with PackcageResource,  a custom resource, etc. but I haven't > found a workin

Re: Stateless and Ajax

2012-01-31 Thread vineet semwal
ing, Development > http://jWeekend.com > > --------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Stateless and Ajax

2012-02-01 Thread vineet semwal
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > - > To

Re: Stateless and Ajax

2012-02-02 Thread vineet semwal
gt;> Training, Consulting, Development >> http://jWeekend.com >> >> - >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Stateless and Ajax

2012-02-02 Thread vineet semwal
complex UIs > > -igor > > On Thu, Feb 2, 2012 at 11:24 AM, vineet semwal > wrote: >> i am just now trying to program the same thing,this kind of is very >> tough to implement if not impossible.. >>  i am adding the following things in url >> 1)replaced com

Re: Wicket 1.4 -> 1.5: RequestCycle.urlFor

2012-02-06 Thread vineet semwal
e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket 1.4 -> 1.5: RequestCycle.urlFor

2012-02-06 Thread vineet semwal
e same as in 1.4? > > Tom > > > On 06.02.2012 18:29, vineet semwal wrote: >> RequestCycle#urlFor still exists,that needs to be corrected.. >> >> On Mon, Feb 6, 2012 at 10:44 PM, Thomas Singer wrote: >>> According to https://cwi

Re: Tighter Wicket-Spring integration

2012-02-06 Thread vineet semwal
r additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket 1.4 -> 1.5: MarkupContainer.getMarkupStream()

2012-02-06 Thread vineet semwal
ribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket Ajax direction and roadmap regarding push-like updates

2012-02-07 Thread vineet semwal
nd-roadmap-regarding-push-like-updates-tp4351890p4362477.html >> Sent from the Users forum mailing list archive at Nabble.com. >> >> - >> To unsubscribe, e-mail

Re: Expiration of unversioned pages in Wicket 1.5

2012-02-09 Thread vineet semwal
reply! >> >> David >> >> >> >> - >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Expiration of unversioned pages in Wicket 1.5

2012-02-09 Thread vineet semwal
icket doesnt know that the instance of MyPage is prestine, so it > cannot make the decision to throw it away and redirect to another > instance. > > -igor > > On Thu, Feb 9, 2012 at 12:42 AM, vineet semwal > wrote: >>  what if RequestCycle#setResponsePage(Page) would ha

Re: New bie question . Custom Form Submit

2012-02-15 Thread vineet semwal
> Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal ---

Re: New bie question . Custom Form Submit

2012-02-15 Thread vineet semwal
g > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: New bie question . Custom Form Submit

2012-02-15 Thread vineet semwal
hi sven, sorry that reply was to atomix ,i saw your mail few seconds late else i wouldnt have replied :) On Thu, Feb 16, 2012 at 12:14 PM, Sven Meier wrote: > Sure, but I assume atomix hasn't ;) > > Sven > > Am 16.02.2012 07:10, schrieb vineet semwal: > >> i *read*

Re: LoadableDetachableModels for a ListView ( database with Cayenne)

2012-02-16 Thread vineet semwal
-database-with-Cayenne-tp4394185p4394185.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For

Re: LoadableDetachableModels for a ListView ( database with Cayenne)

2012-02-16 Thread vineet semwal
sorry when i meant if you are going to retrieve a lot of data use dataview On Thu, Feb 16, 2012 at 8:17 PM, vineet semwal wrote: > see listmodel > > btw if you have a big list ,use dataview > > On Thu, Feb 16, 2012 at 8:14 PM, atomix > wrote: >> Hi all , >> >&

2 small improvements that wickettester can have

2012-02-20 Thread vineet semwal
) ,i think a new derived class from statefulpage with setStatelessHint(true) can be created for this usecase -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: loosing custom wicket session

2012-03-02 Thread vineet semwal
mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal

Re: loosing custom wicket session

2012-03-02 Thread vineet semwal
orum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal --

Re: redirecting in IRequestCyleListener.onException

2012-03-02 Thread vineet semwal
PageRequestHandler(provider, > RedirectPolicy.ALWAYS_REDIRECT); -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: redirecting in IRequestCyleListener.onException

2012-03-02 Thread vineet semwal
i think you need to return the handler which you have scheduled On Sat, Mar 3, 2012 at 11:30 AM, Douglas Ferguson wrote: > onException() wants be to run a redirectHandler. do I just return null? > > > On Mar 2, 2012, at 11:44 PM, vineet semwal wrote: > >

Re: redirecting in IRequestCyleListener.onException

2012-03-02 Thread vineet semwal
2, at 12:36 AM, Douglas Ferguson wrote: >> >>> Causes an infinite loop. >>> >>> Douglas >>> >>> On Mar 3, 2012, at 12:20 AM, vineet semwal wrote: >>> >>>> i think you need to return the handler which you have scheduled >>

Re: redirecting in IRequestCyleListener.onException

2012-03-03 Thread vineet semwal
*/ ); > > > But I finding that it throws away the page that I pass in and just uses the > class object. > I discovered this because I don't have a default constructor so it blows up > on newInstance(). > > Douglas > > On Mar 3, 2012, at 1:36 AM, vineet semwal

Re: redirecting in IRequestCyleListener.onException

2012-03-04 Thread vineet semwal
>> there. > > Another place to put it is RequestCycle#metaData. This way you wont > have to clean it. > >> >> Douglas >> >> On Mar 3, 2012, at 10:26 AM, vineet semwal wrote: >> >>> you should also do page.setStatelessHint(false) >&g

Re: How to suppress WicketSerializationException using ListView

2012-03-05 Thread vineet semwal
avaSerializer.java:250) >    ... 34 more > > As far as I've tracked down the problem, the class WildCardListModel > assumes that in the method createSerializableVersionOf it can create a > serializable version of a List of T which is not correct. In general this > is harmless for my application. Now, my question is that if there is a way > to configure Wicket to suppress this exception? Or, what is the best way to > deal with this issue? > > As a side note, I cannot make neither S nor T serializable at this moment. > > Thank you in advance, > Behrooz Nobakht -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

wickestuff-push not working with jetty standalone

2010-04-22 Thread vineet semwal
when i am using it with maven-jetty plugin.. Following is my setup :- jetty:6.1.23 wicket:1.4.7 push:1.4.7-snapshot any advice will be welcomed... -- regards, Vineet Semwal

Re: wickestuff-push not working with jetty standalone

2010-04-22 Thread vineet semwal
he logs and see what the cometd servlet is requiring, > > This is more of a jetty issue than a problem wicketstuff-push.. > > You should find something in the jetty mailing lists regarding the > requirements for the comet servlet. > > On Thu, Apr 22, 2010 at 9:24 AM, vineet semwal &g

Re: Implement Check Availability link

2010-05-16 Thread vineet semwal
gt;> > > > >> > Please suggest. > > >> > > > >> > Regards, > > >> > Apple Grew > > >> > my blog @ http://blog.applegrew.com/ > > >> > > > >> > > >> - > > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > >> For additional commands, e-mail: users-h...@wicket.apache.org > > >> > > >> > > > > > > > - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > -- regards, Vineet Semwal

Re: Implement Check Availability link

2010-05-16 Thread vineet semwal
heck Availability link. When this link is > > > > clicked > > > > >> it > > > > >> > will check if the entered username exists for not For this link > I > > > have > > > > >> used > > > > >> > AjaxLink. The problem is in AjaxLink's onClick I am not sure how > > > will > > > > I > > > > >> > fetch the value of the text filed - username? The model seems > not > > to > > > > hold > > > > >> > the value.. > > > > >> > > > > > >> > Please suggest. > > > > >> > > > > > >> > Regards, > > > > >> > Apple Grew > > > > >> > my blog @ http://blog.applegrew.com/ > > > > >> > > > > > >> > > > > >> > > - > > > > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > > > >> For additional commands, e-mail: users-h...@wicket.apache.org > > > > >> > > > > >> > > > > > > > > > > > > > - > > > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > > > > > > > > > > > > > > -- > > regards, > > Vineet Semwal > > > -- regards, Vineet Semwal

Re: Implement Check Availability link

2010-05-16 Thread vineet semwal
> -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Sun, May 16, 2010 at 4:03 PM, vineet semwal > wrote: > > > should work,have you tried it in onerror method? > > > > On Sun, May 16, 2010 at 11:02 PM, Apple Grew > wrote: >

Re: AutocompleteTextField behaviours

2010-05-24 Thread vineet semwal
- > >> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> > For additional commands, e-mail: users-h...@wicket.apache.org >> > >> > >> > > > > > -- > Katherine. > > -- > Самые низкие цены на недвижимость. http://domoteka.ru/ > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- regards, Vineet Semwal

Re: AutocompleteTextField behaviours

2010-05-24 Thread vineet semwal
Katherine > There is no problem in how many items returned, the problem I need to > notify user, that there are N items in general. > So I just need a possibility to update Label by ajax after getChoices got > number of items. > > * vineet semwal [Mon, 24 May 2010 13:19:47 > +0

Re: AutocompleteTextField behaviours

2010-05-24 Thread vineet semwal
to your autocompletetextfield ,it will work... 2010/5/24 Katherine > Thanks for idea, but unfortunately onrequest is a final method. > I tried to add my Label to the target used in respond method, but nothing > happens in this case :(. > > * vineet semwal [Mon, 24 May 2010 1

Re: AutocompleteTextField behaviours

2010-05-24 Thread vineet semwal
a typo in previous post , formcomponentupdatingbehavior or a *formsubmitting* behavior to fire . 2010/5/24 vineet semwal > sorry i realized the previous idea is bad because to even read the > formcomponent input you will require either formcomponentupdatingbehavior > or a ajax s

Re: validations in a form with listView

2010-06-03 Thread vineet semwal
ket.1842946.n4.nabble.com/validations-in-a-form-with-listView-tp2242009p2242137.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- regards, Vineet Semwal

Re: Welcome Martin Grigorov as a core team member

2010-07-19 Thread vineet semwal
e team! > > -- > Jeremy Thomerson > http://www.wickettraining.com > -- regards, Vineet Semwal

Re: new feature in trunk and branch: Component#onConfigure()

2010-07-21 Thread vineet semwal
(); // make sure source is > configured > * setVisible(source.isVisible()); > * } > * } > * > * > * > */ >public final void configure() >{ > if (!getFlag(FLAG_CONFIGURED)) >{ >onConfigure(); >setFlag(FLAG_CONFIGURED, true); >} >} > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- regards, Vineet Semwal

Re: get localized string from Model class?

2010-10-30 Thread vineet semwal
milar? >>>> >>>> >>>> Thanks >>>> >>>> - >>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >>>> For additional commands, e-mail: users-h...@wicket.apache.org >>>> >>>> >>> >>> - >>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >>> For additional commands, e-mail: users-h...@wicket.apache.org >>> >>> > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- regards, Vineet Semwal

Re: StackOverflowError in session creation

2012-03-29 Thread vineet semwal
ava:546) >     at > org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:486) > > What is the reason behind this errorare too many sessions being > created??? > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/StackOverflowError-in-session-creation-tp4516170p4516170.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Version Pages by default

2012-03-31 Thread vineet semwal
t;> > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional command

Re: Version Pages by default

2012-03-31 Thread vineet semwal
oh sorry corrected a bit On Sat, Mar 31, 2012 at 1:50 PM, vineet semwal wrote: > for creation ,is it done like this in wicket if(page is creatable){ > create}else{ /*throw pageexpiredexception*/ redirect to error page } > > else there can be a loop of pageexpiredexception

Re: Wicket in a containerless environment

2012-04-06 Thread vineet semwal
com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal

Re: wicket 6.0

2012-04-15 Thread vineet semwal
nt >>> http://jWeekend.com >>> >>> - >>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >>> For additional commands, e-mail: users-h...@wicket.apache.org >>> >>

Re: Customize PagingNavigator

2012-05-10 Thread vineet semwal
nt from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, rega

Re: Loadable-detachable model for ListView

2012-05-10 Thread vineet semwal
bble.com/Loadable-detachable-model-for-ListView-tp4621232p4624389.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For addition

Re: Customize PagingNavigator

2012-05-10 Thread vineet semwal
ands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Customize PagingNavigator

2012-05-11 Thread vineet semwal
4655.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org >

Re: Passing query string data from an expired page to the expiry page

2012-05-14 Thread vineet semwal
-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Passing query string data from an expired page to the expiry page

2012-05-16 Thread vineet semwal
e. The session expiry page does not receive this parameter. Ideally > we want to brand the expiry page, to do this we need the parameters from > the "expired" page. > > Any more pointers? > >> -Original Message- >> From: vineet semwal [mailto:vineetsemwal

Re: Get JSESSIONID in Wicket

2012-05-18 Thread vineet semwal
t; Best regards, > Martin -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Get JSESSIONID in Wicket

2012-05-18 Thread vineet semwal
i made a little typo so correcting it ISessionStore#getSessionId(request, boolean); On Fri, May 18, 2012 at 3:52 PM, vineet semwal wrote: > ISessionStore()#getSessionId(request, boolean); > > On Fri, May 18, 2012 at 3:31 PM, Martin A wrote: >> Hello guys, >> I've tryin

Re: Get JSESSIONID in Wicket

2012-05-18 Thread vineet semwal
or just Session#getId() On Fri, May 18, 2012 at 4:00 PM, vineet semwal wrote: > i made a little typo so correcting it > ISessionStore#getSessionId(request, boolean); > > On Fri, May 18, 2012 at 3:52 PM, vineet semwal > wrote: >> ISessionStore()#getSessionId(request, boolea

Re: wicket 6 resources

2012-05-19 Thread vineet semwal
t; > pozdrawiam > Paweł Kamiński > > kami...@gmail.com > pkaminski@gmail.com > __ > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-

Re: wicket 6 resources

2012-05-19 Thread vineet semwal
am > Paweł Kamiński > > kami...@gmail.com > pkaminski....@gmail.com > __ > > > On 19 May 2012 13:42, vineet semwal wrote: >> On Sat, May 19, 2012 at 5:42 AM, kamiseq wrote: >>> hej, >>> I tried to look for this and I ve found some old topics but they

Re: wicket 6 resources

2012-05-19 Thread vineet semwal
Paweł Kamiński > > kami...@gmail.com > pkaminski@gmail.com > ______ > > > On 19 May 2012 23:44, vineet semwal wrote: >> afaik wicket ajax depends on jquery and not whole wicket so jquery is >> not always imported in your page automatically,it's im

Re: wicket 6 resources

2012-05-19 Thread vineet semwal
.com > pkaminski@gmail.com > __ > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal -

Re: Getting more stale page exception in wicket 1.5.6

2012-05-24 Thread vineet semwal
a:662) > > > Thanks, > Suresh > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Getting-more-stale-page-exception-in-wicket-1-5-6-tp4649492.html > Sent from the Users forum mailing list archive at Nabble.com. > >

Re: AjaxButton in Wicket 6.0

2012-06-03 Thread vineet semwal
> Michał Margiel > > http://www.confitura.pl (dawniej Javarsovia) > http://www.linkedin.com/in/MichalMargiel -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wicket 1.6

2012-06-04 Thread vineet semwal
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thank you, regards, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

call to Wicket.Ajax.get gives object is undefined

2012-06-10 Thread vineet semwal
Hi, in wicket 6.x, call to Wicket.Ajax.get method gives me undefined object inn firefox and in chrome it gives Ajax request:TypeError: Cannot read property 'length' of undefined. -- thanks, Vineet Semwal - To unsu

Re: call to Wicket.Ajax.get gives object is undefined

2012-06-11 Thread vineet semwal
Mon, Jun 11, 2012 at 8:24 AM, vineet semwal > wrote: >> Hi, >> >> in wicket 6.x, call to  Wicket.Ajax.get method gives me undefined >> object inn firefox and in chrome it gives  Ajax request:TypeError: >> Cannot read property 'length

Re: call to Wicket.Ajax.get gives object is undefined

2012-06-11 Thread vineet semwal
iki page you can see the names of the keys of the JSON object > that is used to configure the Ajax call, aka Ajax attributes. > > On Mon, Jun 11, 2012 at 10:44 AM, vineet semwal > wrote: >> Hi martin-g, >> no i can't reproduce on examples but i have attached a quickstart >

Re: call to Wicket.Ajax.get gives object is undefined

2012-06-11 Thread vineet semwal
n Mon, Jun 11, 2012 at 12:16 PM, vineet semwal > wrote: >> thanks martin,i initially assumed both are supported now :) ,i looked >> at wiki ajax page again ,also i had a look at how ajaxlink is >> generating script so i have now improved my js function ,now i am not >&

Re: References not loading correctly. Wicket 1.5.7

2012-06-12 Thread vineet semwal
htbox.js >>> ---libjs-1.6.js >>> ---mylibsJs-core.js >>> ---com.company.web.css (directory) >>> ---wicketIsAwesome.css >>> ---commonCss.css >>> ---jqu.jqz.css >>> >>> >>> Anyone? >>> >>> >>> >>> >>> >>> >>> >> >> >> >>-- >>Martin Grigorov >>jWeekend >>Training, Consulting, Development >>http://jWeekend.com >> >>- >>To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >>For additional commands, e-mail: users-h...@wicket.apache.org >> > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thanks, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: on click on a label in a listview - onClicke method never used localy

2012-06-14 Thread vineet semwal
-method-never-used-localy-tp4649981.html > Sent from the Users forum mailing list archive at Nabble.com. > > --------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users

Re: on click on a label in a listview - onClicke method never used localy

2012-06-14 Thread vineet semwal
currently what you have done is you have defined *your own* method so it never gets used up unless you yourself use it. On Thu, Jun 14, 2012 at 9:05 PM, vineet semwal wrote: > add ajaxeventbehavior  to the label > > > On Thu, Jun 14, 2012 at 8:57 PM, oliver.stef wrote: >> H

Re: validation without form

2012-06-14 Thread vineet semwal
ers forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wick

Re: validation without form

2012-06-14 Thread vineet semwal
commands, e-mail: users-h...@wicket.apache.org > -- thanks, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: validation without form

2012-06-19 Thread vineet semwal
/apache-wicket.1842946.n4.nabble.com/validation-without-form-tp4649992p4650062.html > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wi

Re: DynamicImageResource in ajax panel

2012-06-20 Thread vineet semwal
l > Sent from the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thanks, Vineet Semwal --

Re: Not getting the Post Parameter values in Iframe (wicket Page)

2012-06-20 Thread vineet semwal
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thanks, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: validation without form

2012-06-20 Thread vineet semwal
rom the Users forum mailing list archive at Nabble.com. > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > -- thanks, Vineet Semwal --

Re: How to get request page in Wicket 1.5

2012-06-21 Thread vineet semwal
mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > -----

Re: How to get request page in Wicket 1.5

2012-06-21 Thread vineet semwal
x27;s metadata > > @Vineet, Thomas, Andrea: do you want to contribute this ? > > On Thu, Jun 21, 2012 at 10:52 AM, vineet semwal > wrote: >> i can think of these 2 ways.. >> >> 1) you can create a requestcycle listener which >> onRequestHandlerResolved checks if it&#x

Re: How to get request page in Wicket 1.5

2012-06-21 Thread vineet semwal
ditional commands, e-mail: users-h...@wicket.apache.org > -- thanks, Vineet Semwal - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

wrote a new repeater which can add or remove rows without the need to re-render the whole of it

2012-07-09 Thread vineet semwal
ticle http://wicketinaction.com/2008/10/repainting-only-newly-created-repeater-items-via-ajax/ suggestions/improvements/advices welcome It can undergo changes currently as it is in experimental stage. -- thanks, Vineet Semwal ---

Re: Repeating TextFields

2012-08-06 Thread vineet semwal
..@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > - &

Re: Repeating TextFields

2012-08-06 Thread vineet semwal
click/onscroll to see new rows added like what you see in social networking applications... On Mon, Aug 6, 2012 at 3:34 PM, Martin Grigorov wrote: > On Mon, Aug 6, 2012 at 12:52 PM, vineet semwal > wrote: >> actually with quickview you can add/remove any number of items but i &

Re: Repeating TextFields

2012-08-06 Thread vineet semwal
sorry i misread again :),i assumed you meant for more than one item the parent has to be repainted . On Mon, Aug 6, 2012 at 3:45 PM, vineet semwal wrote: > quickview *can* add/remove any number of items without the need to > repaint the parent of repeater,check the examples in the qui

Re: Calling isPageStateless() can mess up the statelessness of a page

2012-08-10 Thread vineet semwal
;> Regards, >> Bertrand >> >> - >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >>

<    1   2   3   4   >