Blue Prism Blue prism_utiltiy string - extended function

vidhyalakshmi

New Member
Hi All,
I am trying to use utility string - extended.

<td colspan="1">
<table>
<tbody><tr>

<td align="right">
<input name="teamIds" id="teamIds1" type="checkbox" value="567"><input name="_teamIds" type="hidden" value="on"> <!-- IF role is ADMIN or MANAGER then enable else disable the field -->
</td>
<td width="600" align="left"> Campaigns</td>




<td align="right">
<input name="teamIds" id="teamIds2" type="checkbox" checked="checked" value="565"><input name="_teamIds" type="hidden" value="on"> <!-- IF role is ADMIN or MANAGER then enable else disable the field -->
</td>
<td width="600" align="left"> Collections</td>




<td align="right">
<input name="teamIds" id="teamIds3" type="checkbox" value="563"><input name="_teamIds" type="hidden" value="on"> <!-- IF role is ADMIN or MANAGER then enable else disable the field -->
</td>
<td width="600" align="left"> Complex</td>


</tr>



<tr><td align="right">
<input name="teamIds" id="teamIds4" type="checkbox" value="281"><input name="_teamIds" type="hidden" value="on"> <!-- IF role is ADMIN or MANAGER then enable else disable the field -->
</td>
<td width="600" align="left"> Executive Office</td>




<td align="right">
<input name="teamIds" id="teamIds5" type="checkbox" value="569"><input name="_teamIds" type="hidden" value="on"> <!-- IF role is ADMIN or MANAGER then enable else disable the field -->
</td>
<td width="600" align="left"> Outbound</td>




<td align="right">
<input name="teamIds" id="teamIds6" type="checkbox" value="559"><input name="_teamIds" type="hidden" value="on"> <!-- IF role is ADMIN or MANAGER then enable else disable the field -->
</td>
<td width="600" align="left"> Provisioning</td>
from the above is actually a check box i have got the HTML code for it.
i want to get which data is checked there are about 100 check box. it is difficult to syp 100 check box.
is there any way to identify the checked box and extract the data that is only checked in a collection
 
Top