Hi,
How to remove the name of the prompt and dotted line from value prompt?
Select the value prompt and change that UI as radio butto group
Hi,
based on requirement, value prompt should be as List box only.
using some java script I guess we can remove the dotted line and prompt name from the prompt.
if anybody has the java script please can you provied me.
Thanks in advance.
Try below code..
<script language="javascript">
var f = getFormWarpRequest();
var list = f._oLstChoicesABCD;
list.options[0].text = '---Select Values----';
list.remove(1);
list.removeAttribute("hasLabel");
</script>
Note:ABCD is a prompt Name.
HTH,
Venu