Themes work great with the global skinning - however on the ToggleBUtotnExtender I get the error that UncheckedImageUrl needs to be in there. It should hit the skin, but it's not for some reason.
Here's my Skin declaration:
<ajaxToolkit:ToggleButtonExtender runat="server" SkinID="TogFlag" UncheckedImageUrl="Images/pin_green.png" CheckedImageUrl="pin_red.png" />
and here's my control on the ASPX page:
<asp:CheckBox ID="chkFlag" runat="server" Text="[Flag]" />
<ajaxToolkit:ToggleButtonExtender ID="togFlag" runat="server" TargetControlID="chkFlag" SkinID="TogFlag" />
Edit:
The error I get is:
AjaxControlToolkit.ToggleButtonExtender missing required UncheckedImageUrl property value for togFlag.
Parameter name: UncheckedImageUrl
The Killer Ninja Coding Monkeys thank those that mark helpful posts as answers.
My Site |
My Examples |
My Blog 