The ItemSource of my RadCarousel is a datatable (which is capable of databinding according to MS). I've added a TextBox control to my XAML definition for the ControlTemplate for the CarouselDataRecordPresenter as per the following code:
<
StackPanel Grid.Row="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center" >
<TextBox Text="{Binding Path=Fields[Answer].Value, Mode=TwoWay,
UpdateSourceTrigger=PropertyChanged}" FontSize="12" Foreground="Black"
Width="216" />
</StackPanel>
The carousel is displaying the values from the DataTable fine, but the TextBox.Text is not successfully updating the DataTable's "Answer" column.
Note that I have specified TwoWay binding (should not be necessary because that is the default mode for the TextBox control) as well as the UpdateSourceTrigger property of the binding (just to test).
This is a really annoying problem! Now I have to try to programatically determine what the TextBox.Text value is and manually update the datasource. Any direction on where to start doing so would be most helpful.