I want to have the slider start in the middle. It is starting at the left therefore the user cannot see the effect of in this project, what if they order less, of a product. Here you have the way it looks: http://img189.imageshack.us/img189/8184/budget1.png the slider is at the end of the row,
The code for the slider is here:
<telerik:GridViewColumn Header="Slider 'To Order' on Details" Width="300">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text=" -100% " />
<telerikc:RadSlider Minimum="0" Maximum="100" Value="0" Width="150" Tag="{Binding Summary.Category}" ValueChanged="RadSlider_ValueChanged" />
<TextBlock Text=" 100%" />
<TextBlock Text=" [100%]" />
</StackPanel>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
The code for the slider is here:
<telerik:GridViewColumn Header="Slider 'To Order' on Details" Width="300">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text=" -100% " />
<telerikc:RadSlider Minimum="0" Maximum="100" Value="0" Width="150" Tag="{Binding Summary.Category}" ValueChanged="RadSlider_ValueChanged" />
<TextBlock Text=" 100%" />
<TextBlock Text=" [100%]" />
</StackPanel>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>