Hi,How to enter Text between the radio options in lotus (Domino designer). here I am giving my example…
///
-
computers
-
Electronics
3.Electrical
if u want other plz select the follwong
4.other
////
Here, we can select only one option(1,2,3,4 are radio options). How to do this in Lotus? kindly let me know
Thnaks
Pavan
Subject: How to Enter the Text between the radio button in Lotus
There is no such option for a single field in the Notes client or using Notes-style native radio button fields on the web.
Subject: RE: How to Enter the Text between the radio button in Lotus
or by using any formula or coding can we do this?
Subject: RE: How to Enter the Text between the radio button in Lotus
You could use two different radio buttons and a hidden field. In the OnClick event for each button, set the value of the other field to “”. Your hidden field then calculates to @Trim(field1:field2) and holds the actual response.
Subject: RE: How to Enter the Text between the radio button in Lotus
Hi Gary,Thanks for your suggestion, your idea is good but you said that “write in onClick event”, but it is completely Lotus application. since onClick is for web & js.
Thanks
Pavan
Subject: Here is how you can do it on the web.
Have a radio button field, set it to list values one per line and have a
formula like this:
Script>document.write(‘1. Computers’)]|Computers
Script>document.write(‘2. Electronics’)]|Electronics
Script>document.write(‘3. Electrical
If you want other please select the
following’)]|Electrical
Script>document.write(‘4. Other’)]|Other