Re: No JavaScript in s:div

2008-05-16 Thread Yoge
set executeScripts=true in s:div tag. For ex s:div theme=ajax href=/myapp.do loadingText=Loading... executeScripts=true/s:div --Yoge http://zoho.com On Fri, May 16, 2008 at 12:50 PM, HÃ¥ken Stark [EMAIL PROTECTED] wrote: Hi, Are there any solution to these issues: http

Re: Accessing ActionMessages from Tag Library

2007-12-24 Thread Yoge
Try s:actionmessage /. More info in http://www.roseindia.net/struts/struts2/struts2uitags/actionerror-and-actionmessage-tag.shtml -- Yoge, AdventNet, Inc. site24x7.com On Dec 23, 2007 2:09 PM, Chris Pratt [EMAIL PROTECTED] wrote: OK, I'm losing my mind trying to figure this out, so I

Re: Loading dojo.js in struts2.0.9 is very slow

2007-12-19 Thread Yoge
Thanks. I will try and let you know. -- Yoge, AdventNet, Inc. 925-965-6528 site24x7.com On Dec 19, 2007 3:36 PM, Nuwan Chandrasoma [EMAIL PROTECTED] wrote: Hi, i think this mail thread will help you. http://www.mail-archive.com/user@struts.apache.org/msg67703.html Thanks, Nuwan

Loading dojo.js in struts2.0.9 is very slow

2007-12-18 Thread Yoge
My App is using ajax theme of struts2.0.9. It takes more than 3 seconds to load Myserver/struts/ajax/dojoRequire.js and Myserver/struts/dojo/dojo.js. The JS files are served static and not served by struts filter. Is there any way to improve the load time of dojo*.js ??? -- Yoge, AdventNet

Re: Security credentials are not propogated to Actionclass in Struts2

2007-08-21 Thread Yoge
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- --Yoge 91-9840425388

Re: Accessing ActionForm from JSP

2007-08-02 Thread Yoge
pageContext.findAttribute(Your formname) will return the ActionForm instance . On 8/2/07, Oleg Konovalov [EMAIL PROTECTED] wrote: Hi, How can I access an ActionForm from my JSP in Struts 1.2-1.3 ? Thank you, Oleg. -- Yoge, AdventNet, Inc. 925-965-6528 [EMAIL PROTECTED] site24x7.com

Re: Struts design best practice issue

2007-07-13 Thread Yoge
Write an interface with all the methods in your actionform. Your DTO bean class and actionform class should implement the interface. Now you dont need to do any type casting in your action class. Sorry if my understanding is wrong. --Yoge On 7/13/07, Viplav Kallepu [EMAIL PROTECTED] wrote

Re: logic:iterate - problem

2007-07-10 Thread Yoge
klarmobil - 14 Ct./Min.! Hier klicken http://produkte.shopping.freenet.de/handy_voip_isdn/klarmobil/index.html?pid=730025 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Yoge

Re: How to make tabs in JSP

2007-06-27 Thread Yoge
I have used http://webfx.eae.net/dhtml/tabpane/tabpane.html in our site http://site24x7.com May be u can try that also -- Yoge, AdventNet, Inc. 925-965-6528 [EMAIL PROTECTED] site24x7.com On 6/27/07, Kavita Mehta [EMAIL PROTECTED] wrote: I'm using Struts 1.2 ... wd search more

Re: problem with showing ActionMessages

2007-06-20 Thread Yoge
Try messages.add(Globals.MESSAGE_KEY,new ActionMessage(invalid.login)); ie use Globals.MESSAGE_KEY instead of ActionMessages.GLOBAL_MESSAGE -- Yoge, AdventNet, Inc. 925-965-6430 [EMAIL PROTECTED] site24x7.com http://www.site24x7.com/ On 6/20/07, Aleksandar Matijaca [EMAIL PROTECTED] wrote

Re: Query on struts application design

2007-06-20 Thread Yoge
Another alternative, Move all the images/css specific to abc.com to a subdirectory named /abc/... Let all the images related to xyz.com be in another sub-directory /xyx/ Change path of images in your application to /abc or /xyz based on the request.*getRemoteHost*() . -- Yoge, AdventNet, Inc

Re: URL Encoding

2005-07-18 Thread Yoge
to encode this URL. Thanks Regards, SenthilRajan VS -- --Yoge 9840425388 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Token Help Neede

2004-05-03 Thread yoge
html:form in the data entry JSP file Do a isValidToken check in Action1 before inserting into the data into DB. If false then redirect to the error page . No need for any token check in Action2 Hope this helps. Thanks Yoge shankarr wrote: Hi! I have an issue in my web application. My control flow