Re: Textarea maxlength issue Struts 6.0.0

2022-07-21 Thread Lukasz Lenart
czw., 21 lip 2022 o 18:07 Matt Williams napisał(a): > > For Struts 6.0.0: > The freemarker template for the s:textarea tag is wrong when using > 'maxlength' attribute. It puts the value inside the text area. This is already addressed in incoming 6.0.1 release https://issues.apache.org/jira/brow

Textarea maxlength issue Struts 6.0.0

2022-07-21 Thread Matt Williams
For Struts 6.0.0: The freemarker template for the s:textarea tag is wrong when using 'maxlength' attribute.  It puts the value inside the text area.   Matt

Dojo textarea

2010-05-04 Thread am am
Hi, I am new in struts. It seems that the textarea of dojo can not be configured. E.g. in the following trivial jsp the editor part of textarea takes all of the browser and the textarea itself is not constrained to 3 by 3.(also there is no border). Why is this? Additionally looking in google i

issue with escape characters in struts2 textarea/textfield

2009-10-26 Thread monika budhiraja
Hi: I am facing a problem of escape characters. In struts2, if we want to spit out property of any field, we can use, option as escape="false". But, same option is not available for textarea or form field. Because of this data gets double escaped in forms and user see escape entities

Customize Dojo Textarea Toolbar

2009-09-24 Thread h-m-g
Hi All, I am using Dojo Textarea, and it works fine but I am not able to change the toolbar options. Here is the code, it doesn’t not change any thing textGroup;|;justifyGroup Any idea how to make it work Thanks HMG -- View this message in context: http://www.nabble.com/Customize-Dojo

How to split length text line in textarea

2009-01-21 Thread Seshagiri V
Hollow All, I used I expect correct solution Thank you, Seshagiri V seshagi...@kensium.com. US Main: 877 KENSIUM (536.7486) US Fax: 312.242.3029 Kensium 200 S Wacker Dr, Suite 3100 Chicago, IL 60606 Confidentiality Note: ---

Re: textarea Encoding

2008-07-11 Thread Joachim Rohde
Pizarro schrieb: Hi All, I've a problem with textarea encoding. I use struts 2.0.11. I put things like áí or ü into a text area, then I pass that value to others pages (through session) and the the characters appear as "?". I looked forums and all problems had a Db involved, not

textarea Encoding

2008-07-11 Thread Juan Pablo Pizarro
Hi All, I've a problem with textarea encoding. I use struts 2.0.11. I put things like áí or ü into a text area, then I pass that value to others pages (through session) and the the characters appear as "?". I looked forums and all problems had a Db involved, not mine. Any idea?

struts2 ajax theme and textarea

2007-08-14 Thread Clement, Steve
I am working with Struts2 within a tabbed panel in an ajax theme. In one of the divs, I am using the in a form that uses the ajax theme. The problem is that the content of the textarea does not submit the new content if I have the notifyTopics attribute set in the submit tag. This problem only

Re: missing textarea wrap attribute

2007-07-09 Thread Andreas Hartmann
Hello! I took the source code an implemented the missing attribute myself. Kind regards, Andreas Hartmann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

missing textarea wrap attribute

2007-07-09 Thread andihartmann
Hello! I'm missing the textarea wrap attribute in struts 1.2.8. I can't use the workaround with the hard coded , because I need the value of the textarea later on in the application. I read about the possibility to extend existing tags - but I didn't found any information abo

RE: Flexible textarea

2007-05-16 Thread Jose Cardoso
Hi there ! No need to reply the "Flexible textarea" question. It was a matter of counting the number of words and passing it as a string to the jsp value for the cols bit. Like: : Thanks anyaway Jose -Original Message- From: Jo

Flexible textarea

2007-05-16 Thread Jose Cardoso
Hi everyone ! I want to create a non-fixed size textarea. I want it to resize itself depending on the amount of text received. For example if it receives 20 characters the size should be different to when it receives 200 characters without the need of scrolling. Is there functionality for it

RE: textarea

2006-06-22 Thread Miller, Andy
- From: Mukta [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 9:42 PM To: 'Struts Users Mailing List' Subject: RE: textarea Use following javascript function to limit the number of characters to 255 in a textbox: function checkLength(name) { var textBox = document.getElem

RE: textarea

2006-06-21 Thread Mukta
Sorry I mean "textarea". I have mistakenly written "textbox" for "textarea". Anyways, its just a variable name. Doesn't affect the functionality. -Original Message- From: Mukta [mailto:[EMAIL PROTECTED] Sent: Thursday, June 22, 2006 10:12 AM To: 

RE: textarea

2006-06-21 Thread Mukta
lue = textBox.substring(0,255); } } And call this function on onkeyup="checkLength('textareaName');" onmouseout="checkLength('textareaName');" -Original Message- From: Abhimanyu Koul [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 3:48 PM To:

RE: textarea

2006-06-21 Thread Swapan Mazumdar
Hi Abhimanyu, Wouldn't you do the validation the "struts" way? Do the validation, chop and warn. -Original Message- From: Truong Xuan Tinh [mailto:[EMAIL PROTECTED] Sent: 21 June 2006 12:47 PM To: Struts Users Mailing List Subject: Re: textarea You have to write a java

Re: textarea

2006-06-21 Thread Bart Busschots
Abhimanyu Koul wrote: how can i set the maximum number of chars in a textarea. i can only set columns and rows. Regards, Abhimanyu Koul FinEng Solutions (P) Ltd. Mobile : +91 9819510090 The only way to do this would be with JavaScript. You'd do something like this: fun

Re: textarea

2006-06-21 Thread Truong Xuan Tinh
You have to write a javascript function to check in the following event: onFocus, onChange and onKeyUp of the textarea. Regards, Abhimanyu Koul wrote: > how can i set the maximum number of chars in a textarea. i can only set > columns and rows. > > Regards, > Abhimanyu Koul > F

RE: textarea

2006-06-21 Thread nageshkumar.siddu
06 3:48 PM To: Struts Mailing list Subject: textarea how can i set the maximum number of chars in a textarea. i can only set columns and rows. Regards, Abhimanyu Koul FinEng Solutions (P) Ltd. Mobile : +91 9819510090 The information contained in this electronic message and any attachments to thi

textarea

2006-06-21 Thread Abhimanyu Koul
how can i set the maximum number of chars in a textarea. i can only set columns and rows. Regards, Abhimanyu Koul FinEng Solutions (P) Ltd. Mobile : +91 9819510090

Re: maxlength validation on textarea

2005-10-10 Thread paul
Thanks Niall - that fixed it. Paul Niall Pemberton writes: You name is wrong, try the following maxlength 500 Niall - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: maxlength validation on textarea

2005-10-10 Thread Niall Pemberton
You name is wrong, try the following maxlength 500 Niall - Original Message - From: <[EMAIL PROTECTED]> Sent: Monday, October 10, 2005 12:00 PM > I am trying to do a maxlength validation on a textarea but it always fails > validation however many characters

maxlength validation on textarea

2005-10-10 Thread paul
I am trying to do a maxlength validation on a textarea but it always fails validation however many characters I put in the field (even if it is empty). The textarea tag in my jsp is: titleKey="comments.form.alt" altKey="comments.form.alt" rows="5" styleCla

Re: JSP with textarea/Form getter and german special character problem

2005-08-29 Thread Andreas Scheucher
#x27;s your jsp page encoding? try set the page directive to: <%@ page contentType="text/html;charset=iso-8859-1" session="true" %> or use iso-8859-15 is you want the €-sign regards Leon On Mon, 2005-08-29 at 08:37 +0200, Andreas Scheucher wrote: Hello, I have go

Re: JSP with textarea/Form getter and german special character problem

2005-08-29 Thread Leon Rosenberg
e €-sign regards Leon On Mon, 2005-08-29 at 08:37 +0200, Andreas Scheucher wrote: > Hello, > > I have got a JSP with an textarea. Whene i read out the value over the > getter from the related formBean, i get wrong characters for german > spezial characters: > äöüÄÖÜß ( rig

JSP with textarea/Form getter and german special character problem

2005-08-28 Thread Andreas Scheucher
Hello, I have got a JSP with an textarea. Whene i read out the value over the getter from the related formBean, i get wrong characters for german spezial characters: äöüÄÖÜß ( right encoding is ä ö ü Ä ß becomes to äöüÃ?Ã?Ã?Ã? Can anybody tell me, what to do to get the characters in

RE: Not getting submitted values from textarea in logic:iterate

2005-07-21 Thread Neil Aggarwal
s.apache.org > Subject: Re: Not getting submitted values from textarea in > logic:iterate > > > Your tag is using the 'name' attribute, > which tells it to > associate itself with a specific bean instead of the > containing form bean. > > >> in

Re: Not getting submitted values from textarea in logic:iterate

2005-07-21 Thread Laurie Harper
nfo on how your business can reduce operating costs by 17% or more in 6 months or less! http://newsletter.JAMMConsulting.com -Original Message- From: Neil Aggarwal [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 20, 2005 10:41 AM To: 'Struts Users Mailing List' Subject: Not getting

RE: Not getting submitted values from textarea in logic:iterate

2005-07-21 Thread Neil Aggarwal
://newsletter.JAMMConsulting.com > -Original Message- > From: Neil Aggarwal [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 20, 2005 10:41 AM > To: 'Struts Users Mailing List' > Subject: Not getting submitted values from textarea in logic:iterate > > > Hello: >

RE: TextArea

2005-07-20 Thread Folashade Adeyosoye
: Struts Users Mailing List Subject: Re: TextArea Yep, not an option in HTML, gotta javascript it, or catch it on the server. Larry On 7/20/05, Mark Benussi <[EMAIL PROTECTED]> wrote: > Sadly, JavaScript I am afraid. > > -Original Message- > From: Vijay K Anand [mailt

Re: TextArea

2005-07-20 Thread Steve Bosman
On 7/20/05, Larry Meadors <[EMAIL PROTECTED]> wrote: > Yep, not an option in HTML, gotta javascript it, or catch it on the server. > > On 7/20/05, Mark Benussi <[EMAIL PROTECTED]> wrote: > > Sadly, JavaScript I am afraid. > > From: Vijay K Anand [mailto:[EMAIL PROTECTED] > > How to control char ma

RE: TextArea

2005-07-20 Thread Adrian_Rios
(909) 592-6411 Ext. 3863 e-mail: [EMAIL PROTECTED] -Original Message- From: Vijay K Anand [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 20, 2005 7:39 AM To: Struts Users Mailing List Subject: TextArea Hi Guys How to control char maxlength in ? Regards V

Not getting submitted values from textarea in logic:iterate

2005-07-20 Thread Neil Aggarwal
Hello: I have a DynaForm with some beans stored in an array: I have the form-bean declared as session scope for my actions: The persistent.Feature class has a field text with setText and getText accessors. When want wa

Re: TextArea

2005-07-20 Thread Larry Meadors
Yep, not an option in HTML, gotta javascript it, or catch it on the server. Larry On 7/20/05, Mark Benussi <[EMAIL PROTECTED]> wrote: > Sadly, JavaScript I am afraid. > > -Original Message- > From: Vijay K Anand [mailto:[EMAIL PROTECTED] > > How to control char maxlength in ? > -

RE: TextArea

2005-07-20 Thread Mark Benussi
Sadly, JavaScript I am afraid. -Original Message- From: Vijay K Anand [mailto:[EMAIL PROTECTED] Sent: 20 July 2005 15:39 To: Struts Users Mailing List Subject: TextArea Hi Guys How to control char maxlength in ? Regards Vijay

RE: TextArea

2005-07-20 Thread Brent Vaughn
You can use JavaScript to do it. That is how I have done it beforehand. -Original Message- From: Vijay K Anand [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 20, 2005 9:39 AM To: Struts Users Mailing List Subject: TextArea Hi Guys How to control char maxlength in ? Regards Vijay

TextArea

2005-07-20 Thread Vijay K Anand
Hi Guys How to control char maxlength in ? Regards Vijay - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How can I prepopulate a textarea struts form ?

2005-02-28 Thread Benedict, Paul C
ruary 28, 2005 1:14 PM To: user@struts.apache.org Subject: How can I prepopulate a textarea struts form ? Hi, How can I prepopulate a textarea struts form (using ) with dynamic data ? I can prepopulate a text area using <%=data%> , but I have some problem to preserve any updated data w

How can I prepopulate a textarea struts form ?

2005-02-28 Thread Ai Pham
Hi, How can I prepopulate a textarea struts form (using ) with dynamic data ? I can prepopulate a text area using <%=data%> , but I have some problem to preserve any updated data whenever the struts reload the page again (It's the same as replying an email and uploading some attac

Re: Dynamically Display in the Textarea Based on Menu Selection Made by Users

2004-09-24 Thread Hubert Rabago
for the 'Select Program Group'. And > there is a textarea right below that drop-down menu. > > Simply select a group from the drop-down menu, you > will see a description of that program group appears > in the textarea. > > I wonder how it is done. Because I am t

Re: Dynamically Display in the Textarea Based on Menu Selection Made by Users

2004-09-24 Thread Lucas Gonzalez Pearson
rnment Operations</option>"; programSelectionTable += "<option value=\"le\">Law Enforcement - Commissioned Officers Only</option>"; programSelectionTable += "<option value=\"ps\">Private Sector</option>"; programSelectionT

Dynamically Display in the Textarea Based on Menu Selection Made by Users

2004-09-24 Thread Caroline Jen
It seems to me that it can be done. Would you please just take a look at https://www.swern.gov/forms/enrollmeform.php and scroll down a little below half way. There is a drop-down menu for the 'Select Program Group'. And there is a textarea right below that drop-down menu. Simpl

Re: How To Show the Content of the Selected Page in a Textarea Dynamically?

2004-09-24 Thread Bill Siggelkow
One way is to use an onChange JavaScript listener on the drop-down that submits to an Action -- that Action retrieves the data for the textarea and forwards back to the original form. Here's a recent thread that will help: http://marc.theaimsgroup.com/?l=struts-user&m=1094142350

How To Show the Content of the Selected Page in a Textarea Dynamically?

2004-09-24 Thread Caroline Jen
I have a web page that displays a drop-down menu, a textarea, and a submit button. The drop-down menu is for users to select "one" from a list of pages. Once the page is selected, the content of that page is supposed to show up in the textarea and the user can start editing that p