Difference between RESET and CLEAR
Answer / anushree
clear empties the fields while reset changes to the default value of that field.
Clear vs. Reset
Clearing a form makes all input fields blank, unchecks checkboxes, deselects multi-select choices, and so forth; whereas, resetting a form reverts all changes.
For example:
<input type="text" name="name" value="Timothy" />
<input type="reset" value="Reset" />
This produces an input field with a value of Timothy. Let's say the user then changes the value to Berners-Lee. If the user clicks the Reset button, the value of Berners-Lee will revert (reset) to Timothy.
Clearing the fields would involve changing the value attribute of the input field to the empty string, as follows:
<input type="text" name="name" value="" />
You can change the value attribute using JavaScript.
| Is This Answer Correct ? | 6 Yes | 3 No |
Suppose in CL we reach at end of file and again we have to reach from 1 record
how to retrieve RRN value in RPGLE program
in which journalling which attributes are necessary??/
what is commitment control?explain about it?
how do you use commitment control in rpg?
how does the rpg element work?
Anybody can explain the difference between SFLCLR & SFLINZ?
in rpg could u please tell me errors types and meanings like 3030 that ....
what built in function can be used with SETLL.If you want to check whether the search argument is successful or not? Please give me answer with example?
Hi, I am getting the error in RPG (All Record Formats for externally-described file ABCD ignored or dropped due to error; file ignored.) Please suggest any
WHAT IS MENT BY RECORD LEVEL IDENTIFIER ? WHAT IS THE PURPOSE OF THIS?
i hav 2 logical files(L1,L2) both r derived from one physical file(P1). how can i use both the logical files in one RPG program? if yes what i have to d.