show modal window on cometd event using IChannelTarget

2010-07-20 Thread fachhoch
I am using wicket cometd. in the onEvent method of IChannelListner , I want to show a ModalWIndow , to show a modaWindow we have to call method show which takes AjaxRequestTarget, bu in I channleListner I get IChannelTarget , please suggest me how can I open modal window in onEvent metho

Re: using comet to find all clients using a page

2010-07-15 Thread fachhoch
wicket cometd is it asychronous or synchronus ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-comet-to-find-all-clients-using-a-page-tp2283204p2289929.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: using comet to find all clients using a page

2010-07-14 Thread fachhoch
Please tell me if it works ok on all servers or has problems with any ? I saw some posts telling about problems with jetty , -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-comet-to-find-all-clients-using-a-page-tp2283204p2288834.html Sent from the Wicket

Re: using comet to find all clients using a page

2010-07-12 Thread fachhoch
I have a Page A , several browsers might have page A opened. based on an admin action I want to open a popup in page A ie if admin performs an action I query all Browsers connected to my server if they have page A opened then open a modal window in all those pages is this possible ?

Re: using comet to find all clients using a page

2010-07-12 Thread fachhoch
I have a Page called A , now I need sessions of all the browsers which have Page A opened is this possible ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/using-comet-to-find-all-clients-using-a-page-tp2283204p2286133.html Sent from the Wicket - User mai

Re: using comet to find all clients using a page

2010-07-09 Thread fachhoch
In my case I have to refresh some pages based on some business logic, mine is a workflow applicaiton , workflow creates tasks for user.I show users tasks, these user task pages are implemented in wicket. we also have some admin functionality where admin can delete the task ,supposeadmin d

Re: gmail like file upload

2010-06-18 Thread fachhoch
but GwtUpload is ajax and wicket is not . -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/gmail-like-file-upload-tp2251270p2260591.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: gmail like file upload

2010-06-18 Thread fachhoch
I mean gmail like GwtUpload. here link for a simple tutorial for GwtUpload http://code.google.com/p/gwtupload/wiki/GwtUpload_GettingStarted -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/gmail-like-file-upload-tp2251270p2260176.html Sent from the Wicke

Re: gmail like file upload

2010-06-16 Thread fachhoch
Please suggest me how to integrate google like fileupload in wicket -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/gmail-like-file-upload-tp2251270p2257580.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: signout and encryption key in session

2010-06-14 Thread fachhoch
No i am not constructing new page I am just returning the class for that page . I am using public RestartResponseException(Class pageClass) { RequestCycle.get().setResponsePage(pageClass); } here the code for AuditWicketApplication.SignInPageHelper()

Re: signout and encryption key in session

2010-06-14 Thread fachhoch
here is the code for signout ((AuditWebSession)(Session.get())).signout(); setRedirect(true); throw new RestartResponseException(new AuditWicketApplication.SignInPageHelper().getSignedOutPage()); AuditWebSession is a subclass of AuthenticatedW

url encryption and session invalidate

2010-06-12 Thread fachhoch
I encode my url in wicket suggested way. If users clicks on logout then I calls session.invalidate() this also removes the key in session for encrypting and decrypting of url ,so I get bad padding exception etc,is there any other way to logout user than calling session.invalidate () ? -- View

session with new browser window

2010-06-11 Thread fachhoch
My wicket application is launched from servlet based application, the servlet based application has a link clicking on that it opens a new window with url to my application. then my application creates a session etc.Now does the two application use the same session if the are deplyed in one s

Re: gmail like file upload

2010-06-11 Thread fachhoch
google search for gmaio like file upload bought me this http://code.google.com/p/gwtupload/ my question is how can I have a gwt iframe inside wicket page ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/gmail-like-file-upload-tp2251270p2251720.html Sent from

gmail like file upload

2010-06-10 Thread fachhoch
I want to have gmail like file upload in my application , I want to have ajax multi file upload , please suggest me . -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/gmail-like-file-upload-tp2251270p2251270.html Sent from the Wicket - User mailing list archive at

Re: validations in a form with listView

2010-06-03 Thread fachhoch
I tried this code please tell me if this is right code to retrieve to formcomponent from a list view List> formComponents= new ArrayList>(); for(Iterator> listItemIterator= ((ListView)form.get(listViewId)).iterator();listItemIterator.hasNex

integrate grails into my wicket app

2010-05-25 Thread fachhoch
Mine is J2ee application using wicket, spring , hibernate , groovy .I also want to try grails can I integrate grails into my wicket app ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/integrate-grails-into-my-wicket-app-tp2230055p2230055.html Sent from the

Re: load file from web-inf

2010-05-24 Thread fachhoch
am I doing right it to load a file from web-inf folder ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/load-file-from-web-inf-tp2229067p2229079.html Sent from the Wicket - User mailing list archive at Nabble.com. -

load file from web-inf

2010-05-24 Thread fachhoch
Mine is wicket application ,In one of my page I am trying to load a file which is in my web-inf folder. here the code InputStream inputStream=WebApplication.get().getServletContext().getResourceAsStream("/WEB-INF/downlods/HelpManual.pdf"); the inputstre

Re: HttpServletRequest in WicketApplication

2010-05-20 Thread fachhoch
but in a subclass of org.apache.wicket.protocol.http.WebApplication I cannot call getRequest() can I ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HttpServletRequest-in-WicketApplication-tp2225141p2225183.html Sent from the Wicket - User mailing list archive

Re: HttpServletRequest in WicketApplication

2010-05-20 Thread fachhoch
I mean subclass of org.apache.wicket.protocol.http.WebApplication -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HttpServletRequest-in-WicketApplication-tp2225141p2225151.html Sent from the Wicket - User mailing list archive at Nabble.com. --

HttpServletRequest in WicketApplication

2010-05-20 Thread fachhoch
I want to retrieve my context path using HttpServletRequest in subclass of WicketApplication is it possible ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HttpServletRequest-in-WicketApplication-tp2225141p2225141.html Sent from the Wicket - User mailing list arc

Re: pass request context to jquey in wicket pages

2010-05-20 Thread fachhoch
I am asking about passing the context name to script, I have a Behaviour class which extends from org.apache.wicket.ajax.AbstractDefaultAjaxBehavior here code for my behaviour class public class AuditBehaviour extends JQueryBehavior { @Override public void renderHead(IHeaderR

pass request context to jquey in wicket pages

2010-05-20 Thread fachhoch
here is my jqery $(document).ready(function(){ $("a.downloadHelp").live('click', function(e){ e.preventDefault();

Re: dynamic forms retrieve a component for validation

2010-05-17 Thread fachhoch
ok in fixed forms I know the id of each formcomponent and I can retrieve the component using its id , but in dynamic forms all formcomponents will have the same name and in this case how can I reterieve a specific formcomponnt ? -- View this message in context: http://apache-wicket.1842946.n4.na

dynamic forms retrieve a component for validation

2010-05-17 Thread fachhoch
dynamic forms how can I identify individual component to validate them , in fixed forms in my custom valiator I use getFormComponent("acdSentToDFI").getConvertedInput() to retrieve the user entered value and validate it but in case of dynamic forms how can I identify each component? -- V

Re: convert wicket pages html to excel

2010-05-07 Thread fachhoch
well I will clean my html using htmlparsers and make it well formed xml , are there any example of using xslt to create excel out of xml ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/convert-wicket-pages-html-to-excel-tp2131919p2134216.html Sent from the W

RE: convert wicket pages html to excel

2010-05-07 Thread fachhoch
I also have some servlets whose html is created dynamically based on user input, its basically a form engine which creates forms dynamically ,developed several years before , its a servlet which writes to response reading form data from database, now I want to read the same servlet and cre

Re: wicket tinymce blank string

2010-05-05 Thread fachhoch
I mean when user enters white space into text areas , the value of the property representing textarea will contain html for blank string, I am asking how to identify html for blank string ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tinymce-blank-string

Re: jqery not getting called after ajax refresh

2010-05-04 Thread fachhoch
No this is not in ajaxrequest. It is just jquery. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p2126099.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: jqery not getting called after ajax refresh

2010-05-04 Thread fachhoch
I got a new problem with this. The browser loses focus. Please suggest what I can do to retain focus at selected element. here again my jquery $(document).ready(function(){ $("a.sho

pagination both bottom and top ajaxfallbackdatatable

2010-04-25 Thread fachhoch
we use ajaxfallbackdefaultdatatable ,it provides pagination on top,can I pagination both on top as well as bottom ?, -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/pagination-both-bottom-and-top-ajaxfallbackdatatable-tp2064202p2064202.html Sent from the Wicket - Use

Re: jqery not getting called after ajax refresh

2010-04-15 Thread fachhoch
It works thanks . -- View this message in context: http://n4.nabble.com/jqery-not-getting-called-after-ajax-refresh-tp1872270p1908182.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: jqery not getting called after ajax refresh

2010-04-15 Thread fachhoch
No , please tell more on usingjQuery 1.4 live/delegate, you have any example ? ok one more easy solution may be if I add the function in onclick attribute of the link , but I dont know to write jquery function in onclick attribute , please tell me how can I write the jquery function in onc

Re: jqery not getting called after ajax refresh

2010-04-15 Thread fachhoch
My link is a static html link its not ajax link ,and this link resides in AjaxFallbackDefaultDataTable , the repaint of this table containing is handled by AjaxFallbackDefaultDataTable. Please tell me how can I add the java script in this case ? -- View this message in context: http

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

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: 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
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: 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
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: 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: 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
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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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
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: 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: 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-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: 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: 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: 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
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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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 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: 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: 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-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: 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: 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: 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: 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: 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: 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-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: 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: 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: 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: 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: 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: 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: 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: 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-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: 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: 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(){ >

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

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

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

<    1   2   3   4   >