| Wijmo Control Toolkit Extender Controls > Form Decorator Extenders > Form Decorator Extender Controls Tutorial > Step 2 of 3: Adding Extender Controls to the Page |
In this step, you will add FormDecorator extender controls to associate with the standard controls. You can use the TargetControlID to specify the controls to associate with the Textbox, Button and Dropdown extenders. But since we have multiple checkboxes and radio buttons, we can use the TargetSelector property in place of the TargetControlID property to apply extender functionality on several controls at one time.
<%@ Register assembly="C1.Web.Wijmo.Extenders.3" namespace="C1.Web.Wijmo.Extenders.C1FormDecorator" tagprefix="cc1" %>
<cc1:C1CheckboxExtender ID="C1CheckboxExtender1" runat="server"
TargetSelector=":input[type='checkbox']">
</cc1:C1CheckboxExtender>
<cc1:C1RadioExtender ID="C1RadioExtender1" runat="server" TargetSelector=":input[type='radio']">
</cc1:C1RadioExtender>