public interface FormFieldWithNameHistory
Example:
With
<input name="foo"/>
following script will work
theForm.foo.name = 'newName';
theForm.foo.value = 'some value';
Depending on the simulated browser the form field is reachable only through its original name
or through all the names it has had.
Modifier and Type | Method and Description |
---|---|
Collection<String> |
getNewNames()
Get all the names this field got after the original one.
|
String |
getOriginalName()
Gets the first value of the
name attribute of this field before any change. |
String getOriginalName()
name
attribute of this field before any change.Collection<String> getNewNames()
Copyright © 2002–2024 Gargoyle Software Inc.. All rights reserved.