Re: OT: Best AJAX framework

2005-11-10 Thread Ovidiu EFTIMIE
You should also take a look at www.openrico.org On 11/8/05, Joe Germuska <[EMAIL PROTECTED]> wrote: > At 4:43 PM +0100 11/8/05, Nicolas De Loof wrote: > >I'm using DWR on my webapp for navigation in a > >table, using a "Page 1 2 3 ..." footer. > >DWR makes it realy simple based on a List put > >in

Re: [OT]Open source Backup software for windows

2005-09-28 Thread Ovidiu EFTIMIE
What I recomend is SyncBack - it's free but it's not open source. SyncBack is our freeware program that helps you easily backup and synchronise your files to: the same drive; a different drive or medium (CDRW, CompactFlash, etc); an FTP server; a Network; or a Zip archive. http://www.2brightsp

Re: Printing Bills

2005-07-06 Thread Ovidiu EFTIMIE
The simplest way to go is to generate RTF with this . http://javaby.sourceforge.net/. At least this is what I'm using for quite some time and it works pretty well. Ovidiu On 7/6/05, Aleksandar Matijaca <[EMAIL PROTECTED]> wrote: > Interesting, we didn't have that problem at all. I just wish that

Using ActioForm in ActionForm practice

2005-06-14 Thread Ovidiu EFTIMIE
Hi, I've recently started working on a project that uses Struts 1.2 and Hibernate - and I'm in the dev team. Nothing unusual here. The project architecture is made in such way that ActionForms are an almost 1-1 mirror with the the Hibernate mapped entities. For example : if I have an entity A that

Re: repopulating dropdown menus when validation errors occur

2005-04-13 Thread Ovidiu EFTIMIE
You can find the complete solution here http://www.reumann.net/struts/articles/request_lists.jsp On 4/13/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Mallik, > > The way I have always made this work in the past is to call the validate > method on the form bean myself in the action rather t

Re: redirectig to WORD files

2005-01-27 Thread Ovidiu EFTIMIE
For the word document to automatically open in the browser you should do this on the client side : - double click on My Computer - Tools menu ->Folder Options -> File Types - Search for the DOC extension and then click on Advanced. Uncheck : Confirm open after download. Ovidiu On Wed, 26 Jan 20

Re: Reloading plugin

2005-01-25 Thread Ovidiu EFTIMIE
y point of view accessors are the best thing to change a value withing > asking the value in the database. But you can store the new value in view of > keeping the same configuration when you restart the server after a release > ... or a crash :p > > Regards, > > Cedric >

Re: Reloading plugin

2005-01-25 Thread Ovidiu EFTIMIE
uld be a solution if I stored the plugin configurations in the > database. > > Thanx. > > On Tue, 25 Jan 2005 15:45:45 +0100, Cédric Levieux > <[EMAIL PROTECTED]> wrote: > > What about, like I said, a Web Administration Page for your plugin and > > change the plugin

Re: Reloading plugin

2005-01-25 Thread Ovidiu EFTIMIE
on with that ? > > Cedric > > On Tue, 25 Jan 2005 16:42:14 +0200, Ovidiu EFTIMIE <[EMAIL PROTECTED]> wrote: > > The thing is that the application must be running without any > > interupption. I was thinking about a plugin that watches over the > > other ones inspect

Reloading plugin

2005-01-25 Thread Ovidiu EFTIMIE
m for > configuring your plugins, replacing the values inside by setters. > > Hope it can help, > > Cedric > > - Original Message - > From: "Ovidiu EFTIMIE" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Tuesday, January 25,

Reloading plugin

2005-01-25 Thread Ovidiu EFTIMIE
Hi, I have an web apllication, using several plugins that I've made, and I want to be able to change the plugin configuration without stopping the Tomcat. Does anyone knows if it's possible ? Thanx, Ovidiu - To unsubscribe, e-mai

Re: Creating a Struts Plugin,

2004-09-14 Thread Ovidiu EFTIMIE
I use something like this OCIConfig is the configuration read from struts-config.xml public class OCIPlugin implements PlugIn{ protected static Log log = LogFactory.getLog(OCIPlugin.class); public void init(ActionServlet servlet,ModuleConfig config) throws ServletException{ try{ OracleOCIConnecti

Re: [FRIDAY] GMail invites

2004-09-10 Thread Ovidiu EFTIMIE
I have 4 invites for anyone that didn't get one already - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Preventing Page Caching

2004-09-09 Thread Ovidiu EFTIMIE
I ussualy use this <% response.setHeader("Expires", "Sat, 6 May 1995 12:00:00 GMT"); response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate"); response.addHeader("Cache-Control", "post-check=0, pre-check=0"); response.setHeader("Pragma", "no-cache"); %> On Wed, 8 Sep 2

Re: [general] managing common files

2004-09-03 Thread Ovidiu EFTIMIE
Have you tested Maven ? http://maven.apache.org On Fri, 3 Sep 2004 09:26:37 -0700, Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Dan Allen [mailto:[EMAIL PROTECTED] > > Sent: Friday, September 03, 2004 9:17 AM > > To: Struts Users Mailing List > > Subject:

Re: [OT] Flex, openamf, flash remoting, or ?

2004-08-27 Thread Ovidiu EFTIMIE
I think Laszlo is a bit faster and simpler to set up, than Flex, but Macromedia has Flex Builder which is a very,very useful tool that helps you visualy design your interfaces. Ovidiu - Original Message - From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Fri, 27 Aug 2004 10:52:22 -0400

Re: Select One Row

2004-08-26 Thread Ovidiu EFTIMIE
When you make the select to retrive the data get your triple key in one column like this select key1 || '#' || key2 || '#' || key3 key from mytable In your Action form you'll have private String key ; //setter + getter In your TO private String key1; private String key2; private String key3; /

Re: DynaForm external Xml Source

2004-08-19 Thread Ovidiu EFTIMIE
You can split your struts-config.xml in 12-13 files and by subapplication .Then specify them in web.xml. action org.apache.struts.action.ActionServlet config WEB-INF/struts-config.xml,WEB-INF/SUBAPP_1/struts-one-config.xml,WEB-INF/SUBAPP_1/struts-two-config.xml,WEB-INF/SUBAPP_1/struts-three-config

Re: Struts with Flex

2004-08-17 Thread Ovidiu EFTIMIE
Well that's another issue. On Sat, 21 Aug 2004 12:37:40 -0400, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Can anyone afford it?!!! > > |-+> > | | Ovidiu EFTIMIE | > |

Re: Struts with Flex

2004-08-17 Thread Ovidiu EFTIMIE
Nobody here tried Flex with Struts ? It really seems a good choice for RIA web applications, but I'd like to know more from people who have use it. Ovidiu On Sat, 14 Aug 2004 21:47:30 +0300, Ovidiu EFTIMIE <[EMAIL PROTECTED]> wrote: > Hi, > Has anyone any experience wit

Struts with Flex

2004-08-14 Thread Ovidiu EFTIMIE
Hi, Has anyone any experience with Struts and Flex (http://www.macromedia.com/software/flex/ , http://www.macromedia.com/devnet/flex/articles/struts.html) that would like to share ? How about Struts+XML+(XSLT/Flex) ? Regards, Ovidiu

Re: html:file using an image button

2004-08-10 Thread Ovidiu EFTIMIE
I'm using html:file and it works just fine . In my previous reply I made a copy&paste from the generated html. The most important lines are these 2 document.forms[0].btnFichier.click(); document.forms[0].nomFichier.value=document.form["frmFichier"].btnFichier.value; On Tue, 10 Aug 2004 12:21

Re: html:file using an image button

2004-08-10 Thread Ovidiu EFTIMIE
Use something like this function getNomFichier(){ document.forms[0].btnFichier.click(); document.forms[0].nomFichier.value=document.form["frmFichier"].btnFichier.value; } Ovidiu On Tue, 10 Aug 2004 08:27:49 -0700, Michael McGrady <[EMAIL PROTECTED]> wrote: > At 07:41 AM 8/10/20