Hello, ... Use the ONFOCUS and ONBLUR event attributes. In the ONFOCUS, clear the input value. In the ONBLUR, restore the default text if the input value is...
524
Shekar C. Reddy
powerobject
Mar 21, 2006 3:08 pm
My intention was to retain the step 1 in the current script and move steps 2 & 3 into a separate function (class) as part of a framework implementation. Now...
525
operationsengineer1@...
operationsen...
Mar 22, 2006 12:40 am
hi Manuel, i suspect you remember debugging som eof my code. i was using ONCHANGE to change the id in order to use CSS to change the background color of those...
526
Manuel Lemos
mallemos
Mar 22, 2006 1:10 am
Hello, ... What you are doing does not make any sense. You should change the style or class, not the id attribute. I only worked for you because you have ...
527
operationsengineer1@...
operationsen...
Mar 24, 2006 12:45 am
hi Manuel, i'm working on a project that requires several forms (3, to be exact), but the form values can't be submitted until the very end when i display all...
528
docu_valencia
Mar 24, 2006 7:27 pm
Hello Manuel and members. It's my first post, I have a simple question. How can I create a select where the options are called from a mysql database? I tried...
529
Manuel Lemos
mallemos
Mar 24, 2006 7:46 pm
Hello, ... If that is a simple select, there should be no problem. Just create an associative array with the values and options from the database and assign...
530
Manuel Lemos
mallemos
Mar 24, 2006 8:05 pm
Hello, ... If that is a simple select, there should be no problem. Just create an associative array with the values and options from the database and assign...
531
Manuel Lemos
mallemos
Mar 24, 2006 8:06 pm
Hello, ... What you can do is to define one form with all the fields of all pages. Then show only the fields to be edited in each page. Use assign subforms to...
532
Shekar C. Reddy
powerobject
Mar 24, 2006 9:20 pm
Thanks, Manuel. I haven't tried this yet and shall let you know when I'm done. ... fields ... fields on ... and ... populated ... and ... save the ... they ......
533
operationsengineer1@...
operationsen...
Mar 25, 2006 12:02 am
... i think i'm okay, so far. in my logic page, i need to define all form elements for the entire form. ... this makes sense. i have a form variable that ...
534
Manuel Lemos
mallemos
Mar 25, 2006 4:09 am
Hello, ... Sorry, I meant page where I said class. ... Set its SubForm parameter. ... Those fields that do not belong to the current page, should be also be ...
535
Shekar C. Reddy
powerobject
Mar 25, 2006 4:44 pm
Manuel, I'm getting this error when I set the ValidateOnlyOnServerSide to true for a field and when the validation fails. I find this line of text on on line...
536
Manuel Lemos
mallemos
Mar 25, 2006 4:56 pm
Hello, ... See what is the input name that you are specifying in the AddFUnction call. -- Regards, Manuel Lemos Metastorage - Data object relational mapping...
537
Shekar C. Reddy
powerobject
Mar 25, 2006 5:17 pm
The column name is Desc and the validation is min 100 chars. All the inputs have their names and IDs set. I noticed that the focus is getting set to neither...
538
Shekar C. Reddy
powerobject
Mar 25, 2006 5:18 pm
Its a valid column name (not the one with ValidateOnlyOnServerSide set to one) for AddFunction call and focus is set properly onload. thanks. ... to true ... ...
539
Shekar C. Reddy
powerobject
Mar 25, 2006 9:30 pm
Manuel, Never mind. I've found the problem. I had to do a reset() on the validation errors (verify) array before doing the AddFunction(). The line with the...
540
docu_valencia
Mar 27, 2006 6:31 pm
Hello again. I'm trying now to create a linked select connect with a mysql db. My problem is that nothing happens. I'm using a POST form and I have three...
541
operationsengineer1@...
operationsen...
Mar 27, 2006 6:39 pm
Manuel, thanks for suggesting that i change classes instead of ids in order to change the form element backgrounds onchange. i ended up doing: // logic page ...
542
operationsengineer1@...
operationsen...
Mar 27, 2006 6:40 pm
Manuel, thanks for suggesting that i change classes instead of ids in order to change the form element backgrounds onchange. i ended up doing: // logic page ...
543
operationsengineer1@...
operationsen...
Mar 28, 2006 2:15 am
hi Manuel, i know how to use the SetCheckedState for radio buttons. i want to do something similar for a select box. i think SetSelectOptions is the answer,...
544
operationsengineer1@...
operationsen...
Mar 29, 2006 3:37 am
hi Manuel, my basic set up is to have a logic page and then call a template and display it. on my logic page, the code i use to display the template looks like...
545
operationsengineer1@...
operationsen...
Mar 29, 2006 3:48 am
hi Manuel, i have about 20 form elements on a page. of those, i want to display 3 elements as read only. do i need to define the entire page as read only and ...
546
operationsengineer1@...
operationsen...
Mar 29, 2006 6:41 pm
hi Manuel, i've been reading up on how to disable a form element. i noticed that AddFunction seems to have this capability. however, i trid using it and it,...
547
operationsengineer1@...
operationsen...
Mar 29, 2006 7:43 pm
hi Manuel, the problems seem to come in bunches. ;-) problem: when i edit a text box (original value 'center139;, edited value 'cent') and hit refresh, the ...
548
operationsengineer1@...
operationsen...
Mar 29, 2006 9:00 pm
using... 'Accessible39;=>0, in the AdInput array partially achieves what i'd like to do. it displays the current value as text and used the correct styling. ...
549
operationsengineer1@...
operationsen...
Mar 30, 2006 12:23 am
... hi Manuel, i've gotten some help to solve this problem. i want the following function (located inside an external js file): function getLabel(obj) { var...
550
docu_valencia
Mar 30, 2006 11:31 am
In my captcha input I only see an image with the text "captcha image" instead the captcha working. Any idea why happens that? Any can explain how to make work...
551
Manuel Lemos
mallemos
Mar 30, 2006 1:27 pm
Hello, ... If nothing happens is because Javascript is not running. Maybe you have Javascript errors in your page that make Javascript stop. Enable Javascript...
552
Manuel Lemos
mallemos
Mar 30, 2006 2:19 pm
Hello, ... Why don't you just assign an ID to the label with the LabelID argument and then look for the label using getElementById ? -- Regards, Manuel Lemos ...