I'm experiencing a very odd behaviour. It's odd to me at least.
I've created a Gridview that gets populated with several rows from a database.
I have an ItemTemplate field that has at least 2 sliders included.
On first use I get several rows all displaying the the 2 sliders per row of the GridView.
However after I start Debugging only the first row of the GridView shows the Sliders and all subsequent rows have blank slider templates. This remains the case from then on.
Anyone got any idea why this is happening. I apologise but this probably is only meaningful to someone else who may have experienced it.
<code>
<ItemTemplate>
<asp:TextBox ID="Slider3" runat="server"/>
<asp:TextBox ID="Slider3_BoundControl" runat="server" Width="20"/>
<cc1:SliderExtender ID="SliderExtender3" runat="server"
BehaviorID="Slider3"
TargetControlID="Slider3"
BoundControlID="Slider3_BoundControl"
Orientation="Horizontal"
EnableHandleAnimation="true"
TooltipText="Slider: value {0}. Please slide to change value."
Maximum="7"
Minimum="0" />
</code>