RE: [Friday] struts and email

2006-04-27 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi Braun,

After upload file you have to save that in local or any where then attach.
I think you are not saving file.
Try this.

Thanks,
Jeeva.P

-Original Message-
From: Braun, James F [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 28, 2006 9:18 AM
To: Struts Users Mailing List
Subject: [Friday] struts and email

The goal is to upload a file and have it automatically emailed to a
recipient. 
 
In my .jsp page I have:
   
 
In my action form I have:
  private FormFile attachment;
 
My email code looks like this:
  void sendMessage()
  {
try // multipart/mixed
{
  // Get system properties
  Properties props = System.getProperties();
 
  // Setup mail server
  props.put("mail.smtp.host", DCL.emailHost);
 
  // Get session
  Session session = Session.getDefaultInstance(props, null);
 
  // Define message
  MimeMessage message = new MimeMessage(session);
 
  // from
  message.setFrom(new InternetAddress(from));
  // to
  message.addRecipient(Message.RecipientType.TO, new
InternetAddress(to));
  // subject
  message.setSubject(subject);
 
  // create multipart container
  Multipart multipart = new MimeMultipart();
 
  // message text
  BodyPart messageBP = new MimeBodyPart();
  messageBP.setText(text);
  multipart.addBodyPart(messageBP);
 
  // attachment
  if(attachment != null)
  {
try
{
  ByteArrayInputStream in = new
ByteArrayInputStream(attachment.getFileData(),0,attachment.getFileSize()
);
  MimeBodyPart mimein = new MimeBodyPart(in);
  mimein.setFileName(attachment.getFileName());
 
  //DataSource source = new MimePartDataSource(mimein);
 
  //MimeBodyPart attachBP = new MimeBodyPart();
  //attachBP.setDataHandler(new DataHandler(source));
 
  //attachBP.setFileName(attachment.getFileName());
  multipart.addBodyPart(mimein);
}
catch(MessagingException ex1)
{
}
catch(FileNotFoundException ex1)
{
}
catch(IOException ex1)
{
}
  }
 
  // assemble parts
  message.setContent(multipart);
 
  // Send message
  Transport.send(message);
}
catch(MessagingException ex)
{
}
  }
 
The problem is that the file is corrupted when it gets delivered. It
starts out as a 17k file and gets delivered as a 13k file.
 
Can anyone help point out where I'm going wrong and/or a better way to
do this? It's driving me nuts. (nothing to pack a lunch for I admit)
 
Thanks, J.



J. Braun
Polaroid Corp.
Waltham MA USA
+1 781.386.6871
+1 781.424.1159 mobile
[EMAIL PROTECTED]  
 
Excellence through execution.
 
 

-- 
This transmission is intended only for use by the addressee(s) named herein
and may contain information that is proprietary, confidential and/or legally
privileged. If you are not the intended recipient, you are hereby notified
that any disclosure, copying, distribution, or use of the information
contained herein (including any reliance thereon) is STRICTLY PROHIBITED. If
you received this transmission in error, please immediately contact the
sender and destroy the material in its entirety, whether in electronic or
hard copy format. Thank you.



-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



RE: jsp with ajax

2006-03-21 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Use AjaxAnywhere tags.
That can be used both in jsp and jsf. That's very cool.

<%@ taglib uri="http://ajaxanywhere.sourceforge.net/"; prefix="aa" %>


 
ajaxAnywhere.formName = "yourform";


Your area to be refresshed



ajaxAnywhere.getZonesToReload = function(url,submitButton) {
var frm=document. yourform;
 
if((frm.actioncondition.value!="SAVE")&&(frm.actioncondition.value!="CANCEL"
)&&(frm.actioncondition.value!="INSERT")){
   return " area ";
   }
}
ajaxAnywhere.formName = " yourform ";
ajaxAnywhere.substituteFormSubmitFunction();
ajaxAnywhere.substituteSubmitButtonsBehavior(true);
  


For instance validation you have write separate XMLHttpRequest to handle
this.


-Original Message-
From: gomathi [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 22, 2006 11:08 AM
To: user@struts.apache.org
Subject: jsp with ajax



Hai
In our project use jsp with ajax.How to include ajax technique in our
project
anybody knows
in which tutorial follows this.
any samples
kindly regards
gomes





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



Resource bundle from Database

2006-02-20 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

In my application, all labels, headers and titles and messages are comes
from database.

For this issue I have created a class that return messages, but it issues
performance way.

Is there any way to set messages in Resource bundle in dynamic / at
run-time?

 

Please let me know.

 

Have a nice day.

 

Regards,

JEEVANANTHAM PARAMASAMY, 



 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



need help in tomhawk calendar

2006-01-12 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

For the popup datepicker I am trying to use the t:inputCalendar tag. In the
examples it is working fine.

When I try to implement in to my application it gives java script error.

Please help me.

Thanks in advance,

 

jeeva

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



need Calendar in JSF

2006-01-12 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

Is there any component in JSF for date picker?

 

Please let me know.

 

Thanks n advance

 

jeeva

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



Help about displaytag data

2006-01-11 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

I am using display tag in my application for LOV. For that I set values from
database at runtime that is dynamically.

Using org.apache.commons.beanutils.RowSetDynaClass. it is setting data fine
way. 

But not in correct order which is in my query, which is passed at runtime.

 

Here is my code:

 

java.sql.Connection con = cm.getConnection() ; // just open a connection

  java.sql.Statement stmt = con.createStatement();

  java.sql.ResultSet rs = stmt.executeQuery(query);

  org.apache.commons.beanutils.RowSetDynaClass resultSet = new
org.apache.commons.beanutils.RowSetDynaClass(rs, true);

  stmt.close();

  con.close();

  request.setAttribute("results", resultSet);

 

For example, select id, name from table. It should show like id and name.
But now it display like name and id.

Please let me know what to do to get correct order columns in this way or
tell me any other way to set data for display tag from database.

 

Thanks,

 

 

jeeva

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



Need help about data repeater in JSF

2006-01-11 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

In my screen I used data repeater tag from jsf. It's working fine me. Now I
need to call a popup called as LOV from that textbox. When we click an image
it will open a popup window. From that popup we need to set values to the
main window. 

Here is my problem for setting values I need that name of the text field
.how can we get that name?

if we get the row number, we can set values.

 

Please let me know for this.

 

Thanks in advance,

 

jeeva

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



which one is best for DATA PERSISTENCE

2006-01-09 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

For my project we are doing lot of database actions such as inert, update,
delete and read.

For that which java frameworks is best to use?

 

Hibernate or iBATIS or anyother?

 

Please let me know.

 

Regards,

JEEVANANTHAM PARAMASAMY, 



 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



Need Help in Dispaly Tag

2006-01-05 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

For data grid I am using display Tag.

I have added radio button as a first column of my table.

My problem is 

how can I get data when the radio is checked (one row only in which row
radio is checked)?

 

Please let me know.

 

Regards,

JEEVANANTHAM PARAMASAMY, 



 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



help need about jsf repeater component

2006-01-02 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

 

In my project I am using the JSF repeater table.

All are working properly. Finally I need to save in to database. I that
method it returns a collection/String I can't understand.

Like Bean[one=one, teo=teo, thr=thr]. How can I insert/update into the table
these values.

If anyone worked on that please let me know how can we update into the
table?

 

 

Regards,

JEEVANANTHAM PARAMASAMY, 



 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



RE: Regarding Log4j

2005-12-27 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
1.Download log4j.jar from here
http://jakarta.apache.org/log4j/docs/download.html

Put the jar in web-inf/lib

2.Create log4j.xml in your WEB-INF/classes directory.

++ sample log4j.xml +

***





 



 

  

  



  



  

 

  





  





3.Create instance for your class log4j

private Logger logger = Logger.getLogger(yourclass.class);

 

then you can any where in your class instead of System.out.println()any one
of the below.

logger.debug();

logger.info();

logger.error();

logger.Warn();

logger.fetal();

 

that's all.

 

Regards,

Jeeva.P

 

-Original Message-
From: Vasumathi [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 28, 2005 9:28 AM
To: Struts Users Mailing List
Subject: Regarding Log4j

 

 

 

Hi Guys

  I am working on struts for last one year. In my current project we are
using 

Log4j for Logger.i like to know how to configure and use in our application.

particularly we are using Ant tool.

 Anyone can help me please.

its very urgent please

regards

vasumathi.p

 

-

To unsubscribe, e-mail: [EMAIL PROTECTED]

For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



how to use struts menu in shale?

2005-12-23 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
How can we integrate struts menu in shale framework?

 

Regards,

JEEVANANTHAM PARAMASAMY, 
Software Engineer, 
3i - INFOTECH Limited, 
Alwarpet, 
Chennai - 600018. 

Phone: 044 24678000 extn:418
Cell no: 09840933967

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



custom server side validation in shale

2005-12-22 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

Please let me know about how can we do server side validation in shale. Like
user validation, 

when user enters some value that time we need to check with database whether
that is correct one or not. 

If not that will through a alert not message on the screen.

 

 

Regards,

JEEVANANTHAM PARAMASAMY, 
Software Engineer, 
3i - INFOTECH Limited, 
Alwarpet, 
Chennai - 600018. 

Phone: 044 24678000 extn:418
Cell no: 09840933967

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



instance validation struts shale?

2005-12-22 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
 

Can we do instance validation for particular field in SHALE? Like onblur()
event.

Please let me know

Regards,

JEEVANANTHAM PARAMASAMY, 
Software Engineer, 
3i - INFOTECH Limited, 
Alwarpet, 
Chennai - 600018. 

Phone: 044 24678000 extn:418
Cell no: 09840933967

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



SEVERE: Faces context not found. getResponseWriter will fail. Check if the FacesServlet has been initialized at all in your web.xml.

2005-12-21 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
I am using tomcat5.9 and struts shale. When I run application. I got this
error.

 

Dec 22, 2005 10:34:18 AM javax.faces.webapp.UIComponentTag
setupResponseWriter

SEVERE: Faces context not found. getResponseWriter will fail. Check if the
FacesServlet has been initialized at all in your web.xml.

 

 

Regards,

JEEVANANTHAM PARAMASAMY, 
Software Engineer, 
3i - INFOTECH Limited, 
Alwarpet, 
Chennai - 600018. 

Phone: 044 24678000 extn:418
Cell no: 09840933967

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



validation error messages in JSF

2005-12-21 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,

We can do validation in JSF not by java script, on that time the error
message will appear on the screen. For us, we don't need like that message
in screen. We need to show as java script alert box.

Is there any way to do this?

 

 

Regards,

JEEVANANTHAM PARAMASAMY, 
Software Engineer, 
3i - INFOTECH Limited, 
Alwarpet, 
Chennai - 600018. 

Phone: 044 24678000 extn:418
Cell no: 09840933967

 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



struts menu target

2005-12-21 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
I am using struts menu (TAB). For this how can we set location? I need to
call another jsp in the same DIV.

[JEEVANATHAM P. /BPCRP/INFOTECH/VASHI] 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



need Tabbed page

2005-12-20 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Hi all,
For my application I need a tabbed page. I tried using css but that's not
sufficient for me. Please let me know is any other way in jsp to create
tabbed page with scrolling also when number of tabs are increased.

My page has a header part and details part. We need tab on details part.

Regards
 
[JEEVANATHAM P. /BPCRP/INFOTECH/VASHI] 

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



RE: Implementation of new row functionality of HTML table in Struts

2005-12-19 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
Same way I need to create a table and all fields are editable when user
double clicks.
Irfan can you tell me how can we create a new row using java script?


-Original Message-
From: Irfan Shaikh [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 19, 2005 1:12 PM
To: Struts Users Mailing List
Subject: Re: Implementation of new row functionality of HTML table in Struts

No, user can add has many row he needed before submit... I had just added
one row to handle this scenario... It should work for as many row user has
added...


On 12/19/05, atta-ur rehman <[EMAIL PROTECTED]> wrote:
>
> okay, so you're saying use can add only ONE row dynamically before submit?
> and that the newly added row's HTML code is:
>
> 
>  
>   value="John">
>   value="Mark">
>  
>  
>
>
> if that's the case, in your ActionForm's reset method, detect that user
> has
> added a new row, maybe thru request.getParameter("customer[?].firstName")
> where ? will be an integer 0..n where reuqest.getParameter would return
> null
> for n+1. once you've done that do a:
>
> Customer[] customers = new Customer[n];
> form.set("customer", customers);
>
> see if that helps.
>
> ATTA
>
>
> On 12/18/05, Irfan Shaikh <[EMAIL PROTECTED]> wrote:
> >
> > Once again Generated HTML :
> >
> >  > action="/GenerateHTMLTable/listtext.do">
> >
> > 
> > 
> >   
> >   
> >
> > 
> > 
> > 
> > 
> >   
> >
> >   
> >
> > 
> >   
> >> value="Irfan">
> >
> >> value="Shaikh">
> >   
> > 
> >
> > 
> >   
> >> value="Maruf1212">
> >> value="Dolani">
> >> value="Mumbai">
> > 
> >
> > 
> >   
> >
> >> value="Azima12">
> >> value="Kacchi">
> >> value="Pune">
> > 
> >
> > 
> >   
> >> value="Ruhi11133">
> >> value="Khan">
> >> value="Pune">
> > 
> >
> >
> > 
> >   
> >> value="John">
> >> value="Mark">
> >   
> >  (Hardcoded HTML row)
> >
> >   
> >
> >
> > 
> >
> >
>
>

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."



RE: how to customize applicationresources

2005-12-16 Thread JEEVANATHAM P. /BPCRP/INFOTECH/VASHI
I am also looking like this,
If any one know please let me know.


-Original Message-
From: Sony Thomas [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 16, 2005 3:55 PM
To: user@struts.apache.org
Subject: how to customize applicationresources

Hi all,

I want to read my application resources from a database rather than 
using properties file. Do I need to extends MessageResoursces class in 
order to do this ?? Is there any examples of this or is ther any links 
which give some idea, how to do this??

thanks all

Sony

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Greetings!

 


ICICI Infotech is now 3i Infotech.


The e-mail addresses of the company's employees have been changed to @3i-infotech.com. You are requested to take note of this new e-mail ID and 
make use of the same in future

 
"This e-mail message may contain confidential, proprietary or legally 
privileged information. It should not be used by anyone who is not the original 
intended recipient. If you have erroneously received this message, please 
delete it immediately and notify the sender. The recipient acknowledges that 3i 
Infotech or its subsidiaries and associated companies, (collectively "3i 
Infotech"), are unable to exercise control or ensure or guarantee the integrity 
of/over the contents of the information contained in e-mail transmissions and 
further acknowledges that any views expressed in this message are those of the 
individual sender and no binding nature of the message shall be implied or 
assumed unless the sender does so expressly with due authority of 3i Infotech. 
Before opening any attachments please check them for viruses and defects."