I have a field set - id = idFldInstructions. I have used css to make that invisible on load. I then have a button with an event 'Click' set to show that field set.
Click - Show #idFldInstructions
I can get it to work to show a control within the field set but not the field set itself. Should that be possible? If not are there 'areas' that I can use as a container to show and hide content??
Regards
Nick
Click - Show #idFldInstructions
I can get it to work to show a control within the field set but not the field set itself. Should that be possible? If not are there 'areas' that I can use as a container to show and hide content??
Regards
Nick
Use a "hidden" class to hide things, not css.
Also last I knew, there was a bug where fieldsets can't be targeted by field events. Use a container instead, with the fieldset inside it.
Also last I knew, there was a bug where fieldsets can't be targeted by field events. Use a container instead, with the fieldset inside it.
Thanks - I will try that later. Must clean up broken branches first😟
Don't quite understand hidden class. Isn't that the same as using
I shall try it and see.
Don't quite understand hidden class. Isn't that the same as using
div{
visibility: hidden !important;
}
I shall try it and see.
No.
This topic is locked and no more replies can be posted.