Re: upgrade to wicket 7.2 append javascript to AjaxRequestTarget

2016-04-28 Thread fachhoch
the issue is due to a bug in my javascript , but wicket 6 never complained about this, wicket 7 does it. Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/upgrade-to-wicket-7-2-append-javascript-to-AjaxRequestTarget-tp4674447p4674483.html Sent from the Users

upgrade to wicket 7.2 append javascript to AjaxRequestTarget

2016-04-26 Thread fachhoch
I upgraded from 6.19 to 7.2. append javascript to ajaxrequesttarget results error in client side Ib54b:1 Wicket.Ajax: Wicket.Ajax.Call.processEvaluation: Exception evaluating javascript: TypeError: Cannot read property 'toUpperCase' of undefined, text:

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-25 Thread fachhoch
Yes, Thank you . I will try websocket. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/open-connection-to-async-servlet-and-initiate-wicket-ajax-request-results-ComponentNotFoundException-tp4674357p4674416.html Sent from the Users forum mailing list archive at

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-25 Thread fachhoch
Hi Martin, Before adding the new request I find the previous request and call complete on that and if user closes browser or logs out , the request times out and gets closed. There will be just one request per user at any given time.

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-22 Thread fachhoch
I enabled log info org.apache.wicket.protocol.http.RequestLogger, logs show different url in case of error. -- View this message in context:

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-22 Thread fachhoch
This error happens only when deployed to staging and not in development box, I cannot run this in debug mode to figure out why only sometimes it fails, is it possible to debug this through logs? I tried log debug for org.apache.wicket.request.IRequestHandler but nothing shows up, is there a

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-21 Thread fachhoch
MessagePanelPolling function is called through a wicket page, the wicket page has an active ajax call to the async servlet, public BasePage(PageParameters pageParameters) { super(pageParameters); add(new MessageCheckBehaviour()); } static

Re: open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-21 Thread fachhoch
This is the javascript file rendered by wicket page, this opens a connection to the async servlet, page has several ajax links, clicking on ajaxlinks updates dom, and sometimes wicket throws ComponentNotFoundException. Initially tried calling MessagePanel.longPoll(data) from wicket page with

open connection to async servlet and initiate wicket ajax request, results ComponentNotFoundException

2016-04-21 Thread fachhoch
I am trying to add server push using javascript longpolling and async servlet, a self invoking javascript function makes ajax request to this async servlet , there by keeping the connection open, when this connection is open and a wicket ajax request is initiated, its sometimes failing with

wicket 6.19, url encryption, session invalidate , redirect to wicket page

2015-05-14 Thread fachhoch
wicket 6.19 url encryption, after user logout, redirect to new WicketPage() is failing with http 404 error (page not found) as session is destroyed and key for encryption was in session which is no more available. as per documentation (KeyInSessionSunJceCryptFactory)

wicket atmosphere broadcast to all except for orign page

2015-02-23 Thread fachhoch
I am trying to use wicket atmosphere, I want to broadcast msg for all the resources except for the one which broadcasted the msg, please advice how to exclude a resource . In a page on click of a link I call Event.get().post and this same page has a public method with

jqueryuidatepicker Wicket.Ajax: FunctionsExecuter.processNext: TypeError: Cannot read property 'indexOf' of undefined

2014-12-04 Thread fachhoch
getting this error Wicket.Ajax: FunctionsExecuter.processNext: TypeError: Cannot read property 'indexOf' of undefined panel has a text-field onDomReady I calling jqueryui.datepicker() function to modify this text-field. Any ajax updates after clicking on the calendar icon or entering text

Re: jqueryuidatepicker Wicket.Ajax: FunctionsExecuter.processNext: TypeError: Cannot read property 'indexOf' of undefined

2014-12-04 Thread fachhoch
It my javascript issue not with wicket. I resolved it. Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jqueryuidatepicker-Wicket-Ajax-FunctionsExecuter-processNext-TypeError-Cannot-read-property-indexOf-d-tp4668609p4668610.html Sent from the Users forum

Re: wicket atmosphere not updating the page

2014-09-05 Thread fachhoch
I tried with wicket 6.17.0, IE 9 does not show the modal window, chrome,firefox works fine. IE console error msg below. It fails in method Wicket.Xml.parse(data); Attached the quickstart myproject.zip http://apache-wicket.1842946.n4.nabble.com/file/n4667366/myproject.zip responde body

Re: wicket atmosphere not updating the page

2014-09-04 Thread fachhoch
I have quickstart with 6.12.0 could not reproduce there, I also tried setResponsePage instead of adding component to target in the subscribe method, noticed the same 'bookmarkable' in the url ending up with resource not found page. -- View this message in context:

Re: wicket atmosphere not updating the page

2014-09-04 Thread fachhoch
I tried some tests , 1. redirect to a different page, using setResponsePage works fine. 2. redirect to same page, ends with resource not found page, reason(it stripping servlet-mapping str) servlet mapping configration atmosphere changes url to http://localhost:8080/artms/test from

Re: wicket atmosphere not updating the page

2014-09-04 Thread fachhoch
log output from my app and quickstart, my app does not work quick start works my app quickstarts -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-atmosphere-not-updating-the-page-tp4667321p4667348.html Sent from the Users forum mailing list archive at

Re: wicket atmosphere not updating the page

2014-09-04 Thread fachhoch
logs from my app and quick start my app quick start -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-atmosphere-not-updating-the-page-tp4667321p4667349.html Sent from the Users forum mailing list archive at Nabble.com.

Re: wicket atmosphere not updating the page

2014-09-04 Thread fachhoch
I am able reproduce this issue in a quickstart, The issue happens in bookmarkable pages, any bookmarkable page, response to atmosphere request fails. below is the error from browser console. Attached the quickstart.zip myproject.zip

wicket atmosphere not updating the page

2014-09-03 Thread fachhoch
I am trying to use wicket-atmosphere (0.18) in wicket 6.12.0, on post, subscribe method is getting called but any component I add to target is not updating in the page, ajax debug window shows empty ajax-response, and browser console has this error.

Re: identify if request is from AbstractAjaxTimerBehavior in /ajax/call/beforesend

2014-08-28 Thread fachhoch
Thank You. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/identify-if-request-is-from-AbstractAjaxTimerBehavior-in-ajax-call-beforesend-tp4667186p4667225.html Sent from the Users forum mailing list archive at Nabble.com.

identify if request is from AbstractAjaxTimerBehavior in /ajax/call/beforesend

2014-08-27 Thread fachhoch
how to identify the ajax request originated due to AbstractAjaxTimerBehavior in /ajax/call/beforeSend event? I am adding AbstractAjaxTimerBehavior to my page and would like to identify in beforesend function if the request originated due to timer in AbstractAjaxTimerBehavior ? --

wicket 6 calling javascript func with parameter in OnDomReadyHeaderItem fails in IE9

2014-08-11 Thread fachhoch
In my component I am adding a script to OnDomReadyHeaderItem this script is call to a function with parameter In wicket ajax debug window I see this error I tried without parameter it works fine, and with parameter in chrome works fine. I am using IE 9 it fails in IE 9 when js has a

Re: tinymce textarea in a modal window not letting to type

2014-01-23 Thread fachhoch
I created a quick start project, first time tinymce editor shows up fine, second time cannot type into editor. myproject.zip http://apache-wicket.1842946.n4.nabble.com/file/n4663912/myproject.zip Please advice. should I create a bug report for this. -- View this message in context:

Re: tinymce textarea in a modal window not letting to type

2014-01-22 Thread fachhoch
Sorry for replying to this very old thread , I am having a similar issue, before modalwindow.show I am constructing new instance of my panel call setContent , so every time modalwindow.show is called it displays a new instance of my panel, can you please give me the script which should be

Re: tinymce textarea in a modal window not letting to type

2014-01-22 Thread fachhoch
here is my code trying with tinymce and modalwindow wicket and tinymce 6.12.0 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/tinymce-textarea-in-a-modal-window-not-letting-to-type-tp1886534p4663886.html Sent from the Users forum mailing list archive at

wicket event /ajax/call/complete check if ajax response is a redirect to a new page

2014-01-21 Thread fachhoch
I want to find if the ajax response is to redirect to a new page ? I use ajax buttons even for redirect to a new wicket page, In the callback function to Wicket.Event.subscribe('/ajax/call/complete' I want to find if the ajax response is to redirect to a new page ,callback function parameter

Re: jquery dialog onclick AjaxButton

2013-07-14 Thread fachhoch
I am not java script expert please advice is there anything wrong with the script ? sdimilar script works for ajax link but for submit buttons its not please advice . Thanks -- View this message in context:

jquery dialog onclick AjaxButton

2013-07-07 Thread fachhoch
I want to show a jquery dialog instead of confirm for which I am adding AjaxFormSubmitBehavior with my script, here is generated java script I click on the button dialog shows up , If I click OK the dialog should close and Ok function should be called but dialog is getting closed and

using jquery dialog instead of alert

2013-07-04 Thread fachhoch
I am trying to use jquery dialog instead of javascript alert, I am using the jquery dialog script and inserting wicket onclick script in the OK :function. In java I am replacing the string myscript with wicket ajax script. I tested, it works ,please advice if this is right way to do?

append javascrit to AjaxTRequestTarget for entire application

2013-06-27 Thread fachhoch
I want to add some jquery java script for every AjaxRequestTarget, I dont want to repeat this code all over , is there a way to add my java script to the target instance in a global way? -- View this message in context:

wicket head places script before the script tags

2013-06-05 Thread fachhoch
I am trying to use wicket head tag containg some jquery script, when the page rendered wicket is placing this script on top of jquery script tag , I am using wicket 1.4.21, in this case my script will never be executed, please advice. -- View this message in context:

Re: adding jsf to wicket app

2013-05-13 Thread fachhoch
I just started only way I saw is to copy my basepage.html and replace wicket child with jsf tags with ui:insert, did not test it yet, I am wondering If I can use something like WicketJspResolver , is there anything ? -- View this message in context:

version of jquery in org.wicketstuff.jquery

2013-05-08 Thread fachhoch
some of my jquery plugins are not working, I am using wicket 1.4.21 and wicketstuff jquery 1.4.21. What version of jquery this comes with? , can I upgrade the jquery.js file to newer version ? -- View this message in context:

custom button in tinymce

2013-05-07 Thread fachhoch
I am using wicket tinymce .I want to add a custom button to tinymce which I can do using tinymce init script , i also want to know if user clicked on this button when the form is submitted at the server side any suggestion on how to ? -- View this message in context:

Re: wicket 1.4.20 ajax download link

2013-04-01 Thread fachhoch
ajaxdownload from page history which works with 1.4 here is the code I have a ListView in a modalwindow , AJAXDownload behaviour is added to the ListItem, this list item has ajaxlink which has to start download , on click of this linkmodawindow is closed here is the code as I

wicket 1.4.20 ajax download link

2013-03-29 Thread fachhoch
In wicket 1.4.20 is it possible to download and do an ajaxupdate , I have a modal window , this has some links each of this link is for download so they are Link and not AjaxLink. I want to close the modal window after users clicks on the download link, I saw this link

check load

2013-03-14 Thread fachhoch
I use aws load balancer to load balance my app running in aws cloud ,the load balancer is configured to launch a new server instance if request is taking more than the specified time . I need advice on how to check the load on the server, should it be like number of session ? total sessions

clean up all threadlocal objects

2013-03-13 Thread fachhoch
I want to clean up all my threadlocal values at the end of request, any suggestions where I can plug code to cleanup all my threadlocals ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/clean-up-all-threadlocal-objects-tp4657222.html Sent from the Users forum

download indicator for long downloads

2013-03-07 Thread fachhoch
I have a download link, clicking on this generates a word documents and starts downlaod, the word generation takes time , is there any way I can put an indicator using java script , jquery ... as this link has to download I am using Link not AjaxLink any suggestions ? I am using wicket 1.4.20

using static fileds in a page

2013-03-06 Thread fachhoch
to run my lengthy operation, my pages needs, I am using a static filed which is a proxy of my service in the page class itself, on ahjaxevent I use this proxy to get my data, this proxy times out based on configration to avoid wicket freezing for lengthy operation. Is it advised to have static

idle timeout javascript when page has a modal window or tinymce editor

2013-03-05 Thread fachhoch
I am using jquery plugin to detect idle time or inactivity and signout the user , the plugin I use works fine, but the problem is with iframes, I have lot of modal windows and tinymce editor in my pages and when user is either typing in tinymce editor or clicking on a modal window whihc

jquery dialog and wicket modal window

2013-03-01 Thread fachhoch
jquery ui dialog does shows up behind wicket modal window. I am using wicket 1.4.21 when a modal window is open , next If I click a link which opens jquery dialog it always open behind modalwindow,I can see the dialog only If I close the modal window. -- View this message in context:

Re: update panels inside webmarkupcontainer

2013-01-12 Thread fachhoch
Plz help me understand this , as the page is stateful will it keep references to all the new MyContainer(id)? clicking on this link creates a new container everytime, if all the Mycontainer instances are gc collected not a problem but if the instances are stored it will definetly increase

Re: update panels inside webmarkupcontainer

2013-01-12 Thread fachhoch
Thanks for your reply, I am assuming if I use component.replacewith will the old component is replaced with the new componenet and the old is no more in the component tree so will be gc colected , sure I am not holding any references top it. second if I move out of this page to some other

Re: update panels inside webmarkupcontainer

2013-01-11 Thread fachhoch
I have A Container I added it to the page constructor using on ajaxrequest after the above code will the oldComponent be garbage collected as its no longer being used? -- View this message in context:

update panels inside webmarkupcontainer

2013-01-10 Thread fachhoch
I have a container with two fragments these fragments are added with some conditional logic, if the condition is not satisfied I add empty panel on ajax update of this container I wan to call the logic again and add the right component either fragment or empty panel please advice how to? I can

Re: update webmarkupcontainer from fragment , container onBeforeRender() method is not being called

2012-11-20 Thread fachhoch
found the issue , its becasue of not using onConfigure or callOnBeforeRenderIfNotVisible -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/update-webmarkupcontainer-from-fragment-container-onBeforeRender-method-is-not-being-called-tp4653960p4654030.html Sent

update webmarkupcontainer from fragment , container onBeforeRender() method is not being called

2012-11-16 Thread fachhoch
I have a fragment with a link inside, onclick of this link I want to update a webmarkupcontainer in my page for which I add this container to the target. surprisingly its not calling onBeforeRender() method of this container, in ajaxdebug window I see the container mark in the response ? I

wicket 1.5 confirmation ajaxbutton

2012-07-12 Thread fachhoch
I used confirmation for onclick of ajax button in 1.4 it worked when I try the same with 1.5 it does not work. here is the code -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-1-5-confirmation-ajaxbutton-tp4650460.html Sent from the Users forum mailing list

Re: After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-06-14 Thread fachhoch
I am still facing this problem root cause of my issues are database related, it takes time time to respond what can I do to avoid pagemap lock? can I set timeout for all my pages in a global way ? Please advice. I saw this post

Re: After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-06-14 Thread fachhoch
by default its supposed to timeout after 1 minute , but whenever my pagemap is locked only way to call new resource is close the browser relogin as if new session. Please advice me. -- View this message in context:

Re: After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-06-14 Thread fachhoch
if my dboperation is pending and taking long time, there is now way I can call another resource ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/After-1-minute-the-Pagemap-null-is-still-locked-by-Thread-how-to-kill-this-request-tp4565091p4649973.html Sent from

Re: After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-06-14 Thread fachhoch
I cannot run this in seperate thread becasue this could happen in anypage not just one page , all my pages uses db operations and for some reason once in a while some db operation takes time and the page is stuck.Please tell more on using a different pagemap . I encode all my urls. can I

example to avoid pagemap locks

2012-06-13 Thread fachhoch
One of my page is a search page this sometimes gets stuck because the users search criteria is time consuming and I get page map is still locked error. To avoid this I want to modify this page to use a job to execute the search in a thread and a timer to check every 5 second 's if search is

Re: wicket yui 1.5.5

2012-04-25 Thread fachhoch
The latest version of wicketstuff yui is 1.4.20 , will this work with wicket 1.5 ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-yui-1-5-5-tp4584353p4586092.html Sent from the Users forum mailing list archive at Nabble.com.

Re: CryptoMapper - Error decoding text

2012-04-25 Thread fachhoch
I am getting the same error , I am trying to migrate to wicket 1.5.5, is there a fix for this ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/CryptoMapper-Error-decoding-text-tp4034573p4586850.html Sent from the Users forum mailing list archive at Nabble.com.

Re: CryptoMapper - Error decoding text

2012-04-25 Thread fachhoch
I could not reproduce with the quick start , it works in quick start I also tried with 1.5.1 still I could not produce it , not sure why my app is getting error. -- View this message in context:

wicket yui 1.5.5

2012-04-24 Thread fachhoch
I am upgrading my project to 1.5 , I use wicketstuff yui, is there 1.5 release for yui ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-yui-1-5-5-tp4584353p4584353.html Sent from the Users forum mailing list archive at Nabble.com.

Re: After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-04-18 Thread fachhoch
If a page is stuck with this error , is there any way I can identify this and throw a RestartResponseAtInterceptPageException exception to error page ? I am using wicket 1.4.12 -- View this message in context:

Re: After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-04-18 Thread fachhoch
here is stack trace , with this please help me identify the thread causing the lock, my applciation is deployed in weblogic. I assume once the thread is identified I have to use weblogic admin console to kill this particular thread ? -- View this message in context:

After 1 minute the Pagemap null is still locked by: Thread how to kill this request ?

2012-04-17 Thread fachhoch
I need to handle this , I know this is asked several times in forums , the solutions suggested I cannot apply as this happens once in while and I dont have steps to reproduce this , this happens in page 1 , page2 etc , but not always in page1 or page2 , its happens if database for some

Re: modal window takes very long time to close

2012-02-23 Thread fachhoch
should I add the behaviour to the page or to the modalwindow ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/modal-window-takes-very-long-time-to-close-tp4377803p4415330.html Sent from the Users forum mailing list archive at Nabble.com.

Re: modal window takes very long time to close

2012-02-13 Thread fachhoch
any help with this , My modal window is taking too long to close. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/modal-window-takes-very-long-time-to-close-tp4377803p4384240.html Sent from the Users forum mailing list archive at Nabble.com.

Re: modal window takes very long time to close

2012-02-11 Thread fachhoch
Yes the page has lot of ajax links . -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/modal-window-takes-very-long-time-to-close-tp4377803p4379544.html Sent from the Users forum mailing list archive at Nabble.com.

modal window takes very long time to close

2012-02-10 Thread fachhoch
I am using wicket 1.4.12 , sometimes my modal windows takes very long time to close , there is no code called when modalwindow is closed no ajax updates to the page , what can cause modal window to hang ? It happens in all browsers it happens only some times . -- View this message in context:

find object causing issue with serializing

2012-01-20 Thread fachhoch
I am getting this error I enabledorg.apache.wicket debug , I dont see what object is causing issues with serializing , the logs does not say that , It says could not serilize the page but my page has lot of objects , please advice me how to find the object causing this issue. --

logging the page class name

2011-11-29 Thread fachhoch
I want to log all the pages users are viewing without any much detail just the page class name . is there any way I can get this without adding my own log statements in code ? -- View this message in context:

wicket push firefox and chrome shows error

2011-11-07 Thread fachhoch
I am using wicket push 1.4.8 . In firefox and chrome browsers I get this error (attached is the screen shot) , can you please tell me what this means and how to fix this ? http://apache-wicket.1842946.n4.nabble.com/file/n4013606/wicket-push.jpg here is the error -- View this message in

embed youtube player

2011-09-22 Thread fachhoch
I want to embed youtube into my page , for this I created a panel which implements IMarkupResourceStreamProvider, in method getMarkupResourceStream I am generating markup to embed video based on the selected video,as the markup is cached after the first time I always get the same video , so is

using saml2 for authentication

2011-07-20 Thread fachhoch
my application uses wicket authentication which it turn uses spring acegi security, now we along with our partner decided to use single sign on for which saml2 is proposed, I have to implement saml2 in my wicket application we will the service provider and our partners will be identity

exception-no clue for the cause

2011-07-05 Thread fachhoch
I see an exception from logs no clue what is the cause of this 2011-07-05 14:05:03,046 [[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR org.apache.wicket.RequestCycle - java.lang.NullPointerException at

Re: exception-no clue for the cause

2011-07-05 Thread fachhoch
Thanks for the reply ,can you tell me what could cause this ? Can I ignore this or this can cause issues ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/exception-no-clue-for-the-cause-tp3646873p3646914.html Sent from the Users forum mailing list archive at

Re: new user registration email verification

2011-06-28 Thread fachhoch
any suggestions ? Email verfication almost all aps needs this is there any generic way of doing this ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/new-user-registration-email-verification-tp3630379p3630679.html Sent from the Users forum mailing list archive at

Re: new user registration email verification

2011-06-28 Thread fachhoch
yes its nothing about wicket sorry,but please suggest me how do we implement this in general I posted it here because mine is a wicket app and other wicket users might have had a similar requirement . -- View this message in context:

jsp check AuthenticatedWebSession.get().isSignedIn()

2011-06-28 Thread fachhoch
I have very few jsp pages and for these pages I want to check that user is authenticated. I tried calling AuthenticatedWebSession.get().isSignedIn() and I getting this exception java.lang.IllegalStateException: you can only locate or create sessions in the context of a request cycle

disabled chek box form submit

2011-05-10 Thread fachhoch
can the disbaled checked check boxes be submitted with the form ? I have check boxes in my form, based on business logic some of the checked check boxes are disabled. when form is submitted I want to get all the checked disabled check boxes posted to the server ,please advice me how.

form in a modal-window form.findSubmittingButton() return's null

2011-05-03 Thread fachhoch
form inside a modal window when submitted, return's null for form.findSubmittingButton() I have several buttons in this form and I call different validations based on submitbutton , so I need to find which button was clicked. -- View this message in context:

eclipse,jetty,wicket

2011-04-15 Thread fachhoch
I am running my wicket app with jetty-maven-plugin from eclipse , when run in debug mode any change to .java file the changes are reflected in the app but if I change html the changes are not reflected, eclipse does not even say hot code replace failed , please help me. -- View this

Re: eclipse,jetty,wicket

2011-04-15 Thread fachhoch
resolved it I was running in deployment mode once I changed to development mode it works. Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/eclipse-jetty-wicket-tp3452526p3452635.html Sent from the Users forum mailing list archive at Nabble.com.

test pages with selenuim

2011-04-15 Thread fachhoch
I am trying to test my wicket application using selenuim , I had no success , did anybody try ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/test-pages-with-selenuim-tp3452652p3452652.html Sent from the Users forum mailing list archive at Nabble.com.

image in java script

2011-04-14 Thread fachhoch
I have a simple jquery function and it needs an image , right now I placed the image in webapp root and hadcoded the image path in jquery function including context root , please advice me how to use images in jquery functions ? -- View this message in context:

Re: fter 1 minute the Pagemap null is still locked by: Thread[[ACTIVE]

2011-04-05 Thread fachhoch
In other words I have a panel called OrderPanel this has a WebMarkupContainerajaxSpinner, AjaxFallbackDefaultDataTable orderConfirmation, AjaxSelfUpdatingTimerBehavior updateBehavior, In the constructor of the panel I instantiate all the above components and call set visible false on

Re: fter 1 minute the Pagemap null is still locked by: Thread[[ACTIVE]

2011-04-04 Thread fachhoch
Thanks for the reply , I will use FutureTask and can use future.isDone() to check if the search is complete and future.get() to get the results. In my case I use AjaxFallbackDefaultDataTable this uses a SortableDataProvider. Please advice me how to integrate future task and

Re: fter 1 minute the Pagemap null is still locked by: Thread[[ACTIVE]

2011-04-04 Thread fachhoch
please suggest me in case of datatable which uses sortabledataprovider how can I incorporate futuretask ? please advice me. for my thought I will have a panel which will hide its datatable initially and start a thread (futuretask) for loading data and will also have

fter 1 minute the Pagemap null is still locked by: Thread[[ACTIVE]

2011-04-03 Thread fachhoch
we have a complex search screen , right now the query behind the search is not tuned , sometimes for different combinations search takes very long time and I get [raw] Caused by: org.apache.wicket.WicketRuntimeException: After 1 minute the Pagemap null is still locked by: Thread[[ACTIVE]

jquery modal window on close

2011-03-02 Thread fachhoch
I am using jquery modal window. Using wicket modal window when the modal window is closed event is generated and my code is called can I do the same for a jquery modal window ? -- View this message in context:

multiple markup files for on panel

2011-02-18 Thread fachhoch
its it possible to have multiple mark up files for one panel My panel has list view , in one place I want to use an ordered list and in other place I want to use a table ,I can achieve this if my panel has multiple markup files and my panel will return the mark up based on

a common component for all my pages which takes lot of time to load

2011-02-17 Thread fachhoch
I need acomponent which I want to show in all my pages , this component takes time for loading so I don't want to contruct this everytime but create it once when user logs in put in his session and show the same component in all my pages and also this componenet should update itself at

Re: a common component for all my pages which takes lot of time to load

2011-02-17 Thread fachhoch
thanks for the reply , yes it is the model which takes time to load, I did not start the coding yet to show you the code I am looking for suggestions., write now my idea is to create this model object when user logs in and put in his session, this panel gets the data from session and it

cell width AjaxFallbackDefaultDataTable

2011-02-14 Thread fachhoch
I want to increase column width inAjaxFallbackDefaultDataTable. first I tried columns.add(new org.apache.wicket.extensions.markup.html.repeater.data.table.AbstractColumnInfUser(new ModelString(Name and Phone No.),firstName) { @Override

add java script on load of ajax tab

2011-02-11 Thread fachhoch
I am using AjaxTabbedPanel , this tabbedpanel has 5 tabs , when user clicks on the 3rd tab I wanted to render some java script , please tell me how can I do this . -- View this message in context:

what doctype should I use

2011-02-09 Thread fachhoch
please suggest what doctype should I use to make IE work , and not cause any new issues. i am not sure If my application is xhtml or just html , I am not sure if every thing is valid , in this case what would be the right doctype for my pages , please suggest me. -- View this message in

conditional css

2011-02-08 Thread fachhoch
how can I use condtional css something like !-- IE6 fix for the close png image -- !--[if lt IE 7] link type='text/css' href='css/basic_ie.css' rel='stylesheet' media='screen' / ![endif]-- -- View this message in context:

JGrowlFeedbackPanel repeates error message if validation called before message is cleared

2011-02-03 Thread fachhoch
I am using JGrowlFeedbackPanel , this feedback panel do not clear previous message , I mean if I hit the submit button and form failed with validation errors this JGrowlFeedbackPaneldisplays the error message , if I hit it before the validation messages is cleared , second time the

Re: export to excel AjaxFallbackDefaultDataTable

2011-02-01 Thread fachhoch
Now I want to export the same table in PDF , I did the export to excel using apache POI, Now I have to export the same table to PDF. Is there any libray which serves export to various formats ? I saw display Tag http://displaytag.sourceforge.net/10/export.html it provides export to

wicketstuff-dojo

2011-01-25 Thread fachhoch
I am trying to use wicketstuyff.dojo , I saw the version available is 1.3 and it does not work with wicket 1.4.12 , please tell me if there is any wicketstuff-dojo compatible with wicket 1.4.12 ? -- View this message in context:

wicket examples very slow

2011-01-24 Thread fachhoch
I was trying to see wicket examples http://www.wicket-library.com/wicket-examples/ its very slow I tried on Friday ,again today its very slow , I tried in different browsers.It did not help. -- View this message in context:

Re: export to excel AjaxFallbackDefaultDataTable

2011-01-20 Thread fachhoch
Thanks for your reply , I tried using apache poi call the data provider get data and create excel . It works fine no problems.To download this excel I am using fileresource,the file I provide to this is a temp file my excel util creates this temp file, after download I want to clear the temp

export to excel AjaxFallbackDefaultDataTable

2011-01-19 Thread fachhoch
I found some code to export datatable to excel here is the code add(new LinkVoid(export){ @Override public void onClick() { getRequestCycle().setRequestTarget(new

  1   2   3   >