Hi,
I've got 4 values in my value prompt drop down...in which 2 are of default selection ( check box/right mark symbol).
Is there any way to give background color to those "specific 2" values, using conditional variables.
Thanks,
Joys
Hi,
By Using Java Script you can apply the colors....
Regards
Sateesh
Well, let's give us some JS to get an idea..
<script type="text/javascript">
var fw=getFormWarpRequest();
var dl = fw._oLstChoicesmyDropDownPrompt;
var color = ["CEECFF","#7EECE5","#C8ECA5","#4EEC95","#CEEC15","AB9832","#ACEB95","#BCBB99","#ACCA99"];
for( var i=0; i<dl.length;i++)
dl.options.style.backgroundColor = color;
</script>