Hi All,
I want to remove the first 2 lines from a list prompt , ie:- the parameter name and '-----------'.
Is there a way to achive this in report studio(V84)....or anybody done using java scripts
Thanks in advance
Regards,
UC
Try this code. It works in 8.3 but not sure about 8.4.
<script>
var fW = (typeof getFormWarpRequest == "function" ? getFormWarpRequest() : document.forms["formWarpRequest"]);
fW._oLstChoicesprompt_name.remove(0);
fW._oLstChoicesprompt_name.remove(0);
</script>
Thanks a lot Gopinath.
your solution lead me to implement using getFormWarpRequest()._oLstChoicesPrompt_Name.remove(0);