I found really nice color picker jscolor.com to use instead of the one that AJAX Toolkit provides.Installation is really piece of cake but now I have trouble with AsyncPostback. Every time any control does AsyncPostback my ColorPicker stops working,here is code:
<asp:TextBox ID="TextColorSample" runat="server" Width="30px"></asp:TextBox>
<asp:TextBox ID="TextColor" runat="server" OnTextChanged="TextColor_TextChanged"></asp:TextBox>
<input type="button" class="color {valueElement:'TextColor',styleElement:'TextColorSample',hash:true,required:false}" />
So after postback, nothing happens anymore when I press button(picker should popup) and TextColorSample lose background Color that picker set before Postback. Can anyone explain to me what might be happening and how to fix it?