Hi,
Using an option radio button field, how do I create an " Info alert window" that appears when selecting option "1" only.
All I have right now is:
if
(this.rawValue == "1") {
TableForm.presence = "visible";}
else
{TableForm.presence = "hidden";}
and when the user selects option "1" I want to display the "Table Form", which it does now, and also a alert window with my choise of text.
Thank you very much!!!!