Google Map using Wicket

2015-07-02 Thread nazeem
. Regards Nazeem -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Google-Map-using-Wicket-tp4671468.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Google Map using Wicket

2015-07-02 Thread nazeem
Thank you for pointing. I found so many other projects which are good ones. But no way to reach these links from wicket site ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Google-Map-using-Wicket-tp4671468p4671476.html Sent from the Users forum mailing list

drop n drop

2014-04-15 Thread nazeem
Any suggestions for implementing drag and drop. Is there any thing in wicket 6. In our old project on wicket 1.4 we used wicket dnd (code.google.com/p/wicket-dnd/) to implement drag n drop. I dont see that active any more. So what is the best option ? I saw the wicket2-select project by igor

Re: drop n drop

2014-04-15 Thread nazeem
Thank you for the detail. Will use dnd pointed in the post. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drop-n-drop-tp4665408p4665424.html Sent from the Users forum mailing list archive at Nabble.com.

backspace - when not on focus in field

2014-03-12 Thread nazeem
I use lot of ajax to replace panels on user clicks so that user can drill down deep in to the page view. When using forms if the focus is not on text field or any form fields. hitting backspace takes the user all the way to the main page. How can i prevent this behavior ? naz -- View this

handsontable integration

2014-03-12 Thread nazeem
Has any one tried to use this http://handsontable.com/ for excel like grid editing ? Power users like excel like editing for bulk form processing. So I am trying to integrate some features like this. Any suggestions please ? Rendering i think will not be an issue, how to integrate with model for

Re: backspace - when not on focus in field

2014-03-12 Thread nazeem
Thanks Niranjan Swen, I managed to add this js to block backspace when not on focus on form fields. I believe this fix will not be required when we get Wicket 7 ajax history support ? -- View this message in context:

Re: double type text field - auto roundsoff

2014-02-27 Thread nazeem
No i don't have any initialised. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/double-type-text-field-auto-roundsoff-tp4664628p4664714.html Sent from the Users forum mailing list archive at Nabble.com.

Re: double type text field - auto roundsoff

2014-02-26 Thread nazeem
Changing the object type to Big Decimal solves this .. Still not clear how.. if any body knows any clue please let me know.. TextFieldBigDecimal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/double-type-text-field-auto-roundsoff-tp4664628p4664701.html Sent

Re: double type text field - auto roundsoff

2014-02-24 Thread nazeem
Today i noticed the same behaviour in another text field of type double. But on refresh the issue was not repeating. So.. any clue to trouble shoot this issue in this form ? where it is consistently reproduced. -- View this message in context:

Re: double type text field - auto roundsoff

2014-02-24 Thread nazeem
Here is the generated html input type=text id=txInput209 name=forceForm_body:plannedQty:txfCntr:txInput value=1 class=full-width On inspecting the DOM i see the set range text property set to setRangeText : setRangeText() If i remove the on blur event , the value remains as decimal, but

double type text field - auto roundsoff

2014-02-22 Thread nazeem
Hi I am having an issue with the Double text field which when keyed in for eg, 604.43 rounds of to 604. I am using the txField.add(new AjaxFormComponentUpdatingBehavior(onblur) { .. } . Inside this im doing validations, if error or no error I am repaining the text field. When repainting it the

Re: double type text field - auto roundsoff

2014-02-22 Thread nazeem
Hi Sven, I had used in other places, this is not the case. it works perfectly fine. I had tried that break point approach as well before posting, my setter is called with correct value. Only after the refresh or repaint in onBlur.. the value changes in the form itselfto 604. Now when i hit

Re: Wicket for Hybrid App

2013-03-28 Thread nazeem
My App is not static, I intend build some thing like this.. Phone gap + html + css + JS Bundled as Android App / iPhone App To start with need to be online, connect to the server using REST, synchronize the data and store in local db storage via phone gap api's. Now when offline, the App

Re: Wicket for Hybrid App

2013-03-26 Thread nazeem
That sounds interesting.. But im afraid it gets bigger in size, memory etc.. Need to try this.. But for now, I chose jQuery + REST to communicate to server for data and all other html, JS, css etc packaged as phone gap app. So the desktop version of the client is Wicket and mobile version in

Wicket for Hybrid App

2013-03-22 Thread nazeem
? If so how.. Regards Nazeem -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-for-Hybrid-App-tp4657458.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe

Re: Wicket for Hybrid App

2013-03-22 Thread nazeem
Hi Thanks for your input. I understand what you meant, to serve pages from the server directly. So the phone gap will be trying to launch some thing like http://app.company.com/demo/... . I agree, can be done this way. But one important criteria or requirement, is that the app should work

Re: reload model on render

2012-03-04 Thread nazeem
Yes I understand your point. But i have to get the object manipulate it then only feed it to the label. In this case i cannot pass the model directly. For this i had to workaround this problem bit differently. I had moved the section to a fragment and then inside onBeforeRender i am

reload model on render

2012-03-03 Thread nazeem
Hi I have a content area in which I am displaying say PanelA. In PanelA I have a link to navigate to PanelB. When I click that I replace the content area with PanelB. When I construct PanelB i pass the instance PanelA via PanelA.this so that PanelB can show a link to go back to PanelA. When the

Re: wicket appl architecture

2012-01-23 Thread nazeem
This is an interesting article referring to the Linked In tech team experience and how they are addressing using client side template.. http://blogs.developerforce.com/developer-relations/2011/12/thoughts-on-ui-architectures.html Thoughts on UI Architecture In the above article he refers to

Re: wicket appl architecture

2012-01-18 Thread nazeem
Russell Pitre wrote Separate front-end sounds fine. Use a REST architecture with JSON as the data exchange format. I'm pretty Spring MVC supports this through the use Jackson JSON library. Its something to add to your list of possible options. Wicket is component based and differs from

wicket appl architecture

2012-01-17 Thread nazeem
else. Please suggest. Also advice on the libraries that will help me get there.. regards, nazeem -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-appl-architecture-tp4305917p4305917.html Sent from the Users forum mailing list archive at Nabble.com

Re: WebResource in Wicket 1.5

2011-11-30 Thread nazeem
Thanks Vineet, I managed to change WebResource to ByteArrayResource. But I am stuck with a problem in the url for json constructed. CharSequence dataPath = RequestCycle.get().urlFor(OpenFlashChart.this, IResourceListener.INTERFACE); String url =

Re: WebResource in Wicket 1.5

2011-11-30 Thread nazeem
Yes, I am not yet thru with my wicket 1.5 migration. so was changing my 1.4 version and testing the same. I think its some thing to do with apache proxy. If i directly access the ipaddress:8080/erp it works but when i access thru the apache ipaddress/erp i face this problem. my apache config

Re: duplicate form - js modal window

2011-11-29 Thread nazeem
I had worked around the problem by modifying the js to not to duplicate content and instead to remove the original content and show in popup. Later on closing it puts back the content on the same node. But in any case, i would like to know how to convert a component to rendered html string.

Re: duplicate form - js modal window

2011-11-29 Thread nazeem
thank u. will go thru the same. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/duplicate-form-js-modal-window-tp4110289p4118440.html Sent from the Users forum mailing list archive at Nabble.com. -

intercept client request

2011-11-27 Thread nazeem
In the server side, i need to know who is performing this action to do auditing and other related services. So I need to use a thread local variable that will be available at any place in the chain of request until response is sent back. But I do not know how to set this thread local variable at

Re: repeated PageExpired error

2011-11-26 Thread nazeem
Not able to reproduce in quick start. will try and update ASAP -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/repeated-PageExpired-error-tp4106667p4110276.html Sent from the Users forum mailing list archive at Nabble.com.

duplicate form - js modal window

2011-11-26 Thread nazeem
Hi I have a simple form, which works well when embedded in any page. The same content when opened as js popup using javascript the content is duplicated and shown as popup. That means i have two forms in page with the same id, fields, button etc. The java script duplicates the content and shows

Re: duplicate form - js modal window

2011-11-26 Thread nazeem
Hi [RESUBMITTING AS I HAD TO EDIT] I have a simple form, which works well when embedded in any page. The same content when opened as js popup using javascript the content is duplicated and shown as popup. That means i have two forms in page with the same id, fields, button etc. The java script

repeated PageExpired error

2011-11-25 Thread nazeem
I am upgrading my application to wicket 1.5 from 1.4, the server starts up well and then when i hit the url my home page, sign in page is called and i can see its getting rendered. But goes back to Page Expired error page. This happens repeatedly. Hence I am not able to proceed with the migration.

WebResource in Wicket 1.5

2011-11-24 Thread nazeem
I have a open flash chart implementation following the link below. https://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html But when i upgrade to wicket 1.5 im stuck at this.. In class OpenFlashChart, WebResource jsonResource = new WebResource() { @Override public

wicket - form debug

2011-10-18 Thread nazeem
I have simple case, which worked for me in another project but failed in the current one. Both use same set of libraries. I am doing something wrong, could not trace it down. Please help to debug this. I am designing a reusable form textfield component, which will have provision to show feedback

Re: wicket - form debug

2011-10-18 Thread nazeem
Thanks Igor. I was mislead by seeing the generated html. In the rendered html the textfield is inside, but from the code, I am adding the MyTextField to the border and not to the form. In MyFormBorder I am adding the contents to the form, will this not solve ? form.add(getBodyContainer()); I

Re: wicket - form debug

2011-10-18 Thread nazeem
Wow ! it worked. Thank you so much. So i did not understand the borders well.. :) I am developing a component library on wicket and I enjoy doing it, and it gives great productivity boost to the developers and helps to get the look and feel consistent. Thank you so much for the support. -- View

Mouse click position

2010-09-16 Thread nazeem
Hi, I would like to show small popup relative to the position of mouse click. Especially when user click a link, I need to show list of options and allow user to click on one of them. For this I need to know the position of the link and mouse click so that I can position the popup accordingly.

Re: Mouse click position

2010-09-16 Thread nazeem
Yes, I agree it is more of javascript. But in my code I am trying to use only java scripts bundled in wicket. Did not want to add more java script libraries to keep it simple. I use attribute modifier for all dynamic behaviour's, similarly I am trying to open a window popup but instead of

component .... not found on page

2010-02-02 Thread Nazeem
I get the following error on first time i visit the page or panel. But on reload, i.e, reverting back to original url localhost:8080/app everything works normal. SortableDataProviderOrder sdp = new SortableDataProviderOrder(filter.getQuery(), Order.class); sdp.setInitSortBy(ordr.orderId

tabbed pages not panels

2008-05-31 Thread nazeem
Does wicket have inbuilt support for tabbed pages ? not tabbed panels. Please point me to if available -- View this message in context: http://www.nabble.com/tabbed-pages-not-panels-tp17582637p17582637.html Sent from the Wicket - User mailing list archive at Nabble.com.