visual studio 2012 - Juice UI Slider Doesnt Work With JQuery UI 1.10.3 -
as far can tell juice ui slider doesn't work jquery ui 1.10.3.
i following:
create new project in visual studio. update packages using nuget (this takes jquery ui 1.10.3); add juice ui using nuget.
create page following html in main placeholder:
<asp:updatepanel runat="server" id="update0"> <contenttemplate> <div class="sliderholder"> <juice:slider id="slider1" runat="server" cssclass="hslider" max="100" min="50" onvaluechanged="slider1_valuechanged" autopostback="true"/> </div> <asp:label runat="server" id="lb0" text="current:"></asp:label> <asp:label runat="server" id="lbvalue"></asp:label> </contenttemplate> </asp:updatepanel>
and following in code behind: protected void slider1_valuechanged(object sender, eventargs e) { lbvalue.text = slider1.value.tostring(); }
the slider keeps going initial value after drag , label not updated.
running same jquery ui 1.9.2 slider drags, stays @ value , updates label.
can let me know if there fixes or if known bug?
best
i experience same situation. seems juice ui not compatible jquery ui 1.10.3.
maybe can try brew, cousin of juice ui.
Comments
Post a Comment