Hi,
we are using/testing RadRichTextBox. What we do is to insert some text and tab stops.
Then we save it as rtf (created with RtfFormatProvider) to a database.
The rtf String in the Databse is correct.
Then we load that string from the database (string still contains tab stops) in the RadRichTextBox again with RtfFormatProvider/RadDocument.
Now all the tab stops are vanished.
Are we doing something wrong, or are tab stops not fully supported ?
Thanks,
Bernhard / Timo
<telerik:RadComboBox HorizontalAlignment="Left" DockPanel.Dock="Top" Margin="5,0,5,0" TabIndex="1" FontSize="14" Name="RadComboBoxLocality" VerticalAlignment="Top" Width="286" Height="25" IsEditable="True" ItemTemplate="{StaticResource CustomItemTemplateLocality}" CanKeyboardNavigationSelectItems="False" MaxDropDownHeight="400" StaysOpenOnEdit="True" OpenDropDownOnFocus="True" IsDropDownOpen="True" ItemsSource="{Binding Source={StaticResource SuggestorViewModel}, Path=Searchresult}" SelectedValue="{Binding Source={StaticResource SuggestorViewModel}, Path=CurrentItem, Mode=TwoWay}" Text="{Binding Source={StaticResource SuggestorViewModel}, Path=LocalityName, Mode= TwoWay}" IsSynchronizedWithCurrentItem="True" IsFilteringEnabled="False"> </telerik:RadComboBox>Hi,
I am developing windows application by using MVVM pattern.
I have RowDetailsTemplete. In the templete, i have button.click event fired on this button.
Click event opens a new pop up, user selects a value from that pop-up.
Now I need to bind data came from pop-up to textbox present in RowDetailsTemplete.
Pleasev help me how we can pass the data from Another view to RowDetails Templete using MVVM pattern.
<telerik:RadButton Content="NEW TASK" Padding="10,0" Margin="3,3" FontSize="10" Command="telerikGrid:RadGridViewCommands.BeginInsert" CommandTarget="{Binding ElementName=TasksGrid}" /> <telerik:RadGridView Grid.Row="1" Name="TasksGrid" ItemsSource="{Binding Items}" AutoGenerateColumns="False" ScrollMode="RealTime" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" SelectedItem="{Binding SelectedItem, Mode=TwoWay}" ValidatesOnDataErrors="InEditMode" IsSynchronizedWithCurrentItem="True" AlternationCount="2" >
.....