Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/15/2016 in all areas

  1. Just want to add this additional information. Note that HTML Tags styling is ignored for embedded DataPages. If you edit your style, and choose HTML tags, you will see that message at the bottom of the page. For URL or iframe deployment this will not be a problem though.
    1 point
  2. Try this <script type="text/javascript"> var mylist= new Array ("EditRecordStatus","EditRecordMarket_Sector","EditRecordDivisions") ; var v_state = new Array ("[@field:Status]","[@field:Market_Sector]","[@field:Divisions]") ; for (var k=0; k<mylist.length; k++){ var m = document.getElementById(mylist[k]) ; var o_state = document.getElementById(mylist[k]); m.multiple = true ; f_listbox(); function f_listbox() { if ( v_state[k].indexOf(",") > 0 ) { for (var i=0 ; i < o_state.options.length; i++ ) { if(o_state[i].value == v_state[k]) { o_state.remove(i); break ; } } var o_st = v_state[k].split(", ") ; for (var j=0 ; j < o_st.length; j++) { for (var i=0 ; i < o_state.options.length; i++ ) { if(o_st[j]== o_state.options[i].value){ o_state.options[i].selected = true ; break ; } } } } } } </script>
    1 point
×
×
  • Create New...