Link to home
Start Free TrialLog in
Avatar of Ed
EdFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Highlighting Dropdownlist row depending on data from datasource

I have a SQL datasource on a page which populates a dropdown menu.

 
               <asp:SqlDataSource ID="DSUnitAvailable0" runat="server" ConnectionString="<%$ ConnectionStrings:IRISConnectionString %>" SelectCommand="GET_AVAILABLE_QUALSCHEME_UNITS_IVRECORD" SelectCommandType="StoredProcedure">
                        <SelectParameters>
                            <asp:SessionParameter Name="IVRECORDID"  SessionField="IVRECORDID" />
</SelectParameters>
                    </asp:SqlDataSource>

Open in new window



 
<asp:DropDownList ID="ddlUNIT02ID1" runat="server" AppendDataBoundItems="True" CssClass="selectpickedr" data-live-search="true" DataSourceID="DSUnitAvailable0" DataTextField="QUALSCHEMEUNIT" DataValueField="QUALSCHEMEUNITID">
                 <asp:ListItem Selected="True" Value="0">-</asp:ListItem>
                    </asp:DropDownList>

Open in new window


I also have another field being returned by the datasource which is called ' Highlight' . This can either be 1 or 0.  

What I'd like to do is highlight the row on the dropdown menu if 'the field 'Highlight'    is  1
ASKER CERTIFIED SOLUTION
Avatar of Randy Downs
Randy Downs
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial