[OT] JQuery or dojo?

2011-08-16 Thread Balwinder
Hi All, Can any one suggest, for ajax which framework is better? Regards, Balwinder Kumar - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: [OT] JQuery or dojo?

2011-08-16 Thread Balwinder
Dave, My criteria is: Able to ajaxify my app seamlessly. Quick in implementation. Ease of maintenance. Quick to learn. Regards, Balwinder Kumar On 8/16/2011 10:26 PM, Dave Newton wrote: What are your criteria? IMO they're different things, Dojo is more of an app framework, although th

[OT] Searching for data access framework.

2011-12-05 Thread Balwinder
. Thanks in advance. Regards, Balwinder Kumar - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: [OT] Searching for data access framework.

2011-12-05 Thread Balwinder
some framework that if when source is changed its access mechanism should remain same. Hope this explains what I am looking for. Regards, Balwinder Kumar On 12/5/2011 10:35 PM, Wes Wannemacher wrote: I am not sure if I understand your question correctly, but the first thing that comes to mind

Re: [OT] Searching for data access framework.

2011-12-05 Thread Balwinder
Thanks Lukasz, this is exactly what I am looking for, hope there will not be any licensing issue if I want to use it. Regards, Balwinder Kumar On 12/5/2011 10:45 PM, Łukasz Lenart wrote: Check JDO http://www.datanucleus.org/products/index.html Regards

Session Object Storage Capacity.

2007-01-07 Thread Balwinder
Hi Everyone!!! While working with struts application, i cmae across a very weird but important question. I just wanted to know how much data we can store in our Page, PageContext, Request, Session, and Application objects? Thanks. Thanks and regards, Balwinder Kumar

Getting tag error

2007-03-01 Thread balwinder
a lot but couldn't find a reasonable cause. I need help. Any suggestion and help is highly appreciated. Thanks and Regards, Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

FireFox 3 and Form Bean in Session

2008-08-04 Thread Balwinder
use IE. I am using Struts1.1 and Tomcat 4.1.30. Any help is highly appreciated. Thanks in advance. Thanks, Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: ApplicationResources.properties and JavaScript

2008-08-07 Thread Balwinder
nauke. wrote: Hi all, Is there a way to access values in ApplicationResources.properties in Javascript functions? I've found a way where I can just pass a value from the app resource file as a parameter, but discovered that I return alerts with different messages based on some criteria. Any ide

Re: R: How to OR condition in JSP using Struts

2006-09-18 Thread Balwinder
condition in struts using logic tags.?? Can we use logic tags to check OR condition?? Hi, A simple approach is doSomething doSomething i hope this will solve your problem. Thanks and regards, Balwinder Kumar - To unsubscribe

Re: Action output in new window without menu/toolbar

2006-09-20 Thread Balwinder
? Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] Hi, Use javascript function, window.open(URL,windowName,"menubar=no,toolbar=no");. Happy coding!! Balwi

Re: AW: Action output in new window without menu/toolbar

2006-09-20 Thread Balwinder
Martin Kindler wrote: Thanks, but how do I use it with a form? I have in my html-code Martin -Ursprüngliche Nachricht- Von: Balwinder [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 20. September 2006 13:17 An: Struts Users Mailing List Betreff: Re: Action output in new window

Re: AW: AW: Action output in new window without menu/toolbar

2006-09-20 Thread Balwinder
Martin Kindler wrote: Thank you Balwinder and Patil! For all those who are as stupid as I am the solution is very simple: onsubmit='open("", "outputWindow", "menubar=false, toolbar=false");' target="outputWindow"> Martin

Re: bean write. escape HTML

2006-10-26 Thread Balwinder
in HTML, and any such characters will be replaced by their entity equivalents. I hope this solves your problem. Cheers Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Downloading file

2006-11-03 Thread Balwinder
advance. Thanks and Regards, Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Downloading file

2006-11-03 Thread Balwinder
myfilename); response.setHeader("Content-Type", mimeType==null?"x-type/unknown":mimeType); Mike Balwinder a écrit : Hi All, I am developing an application in struts in which I needed to download a file from a server. When iam clicking on download button, file lose it

Transaction control in Struts

2006-11-08 Thread Balwinder
Hi everyone!! What option struts provide for handling transaction(atomicity) in application. Thanks in advance. Thanks and Regards, Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Regeneration of last page visited.

2006-11-08 Thread Balwinder
somehow i feel that it is not good, i need an alternate solution that deals at server level. Any help is highly appreciated. Thanks and Regards, Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Last Page Regenration

2006-11-08 Thread Balwinder
(authentication). I want this to implement without cookies. Any help would be highly appreciated. Thanks and Regards, Balwinder Kumar - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Lost Error Message!!

2006-11-13 Thread Balwinder
Hi!! Iam losing error message when iam setting redirect=true in action mapping, iam doing this to avoid resubmit of data on page refresh ie if user press F5 function key. Any help would be highly appreciated. Thanks and Regards, Balwinder Kumar

Re: Last Page Regenration

2006-11-13 Thread Balwinder
.to.Filter myFilter *.do Just Remember Writing Filters is trivial. Chetan -Original Message----- From: Balwinder [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 2:56 PM To: Struts Users Mailing List Subject: Last Page Regenration Hi All !! I have a situa

Re: Lost Error Message!!

2006-11-13 Thread Balwinder
that when you use redirect= true a new request is built(when the redirect is made) and there you loose all your data that is in the request. To avoid the resubmit there is others solutions. Regards, Juan -Mensaje original- De: Balwinder [mailto:[EMAIL PROTECTED] Enviado

Dynamically adding row!

2006-11-14 Thread Balwinder
Hi All! I am trying to add a row in a table dynamically to add new record in Struts web application. Iam using struts 1.1 and need to implement non-Ajax solution. Will display tags has solution to this situation? Any help will be appreciated. Thanks and Regards, Balwinder Kumar

Re: i18n database backed

2010-02-12 Thread Balwinder Kumar
Chris, What sort of benefit database will offer over properties files? Regards, Balwinder Kumar CRANFORD, CHRIS wrote: Anyone have any suggested ways to support i18n internationalization backed by a database table rather than property files

Struts2-plugin install error

2010-12-07 Thread Balwinder Kumar
ution: default-install}] [INFO] Installing C:\Struts\struts2\plugins\pom.xml to C:\Users\Balwinder\.m2\repository\org\apache\struts\struts2-plugins\2.2.2-SNAPSHOT\struts2-plugins-2.2.2-SNAPSHOT.pom [INFO] ---

Re: Struts2-plugin install error

2010-12-08 Thread Balwinder Kumar
Thanks Burton. Your suggestion got this problem resolved. On 08-12-2010 06:43, Burton Rhodes wrote: You may have a corrupt file in your local repository. Try deleting the C:\Users\Balwinder\.m2\repository\org\apache\struts directory and try again On Tue, Dec 7, 2010 at 10:26 AM

Re: Jasper Plugin cannot find file

2009-04-21 Thread Balwinder Kumar
I would suggest that first give the complete absolute path and check if the program is working fine, just to ensure, there is a problem with path only. Once established problem is with path only, I may help you further. Regards, Balwinder Kumar Security Management wrote: I'm usin

Re: deploying struts2 at godaddy dedicated server - general question

2009-06-21 Thread Balwinder Kumar
This is probably due to the fact that the version of Java useed in deployment environment is lower than the version of Java used for compiling Hibernate classes. Dimitrios Christodoulakis wrote: It seems that indeed the filters are not starting properly: The catalina.out log indicates the fol

Initializing Application

2009-07-15 Thread Balwinder Kumar
Hi All, I am trying to develop a framework based on Struts 2, I am finding it very difficult to decide where to put the code that is generally called in ActionServlet init method. Any pointer towards this. Thanks in advance. Regards, Balwinder Kumar

Re: Initializing Application

2009-07-15 Thread Balwinder Kumar
Thanks Pawel and David for your response. I would like to evaluate both option before proceeding. Regards, Balwinder Kumar Paweł Wielgus wrote: Hi, i'm initing my apps by implementing ServletContextListener and registering it in web.xml like

Re: javax.el.ELException Select Tag

2009-10-30 Thread Balwinder Kumar
org.apache.commons.collections.map.ListOrderedMap will preserve the order. Regards, Balwinder Kumar Bhaarat Sharma wrote: however, this does not gurantee the order (because of the HashMap)... something else can be used to preserve the order On Thu, Oct 29, 2009 at 12:31 PM, Bhaarat Sharma

RE: how can i use two properties files?

2006-09-19 Thread Balwinder Kumar
Hi Configure struts config like this in jsp you can use image message resources as and default message resources can be used as I hope this would solve your problem. Bals -Original Message- From: SrinivasaReddy [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 19, 2006 5:51 PM