Re: Wicket Application on GoDaddy

2012-04-03 Thread anantasthana
You will have to set up a redirect through Apache(Not apache tomcat) or IIS webserver You can set a virtual redirect which redirects all requests to mydomain.com/myApp to mydomain.com:8080/webappName/ I can not remember the exact configuration but I am sure you will be able to find them. If

Re: Customizing Error / Validation messages

2011-11-14 Thread anantasthana
14, 2011 1:09 AM Hi, On Mon, Nov 14, 2011 at 8:50 AM, anantasthana lt;anant.asty@gt; wrote: I am using pattern validator and i on a page named VendorPage and have a properties file with keys pattern= Zip I am using the pattern validator to validate zip code so i want the message to say

Re: Customizing Error / Validation messages

2011-11-14 Thread anantasthana
Here is the Log messages I am not sure what it is doing DEBUG - AbstractShiroFilter- No FilterChainResolver configured. Returning original FilterChain. DEBUG - ponentStringResourceLoader - component: '[TextField [Component id = zip]]'; key: 'zip.PatternValidator' DEBUG -

Customizing Error / Validation messages

2011-11-13 Thread anantasthana
I am using pattern validator and i on a page named VendorPage and have a properties file with keys pattern= Zip I am using the pattern validator to validate zip code so i want the message to say ... is not a valid zip I dont know if i am doing smoe thing wrong or missing some thing but i can not

Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread anantasthana
David, I would be extremely interested in your work. I have been trying to integrate JqUery plugins with wicket and not have had much success. The answers from this post will surely be helpful -- View this message in context:

Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread anantasthana
I tried to integrate the JCaurosel and Ajax Vertical slider which is basically a lazy load scroll bar. I am still new to wicket and still learning new things every day so ther are alot of things I am still learning. -- View this message in context:

Vanishing Markup

2011-11-08 Thread anantasthana
I have a form that i make as an inner class of a panel. In the Page i have a table containing the form components. When the form renders the form components show up but the markup for the table vanishes. I would appreciate any help on this The Java code can be found at

Re: Vanishing Markup

2011-11-08 Thread anantasthana
Wow that was a really silly mistake i made. Thanks for the help that worked. cant believe i couldnt figure it out thanks again -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Vanishing-Markup-tp4017788p4018746.html Sent from the Users forum mailing list archive at

Mounting and displaying correct URL's

2011-11-04 Thread anantasthana
I am mounting url's like mountPage(ProductType/${Category},ProductTypePage.class) and i read the Parameter Category and pull the info from the database So if i am on the page for food the URL is /ProductType/Food now inside my application im using redirects which redirect to these pages by

Re: Mounting and displaying correct URL's

2011-11-04 Thread anantasthana
Thanks for the Quick and extremely helpful reply. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Mounting-and-displaying-correct-URL-s-tp3992126p3992140.html Sent from the Users forum mailing list archive at Nabble.com.

Re: setting and reading a JS variable from Wicket?

2011-11-03 Thread anantasthana
You can pass variables to wicket using wcall like: var wcall = wicketAjaxGet('${url}'+'?lat='+p.coords.latitude.toFixed(2)+'lon='+p.coords.longitude.toFixed(2)); now in my wicket web page i have a AbstractDefaultAjaxBehavior which receives this value i am embedding this url for the

HTML5

2011-10-31 Thread anantasthana
Hi, I was looking at a lot of new features of HTML5. I did see HTML 5 support was one of the things in the wicket wish list. Does any one have an idea of when and if wicket plans to support HTML5 ? It would be great if it did provide HTML5 support soon. -- View this message in context:

Re: HTML5

2011-10-31 Thread anantasthana
repisitory: https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/wicket-html5-parent I'm currently analyzing support for offline features and semantic support (microdata/scheme.org) and plan to work on it in near future. Regards, Marek On 10/31/2011 09:21 PM, anantasthana wrote: Hi, I

Re: HTML5

2011-10-31 Thread anantasthana
Thanks I really appreciate it ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HTML5-tp3961486p3961694.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: Request mapping

2011-10-21 Thread anantasthana
, Maybe you can use IndexedParamUrlCodingStrategy to solve your problem...? Regards, Ernesto On Thu, Oct 20, 2011 at 9:36 PM, anantasthana anant.a...@gmail.com wrote: I am trying to map my requests in a special way to achieve a very simple purpose say the root website is abc.com and has

Re: Request mapping

2011-10-21 Thread anantasthana
PM, anantasthana anant.a...@gmail.com wrote: I am trying to map my requests in a special way to achieve a very simple purpose say the root website is abc.com and has several users and each use has a home page , admin page , requests page etc let us asume we have uers user1 and user 2 i want

Re: Request mapping

2011-10-21 Thread anantasthana
, getApplication().getHomePage(), params); On Thu, Oct 20, 2011 at 10:36 PM, anantasthana anant.a...@gmail.com wrote: I am trying to map my requests in a special way to achieve a very simple purpose say the root website is abc.com and has several users and each use has a home page , admin page

Request mapping

2011-10-20 Thread anantasthana
I am trying to map my requests in a special way to achieve a very simple purpose say the root website is abc.com and has several users and each use has a home page , admin page , requests page etc let us asume we have uers user1 and user 2 i want the urls to be coded as abc.com/user1/admin