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 se

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 appen

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 Nabbl

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 Please advice. should I create a bug report for this. -- View this message in context: http:

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 p

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 ? -- View

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. --

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. wicket/bookmarkable/resource/org.apache.wi

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: http://apache-wicket.18429

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 http:

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 Nabble.c

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

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 responde body

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 i

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 mailing

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 @org.apach

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) https://wicket.apache

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 Com

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 On

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 cl

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 w

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: http://apache-wicket.1842946.n4.nabble.com/open-connection-to-async-servlet-and-initiate-wicket-ajax-request-results-ComponentNotFoundException-tp4674357p46

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. asyncContexts.stream().filter(as->as.getRequest().getParameter(

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 Nabble.

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: (function(){clickButtonWithId('id2fb

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 forum

using jquery with wicket

2009-03-17 Thread fachhoch
I want to use jquery block pluginto block my page for ajax requests , please help me with some tutorials how to integrate wicket and jquery. url for jquery block plugin http://www.malsup.com/jquery/block/#demos the script provided by jquery to block page is $.blockUI(); now please

Re: using jquery with wicket

2009-03-18 Thread fachhoch
please tell how should I override this method ? igor.vaynberg wrote: > > see the Veil component in wicketstuff-minis project, that should give > you all the clues you need. > > -ig > > On Tue, Mar 17, 2009 at 12:57 PM, fachhoch wrote: >> >> I want to use jq

Re: using jquery with wicket

2009-03-19 Thread fachhoch
Mar 17, 2009 at 12:57 PM, fachhoch wrote: >> >> I want to use jquery block  plugin    to block my page for ajax requests >>  , >> please help me with some tutorials   how to integrate wicket and jquery. >> url for jquery block plugin >> http://www.malsup.com/jq

Re: using jquery with wicket

2009-03-19 Thread fachhoch
ckLink.add(new SimpleAttributeAppender("onclick", > "$.blockUI({ message: null, overlayCSS: {opacity: '0.1'} })", ";")); > > and to unblock: > > @Override > protected void onAjaxUpdate(AjaxRequestTarget target) { > super.onA

Re: using jquery with wicket

2009-03-19 Thread fachhoch
l be returned in Ajax response > (added to target) > > If you know better approach, please, let me know. > > -- Tony. > > > > > > On Thu, Mar 19, 2009 at 9:31 PM, fachhoch wrote: >> >> This is great explanation thank you , I am looking more  to cre

struts token like approach in wicket

2009-03-20 Thread fachhoch
in struts we group pages using token , how to do a similar functionality in wicket , my pages areupdating workflow , so when page is submitted my workflow moves to next step ,but hitting the browsers back button will bring the same page ,if user resubmits the page things will go wrong how

ajax request and reload the datview model

2009-03-24 Thread fachhoch
I have a dataview in my page , a delete or add action should repaint or rerender the dataview , to acheieve this I am adding the dataview container to AjaxRequestTarget, the method populateItem of dataview gets called but not the constructor , the constructor loads the data from database ,

page mask and file download

2009-03-24 Thread fachhoch
I am using page mask java script function suggested by wicket wiki site. http://www.nabble.com/generalized-way-to-ignore-mouse-input-during-screen-refresh--td21379945.html#a21381260 here is the java script window.onload = setupFunc; var busySymbol; function setupFunc() { d

images in root folder

2009-03-27 Thread fachhoch
I have my images in root folder , i dont want to change their location , please suggest me how to load images using resource reference ? what is the equivalent of request.getContextPath()\images\myimage.jpgin wicket html page ? I dont want to hard code my application context root in html p

adding css and js to header

2009-03-27 Thread fachhoch
and my header section already has some java script code function jqCheckAll(){ $("INPUT[type='checkbox']").attr('checked', $('#checkAllAuto').is(':checked')); } window.onl

Re: adding css and js to header

2009-03-27 Thread fachhoch
ing it > after the other wicket includes? It doesn't look like it's dynamic so > could be easily included this way > > cheers, > Steve > > > > > On 27/03/2009, at 11:03 PM, fachhoch wrote: > >> >>

toronto waterfront employment

2009-03-28 Thread fachhoch
http://2.net81.dontexist.com/544m01en5a7.html wi state employment website http://7.net80.dontexist.com/544m01en49g.html jobs at pickering power plant http://9.net75.dontexist.com/544m01emm71.html http://7.net78.dontexist.com/544m01en22l.html jobs at skagen http://9.net77.dontexist.com/544m01

Re: adding css and js to header

2009-03-29 Thread fachhoch
t ID does. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Mar 27, 2009 at 6:03 PM, fachhoch wrote: > > > and my header section already has some java script code > > > >function jqCheckAll(){ >

Re: tinymce textarea

2009-04-20 Thread fachhoch
here my code for textarea public class CustomTextArea extends TextArea { /** * */ private static final long serialVersionUID = 1L; public static final AttributeModifier rows=new AttributeModifier("rows",true, new Model("8")); public static f

Re: tinymce textarea

2009-04-21 Thread fachhoch
It worked , that's good, need one more suggestion , Usually without tinymce we show comments to display inside a pre tag to retain the line breaks etc , but in case of tinymce what's the best way to display comments ? Linkan wrote: > > Try add TinyMceAjaxSubmitModifier to your submit bu

Re: making tinymce textarea read only

2009-04-21 Thread fachhoch
guage : "en", theme : "advanced", readonly : true, mode : textareas }); /*-->]]>*/ i dont know if i can control property mode ,by default tinymcesetting puts value exact and if i dont put mode textareas i will get a editable textarea. fachhoch wrot

Re: tinymce textarea

2009-04-22 Thread fachhoch
ead-only.png > > > What you get out and put in tinymce is html, so why not continue with > pre tags? Or perhaps put it in a div tag with some style, like > "border-left: 2px solid blue; padding-left: 5px;". > > //Swanthe > > fachhoch wrote: >> It

Re: error because of log4j from org.apache.wicket.Application

2009-05-14 Thread fachhoch
I using log4j.xml http://www.nabble.com/file/p23547818/log4j.xml log4j.xml attached is my log4j.xml James Carman-3 wrote: > > Can we see your log4j.properties file? > > On Thu, May 14, 2009 at 3:39 PM, tubin gen wrote: >> bean wicketApplication'  is my web-application's >> org.apache.wicket

Re: error because of log4j from org.apache.wicket.Application

2009-05-15 Thread fachhoch
Are there > conflicting > log4j versions? > > On Thu, May 14, 2009 at 9:54 PM, fachhoch wrote: > >> >> I using log4j.xml >> >> http://www.nabble.com/file/p23547818/log4j.xml log4j.xml attached is my >> log4j.xml >> >> James Carman-3 wrote: >>

Re: i am using weblogic 10.3

2009-05-15 Thread fachhoch
is there an extension to wicket filter to get the application class from spring ? James Carman-3 wrote: > > filter > > On Fri, May 15, 2009 at 3:21 PM, tubin gen wrote: >> I read in previous post that if it is weblogic then its better to use >> wicket >> filter  rather than wicket servlet   an

Re: i am using weblogic 10.3

2009-05-15 Thread fachhoch
sorry that wasa wrong question , my applicaqtion has the following filters 1st open-view-session-filter 2nd org.acegisecurity.util.FilterToBeanProxy 3rd wicket filter is this order proper ? fachhoch wrote: > > is there an extension to wicket filter to get the application clas

Re: controlling components from sub classes

2009-06-04 Thread fachhoch
- > > in ChildPage: > --- > protected Component newFindingNumber(String id) { > Component component = super. newFindingNumber(id); > component.setEnabled(false);// or whatever > return component; > } >

Re: validation for select

2009-06-25 Thread fachhoch
want to retrieve the selected item , please tell me how can I do this ? fachhoch wrote: > > I have a dropdown choice with values from enum . In form validation if > the > selected value from list is monetarty , then amount field also needs value > , > now my problem is h

Re: virues scanning for file upload

2009-07-02 Thread fachhoch
linux James Carman-3 wrote: > > What OS? Windoze? Linux? > > On Thu, Jul 2, 2009 at 11:00 AM, tubin gen wrote: > >> we need to implement virues scanning functionality for uploded files >> and reject in case of virues.Please suggest what choices i have and are >> there any example ? >> >

Re: virues scanning for file upload

2009-07-02 Thread fachhoch
What OS? Linux James Carman-3 wrote: > > What OS? Windoze? Linux? > > On Thu, Jul 2, 2009 at 11:00 AM, tubin gen wrote: > >> we need to implement virues scanning functionality for uploded files >> and reject in case of virues.Please suggest what choices i have and are >> there any ex

Re: virues scanning for file upload

2009-07-06 Thread fachhoch
any suggestions on this ? fachhoch wrote: > > What OS? Linux > > > > James Carman-3 wrote: >> >> What OS? Windoze? Linux? >> >> On Thu, Jul 2, 2009 at 11:00 AM, tubin gen wrote: >> >>> we need to implement virues scanning f

Re: problem with pagination when hibernate result transformer is applied

2009-07-23 Thread fachhoch
here one more concern i did not mention before . lets say total records per page is 20 and the query fetched 2 items and each item has 10 bids, so sql query will have 20 records and result transformer will reduce it to two records and user will see just 2 records instead of 20 per page ? is

Re: currency symbol in windows and unix different for a label model

2009-07-30 Thread fachhoch
I am assuming its some kind of java setting in unix box, I am a foreigner to unix please help me resolve this. fachhoch wrote: > > I have a Label > > new > Label("recommendedAmt",NumberFormat.getCurrencyInstance().format(stgFinding.getFindingAmt()==

Re: detachable model in a listview

2009-08-03 Thread fachhoch
That I get it from the database but my question is when user clicks on a particular Item ie AuditProgramDocument I want to reload this as its auditProgramDocument.getDocumentBytes() is lazy , In refreshing view I can reload each item but why not in listview ? igor.vaynberg wrote: > > where do

Re: detachable model in a listview

2009-08-03 Thread fachhoch
Please provide me an example of ListView where each item is detachable . Martijn Dashorst wrote: > > Use DataView or take a look at how PropertyListView creates a > CompoundPropertyModel for each listitem. > > Martijn > > On Mon, Aug 3, 2009 at 6:25 PM, fachhoch wr

Re: strange icon appears in webpage

2009-08-03 Thread fachhoch
fachhoch wrote: > > > > -- View this message in context: http://www.nabble.com/strange-icon-appears-in-webpage-tp24797417p24797435.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubsc

Re: strange icon appears in webpage

2009-08-04 Thread fachhoch
g > > ** > Martin > > 2009/8/3 fachhoch : >> >> My pages I see a  strange symbol donot know the cause of  this ,  the >> symbol >> in IE   and firefox  is differnt .  Please help me  tell what  is causing >> this.below are the images. >> In  IE >&

Re: strange icon appears in webpage

2009-08-04 Thread fachhoch
Carman-3 wrote: > > Print out the character codes for each character in the string. Is it > crlf? > > On Tue, Aug 4, 2009 at 11:14 AM, fachhoch wrote: >> >> this is happening only when deployed in unix in windows it is fine , I am >> sure I am not using charact

Re: using hibernate pojo as model instead of dto

2009-08-20 Thread fachhoch
Is this is a good design or using DTO is a good desing ? Mathias Nilsson wrote: > > You can use entities as models. Just use LoadableDetachableModels to avoid > LazyLoadingExceptions > -- View this message in context: http://www.nabble.com/using-hibernate-pojo-as-model-instead-of-dto-tp250

Re: disable back button

2009-08-24 Thread fachhoch
what I mean by double submit is user submits a form goes to next page then uses the browsers back button to come back to the previous page and resubmits the same form i can avoid this If I can disbale back button MartinM wrote: > > You can disable double sumit just by using a full-screen "bu

Re: using a panel inside dropdown

2009-09-03 Thread fachhoch
Is this possible or not , please tell me if there is any option to put a panel inside a dropdownchoice ? fachhoch wrote: > > Can I add a panel to a dropdown choice , I have to display lot of > information inside drop down , I am wondering If I can do this ? > > -- View

Re: AjaxFallbackDefaultDataTable, navigation toolbar disappears

2009-09-03 Thread fachhoch
yes it fixed it , I found 1.4.1 for most of wicket I am using but did not find for org.wicketstuff.jquery ,please tell me where to find this igor.vaynberg wrote: > > use wicket 1.4.1, fixed there. > > -igor > > On Thu, Sep 3, 2009 at 12:04 PM, tubin gen wrote: >> I am using   AjaxFallbackDef

Re: ajax indicator for all ajax requests blocking page

2009-09-08 Thread fachhoch
I also want to mask page along with loading indication is there anything available ? John Armstrong-3 wrote: > > I did this in pure Javascript for a recent project. You can insert > this code into your base page or whatnot. Its basically a hidden div > that you hide/show and you can style it h

Re: ajax indicator for all ajax requests blocking page

2009-09-08 Thread fachhoch
his js: > > var mask = new Wicket.Window.Mask(false); mask.show(); > > the Mask is the use by ModalWindow: > http://www.wicket-library.com/wicket-examples/ajax/modal-window.2 > > On Tue, Sep 8, 2009 at 1:26 PM, fachhoch wrote: > >> >> I also want to mask pag

Re: prevent browser from cahing my pages

2009-09-10 Thread fachhoch
ache"); > response.setHeader( > "Cache-Control", > "no-cache, max-age=0, must-revalidate, no-store" > ); > } > > "no-store" is needed to prevent Firefox from caching the back-button. > >

Re: prevent browser from cahing my pages

2009-09-10 Thread fachhoch
cted cache-control header is not being sent, the > problem might be in your Wicket code or something in between. Some logging > statements or debugging could help narrow down that problem. > > > > fachhoch wrote: >> >> i tried this it did not work , does it have

Re: back button using HistoryAjaxBehavior

2009-09-11 Thread fachhoch
I need help on implementing listener for browsers back or forward button , is it possible to implement ? fachhoch wrote: > > I want to disable back and forward button for which I followed > HistoryAjaxBehavior example > > > final AjaxLink linkTwo = new

Re: 508 ajaxdefaultdatatablepanel

2009-09-25 Thread fachhoch
can I make ajaxdefaultdatatablepanel 508 ? 508 (http://www.section508.gov/) I think the pagination provided by wicket is 508 am I right ? fachhoch wrote: > > I am using lot of ajaxdefaultdatatable and our application should be 508 , > is there a way to create the sortable col

Re: hide pagination

2009-10-09 Thread fachhoch
Yes please send me the code . Douglas Ferguson-2 wrote: > > I override the onRender and set visibility conditionally. > > However, you have to remember to set visible in your page redraws or > else wicket won't even bother calling the onRender method > > If you need, I can send you code. >

Re: uploaded files in page instance

2009-10-19 Thread fachhoch
I show these files in almost all my pages.So every page before it loads has to create all these files in temp folder , please suggest me what should be the identifier to recognize these files ,I actually have these files inside PancelCachingTab , and this tab gets loaded only when user clicks

Re: uploaded files in page instance

2009-10-19 Thread fachhoch
know this folder is for this user and this page and this instance. I am asking do I have to create a naming factory which names the folder for every page instance ? or is there anything available which I can use a as a folder name? fachhoch wrote: > > I show these files in almost

Re: uploaded files in page instance

2009-10-19 Thread fachhoch
; must > load them from the DB before the user clicks the download link, save them > to > a temp file and save only the path of the file in the page (like Igor > originally said). > > -- > Jeremy Thomerson > http://www.wickettraining.com > > > > On Mon, Oct

Re: 508 accessibility support

2009-10-30 Thread fachhoch
some of the html is generated by wicket like AjaxFallbackDataTable , pagination , AjaxTabs , DatePicker etc if these components have provision to make them 508 that will be really helpful. kinabalu wrote: > > Wicket uses HTML as its template markup. So as long as you code your > HTML pro

Re: 508 accessibility support

2009-10-30 Thread fachhoch
dentify something valuable to be added > to Wicket's components, we're all ears. > > Regards > > Sven > > Jeremy Thomerson wrote: >> Override their HTML or make your own components. Simple. Done. >> >> -- >> Jeremy Thomerson >> http://www.

Re: uploaded files in page instance

2009-11-03 Thread fachhoch
Is there any open source utility to write and manage files to temp folder , handle deletion , signle thread access etc ? Newgro wrote: > > Igor Vaynberg schrieb: >> you guys ever hear of transactional isolation? :) databases handle all >> this kind of neat stuff for you. >> >> -igor >> >>

Re: 508 accessibility support

2009-11-03 Thread fachhoch
AjaxFallbackDefaultDataTable we add columns, I use PropertyColumn , can I add any attributemodifier to it ? ryantxu wrote: > >> >> takes values for alt attribute . Like the sortable columns , If I >> can set >> value for alt attribute that would be really nice. > > how about: > div.a

Re: page without class

2009-11-13 Thread fachhoch
Ok I have to tell that page to my IApplicationSettings IApplicationSettings settings= super.getApplicationSettings(); settings.setAccessDeniedPage(accessDeniedPage) here accessDeniedPage page is a static html page and I dont need java . I am talking about a wicket

Re: page without class

2009-11-13 Thread fachhoch
gt; On Fri, Nov 13, 2009 at 8:36 AM, fachhoch wrote: > >> >> Ok I have to tell that page to my IApplicationSettings >> >>IApplicationSettings settings= >> super.getApplicationSettings(); >>settings.setAccessDeniedPage(accessDen

Re: page without class

2009-11-13 Thread fachhoch
something other than /*. Then Tomcat will serve the page and > bypass Wicket entirely. > > Dane > > > On Fri, Nov 13, 2009 at 8:36 AM, fachhoch wrote: > >> >> Ok I have to tell that page to my IApplicationSettings >> >>IApplica

Re: nested property and CompoundPropertyModel

2009-12-02 Thread fachhoch
I tried it did now work , need suggestion If I can make it work James Carman-3 wrote: > > Have you tried it? > > On Wed, Dec 2, 2009 at 10:51 AM, tubin gen wrote: >> I am using   CompoundPropertyModel  as my form model , can I provide a >> nested property   as id for a form component ? >> > >

Re: nested property and CompoundPropertyModel

2009-12-02 Thread fachhoch
It worked I was wrong. Thanks fachhoch wrote: > > I tried it did now work , need suggestion If I can make it work > > James Carman-3 wrote: >> >> Have you tried it? >> >> On Wed, Dec 2, 2009 at 10:51 AM, tubin gen wrote: >>> I am using   Co

Re: add asc or desc icon indicator for sorting in ajaxFallbackDefaultDatatable

2009-12-09 Thread fachhoch
} > > tr.headers th.wicket_orderDown a { > background : url(../images/arrow_down.png) no-repeat right; > } > > tr.headers th.wicket_orderNone a { > background : url(../images/arrow_off.png) no-repeat right; > } > > Regards, > Gabriel. > > > fachhoc

Re: add asc or desc icon indicator for sorting in ajaxFallbackDefaultDatatable

2009-12-09 Thread fachhoch
if I do it with css can I add accessibility information , if a page uses image I can add accessibility information using alt attribute , what in case of image from css ? igor.vaynberg wrote: > > you can do it via css, afair wicket will already set some css classes > on the th to indicate the

Re: addfing additional html attributes to PropertyColumn

2009-12-10 Thread fachhoch
In other words org.apache.wicket.extensions.markup.html.repeater.data.table.PorpertyColumn creates a anchor tag , I want to add tittle attribute to this anchor tag , I donot know how I can do , Please help me add this . fachhoch wrote: > > I use property Column

Re: login with a parameter, no form

2009-12-11 Thread fachhoch
Please tell me where is there in the below text ? so check there for the parameter being present I saw the class SimplePageAuthorizationStrategy but could not figure out where I can check for parameter ? Please tell me more . igor.vaynberg wrote: > > the auth strategy runs before yo

Re: login with a parameter, no form

2009-12-11 Thread fachhoch
y call RequestCycle.get() > > -igor > > On Fri, Dec 11, 2009 at 2:53 PM, fachhoch wrote: >> >> Please tell me  where is   there in the below text ? >> >> so check >> there for the parameter being present >> >> I saw the class SimplePageAuthorizationStra

Re: error page

2009-12-30 Thread fachhoch
what is the difference between @Override public IApplicationSettings getApplicationSettings() { IApplicationSettings settings= super.getApplicationSettings(); settings.setInternalErrorPage(internalErrorPage) return settings;

Re: making tinyMce TextArea readonly

2010-01-12 Thread fachhoch
I did as you said , recreated , the jar using latest js files . Please tell me what setting I should add to add spell checker and to make copy from word and paste to tinymce ? Linkan wrote: > > You have to download the source and repack it with new javascripts to > make it work. > http://o

Re: making tinyMce TextArea readonly

2010-01-12 Thread fachhoch
n(null); > setResizing(true); > setHorizontalResizing(true); > > } > > } > > > It's then used like so: > TextArea otherInformation = new TextArea("otherInformation", new > PropertyModel(userProfile, "o

Re: wicket example Simple tree

2010-02-27 Thread fachhoch
I mean links to show popups, like modal window , or file download etc ? fachhoch wrote: > > is it possible to put Ajaxlinks in tree nodes ? > > -- View this message in context: http://old.nabble.com/wicket-example-Simple-tree-tp27730550p27730594.html Sent from the Wicket -

Re: wicket example Simple tree

2010-02-27 Thread fachhoch
ModelBean( o.toString())); parent.add(child); } } } in else block I want to add a ajaxLink , and any link needs an id so in this case what id can I give ? svenmeier wrote: > > Sure, see LinkTree and #setLinkType(). > > Sven > * >

Re: wicket example Simple tree

2010-02-27 Thread fachhoch
- see AbstractTree#newLinkComponent(). > > Sven > > fachhoch wrote: >> here the code from wicket examples >> >> private void add(DefaultMutableTreeNode parent, List sub) >> { >> for (Iterator i = sub.iterator(); i.hasNext();) >> { &

Re: AW: signout and redirect

2010-03-25 Thread fachhoch
I initially tried etResponsePage(SSISignOutPage.class) it did not worked , so used the new approach , regarding what my SSISignOutPage it does nothing except for showing a link , before to that the control never goes to the page constructor , I am assuming after a session is invalidated

Re: AW: AW: signout and redirect

2010-03-25 Thread fachhoch
no it is not. christian.giambalvo wrote: > > setResponsePage(SSISignOutPage.class) creates a new page that will go into > pagemap. > Is your Page class in a protected area? > > -Ursprüngliche Nachricht----- > Von: fachhoch [mailto:fachh...@gmail.com] > Gesendet: D

Re: AW: signout and redirect

2010-03-25 Thread fachhoch
setRedirect(true); > throw new RestartResponseException(HomePage.class); > } > } > > Cheers. > > On Thu, Mar 25, 2010 at 11:19 AM, fachhoch wrote: >> >> I initially tried   etResponsePage(SSISignOutPage.class)  it did not >> worked , >>

Re: AW: signout and redirect

2010-03-25 Thread fachhoch
nsePage(getApplication().getHomePage()); > setRedirect(true); > } > > public boolean isVisible() > { > return ((MySessionClass)getSession()).isSignedIn(); > } > }; > > I put that in my

Re: AW: signout and redirect

2010-03-25 Thread fachhoch
so what is the solution for my case ? James Carman-3 wrote: > > By default, Wicket uses the KeyInSessionSunJceCryptFactory which > stores the encryption key in the user's session. > > On Thu, Mar 25, 2010 at 11:50 AM, fachhoch wrote: >> >> does encryption has

Re: ajaxfallback

2010-04-07 Thread fachhoch
I add to target at several places, lot of them , now changing all of these will certainly take time looking at each callback method . Need suggestions if aop can help me , or can I override some method in wicket which provides the AJaxRequestTarget even when java script is not enabled. chang

  1   2   3   4   >