Re: What sort of page variables are stored in page map?

2012-08-23 Thread kshitiz
Hi, Thanks for the quick reply. So that means whatever we define for a page will get serialized and stored in page map. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/What-sort-of-page-variables-are-stored-in-page-map-tp4651460p4651462.html Sent from the Users foru

size method is being called multiple times in dataview

2012-08-30 Thread kshitiz
Hi, I am trying to implement dataview: final IDataProvider postDomainDataProvider = new IDataProvider() { /** * */ private static final long serialVersionUID = 1L;

Re: size method is being called multiple times in dataview

2012-08-31 Thread kshitiz
Hi, Sorry for replying late ..:(...I am using wicket 1.5. I dont know what causing this issue...but I am looking for other way around to solve my purpose... -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/size-method-is-being-called-multiple-times-in-dataview-tp4651

Open link in new tab which are part of a label..

2012-09-13 Thread kshitiz
Hi Can anyone tell me how to make a link open in new tab which is part of a label like a paragraph? I cant usetags so how would I make sure that links which are part of that label open in new tab? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Open-link-in-new-

Re: Open link in new tab which are part of a label..

2012-09-13 Thread kshitiz
Hi, Thanks for the reply. I knew about target attribute abut was not able to figure out how to use it for links which are part of a paragraph. But it just clicked my mind to add it after reading your response...:) : text.replaceAll("(\\A|\\s)((http|https|ftp|mailto):\\S+)(\\s|\\z)", "$1 \"$2\" ta

Need help in refreshing panel..

2012-09-16 Thread kshitiz
Hi, I am facing a problem in refreshing a panel. The requirement is I have a panel A which has Panel B. Panel A carries list of LDM which is being passed to Panel B. public class PanelA { private LoadableDetachableModel> *detachablePostDomainList *= new LoadableDetachableModel>() {

Re: Need help in refreshing panel..

2012-09-16 Thread kshitiz
The problem is now even more complicated as PanelA is not getting refreshed from PanelB at once. But when I do some operation in PanelB again, PanelA is then refreshed... Here is PanelB: Public class PanelB{ public PanelB(PanelA panelA) { PostDeleteButtonPanel postDeleteButtonPanel = new PostDe

Re: Need help in refreshing panel..

2012-09-16 Thread kshitiz
Hey...that workedbut still I didn't understand how it worked. I am not calling detach method in ajaxPostSubmitButton of PanelA. So how come it is getting refreshed. I am just trying to understand the concept -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Need-he

Multiple select drop down in Wicket

2013-01-14 Thread kshitiz
Hi, I am trying to implement multiple select drop down in Wicket. I am able to create multi select drop down view using bootstrap but I am not able to get how to relate selected options with IModel of drop down component? Is there any possibility in Wicket? -- View this message in context: htt

Using tomcat server in wicket application

2013-02-11 Thread kshitiz
Hi, I have a wicket application running fine using Jetty server. But I need to deploy the application in tomcat server. As tomcat is not able to find appropiate resources, how to configure my application to make it compatible for tomcat? -- View this message in context: http://apache-wicket.1

Problem in running wicket app using mvn jetty:run

2013-02-12 Thread kshitiz
Hi, I am trying to run wicket app using the command mvn jetty:run but I am getting the error *java.lang.NoClassDefFoundError: org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow$WindowClosedCallback* Now I this may be because it is not able to find all dependencies present in lib fo

Regarding using jetty 6 in wicket

2013-02-12 Thread kshitiz
Hi, I am trying to use Jetty 6 in wicket application as it is the requirement as per jelastic hosting. They supports jetty 6. So, I was going through the link https://cwiki.apache.org/WICKET/jetty6-testing.html . I downloaded jetty 6.1.23 jar

Regarding Facebook login API in wicket 1.5

2013-02-21 Thread kshitiz
Hi, I am trying to implement Facebook connect in my application as given in https://cwiki.apache.org/WICKET/adding-facebook-connect.html. I have copied the same code in my application but when hosted, I am not able to see facebook login UI in the application. I have not registered the application

Re: Regarding Facebook login API in wicket 1.5

2013-02-23 Thread kshitiz
I was looking for more approaches for Facebook login and someone told me about this https://github.com/wicketstuff/core/wiki/Facebook. Has anyone tried out that API? I am really looking for a good solution for integrating wicket app with Facebook. Please tell me the available approaches. -- View

Re: Regarding Facebook login API in wicket 1.5

2013-02-23 Thread kshitiz
Yes...actually there is something that I found...https://cwiki.apache.org/WICKET/adding-facebook-connect-via-javascript-sdk.html. It is using restFB. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Regarding-Facebook-login-API-in-wicket-1-5-tp4656656p4656718.html Sen

Re: Regarding Facebook login API in wicket 1.5

2013-02-23 Thread kshitiz
Thank you very much for the approach. With your suggestions and http://javajing.com/2012/12/12/scribe-facebook-oauth.html, I am able to make out facebook login :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Regarding-Facebook-login-API-in-wicket-1-5-tp4656656p465

Re: Regarding Facebook login API in wicket 1.5

2013-02-23 Thread kshitiz
No..actually that was causing some issues. So I followed your suggestions like I posted. One thing I would like to ask is in Scribe, how to get specific Facebook information like name or first name. getBody gives entire information. Do I need to parse that or there is any shortcut? -- View this

<    1   2