aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes Question on disabling textfield but maintaining value entered via jquery function Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "Question on disabling textfield but maintaining value entered via jquery function" Watch "Question on disabling textfield but maintaining value entered via jquery function" New topic
Author

Question on disabling textfield but maintaining value entered via jquery function

Melinda Savoy
Ranch Hand

Joined: Jun 21, 2005
Posts: 375

I have a text field called toAccountAmt that is auto populated with the reverse amount of what is entered in the fromAccountAmt field. However, I need to be able to populate the reverse amount in the toAccountAmt field but prevent the user from being able to change it.

I tried to disable as stated below but the disable function remove the value when the form is submitted. I need to maintain the value that I'm entering via the code below when I click the submit button.

Is there a way to do what I'm needing? Any help/direction would be greatly appreciated. Regards.

Here is my jquery code:

Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56230
    
  13

As I mentioned in your JSF topic, you need readOnly, not disabled.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Melinda Savoy
Ranch Hand

Joined: Jun 21, 2005
Posts: 375

I did not see a reply on the incorrect post to the JSF forum.

That got it. Thanks.
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56230
    
  13

Hmm, was removed for some reason. In an case, readOnly will disallow input while keeping the input submittable.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Question on disabling textfield but maintaining value entered via jquery function
 
Similar Threads
Question on .submit and reloading form values AFTER the submit button is clicked
jQuery and JSF - NEWBIE question
trying to populate hidden field on my JSF form using jQuery
Question on using jQuery's .attr AFTER form is submitted
Question on making a dropdown list read-only