I have a visually designed form (OMG, there we go again)
on that form I have some elements, two buttons, placed exactly over each other.
One is named btn_SomeAction
The other is named btn_SomeAction_grey
btn_SomeAction_grey is a disabled form of the btn_SomeAction. The ENabled button (btn_SomeAction) is on top of the other.
if I type:
forms.myForm.elements.
I see then both buttons by their name
if I try:
oElements = forms.myForm.elements
and next I type:
oElements.
I only see the topmost button.
The question is simple:
Why is that?
FYI, I have two buttons because disabling a button is a real noshow in the browser client.