for our RadDiagramShapes, we have a Style that includes the Setter:
<Setter Property="Visibility" Value="{Binding Visibility}" />We use Visibility to control, oddly enough, the visibility of elements in our diagram. Can you all offer any insights into what's going on and also what we could do to work around this while still having virtualization enabled, please?
This is with UI for WPF v. 2015.2.0401.
Thanks,
-David
I used this method to fix the empty combo box
http://docs.telerik.com/devtools/wpf/controls/radgridview/troubleshooting/blank-cells.html
I have a Usercontrol called relationship that uses that fix.
At the moment I have to create 4 different UserControls because each is pointing to a different viewmodel. Is there a way to have it dynamic so it can point to any.
<UserControl.Resources> <local:MainPageViewModel1 x:Key="mainPageViewModel1" /> <local:MainPageViewModel2 x:Key="mainPageViewModel2" /> <local:MainPageViewModel3 x:Key="mainPageViewModel3" /></UserControl.Resources>...<telerik:GridViewComboBoxColumn Header="Category" DataMemberBinding="{Binding CategoryID}" ItemsSource="{Binding Path=Categories, Source={StaticResource CHOOSE CORRECT VM}}" DisplayMemberPath="CategoryName" SelectedValueMemberPath="CategoryID" />Hello,
I have built a radgridview and binded to selectedItems. This works great and as I imagined until I filter the grid (using the default telerik filtering) on a column and then selecting a new item which selectedItems is null. Can someone please help me understand what is difference for selecteditems with the entire collection and a filtered collection? And why the binding is null after being filtered? Thank you.
Below is my binding.
<telerik:RadGridView x:Name="radGridView" GroupRenderMode="Flat"
Width="Auto"
Height="Auto"
MaxHeight="500"
CanUserFreezeColumns="True"
RowIndicatorVisibility="Collapsed"
AutoGenerateColumns="False"
Grid.Row="0"
ShowGroupPanel="False"
ItemsSource="{Binding GridModels}"
SelectedItem="{Binding SelectedItem, Mode=TwoWay}"
RowEditEnded="RadGridView_RowEditEnded">
Once again, this works great until I filter and then try selecting a new row (I am not selecting and then filtering).
Hi,
I am facing issues in copying the PNG files in to rich text box.
I have an 2 PNG files, one of theirs Layout format is "Square", the other ones Layout format is "Inline with text".
File with the Layout format of "Square" is copied properly, where as the "Inline with Text" doesn't get copied over as image. Instead, its pasted as a very long text of binaries or strings.
ClipboardEx.GetDocument(); gets Image as span with long text rather than the ImageInline.
Could some one help in fixing this issue please ? Do we have paste special option in Telerik ?
Thanks

hi, im using current Telerik WPF Q1 2015 and also try using current and i have a problem in my project with DocumentTextSearch. the function is to load document xaml template and find text string and replace with table. but i have problem with DocumentTextSearch when searching text string from RadDocument its keep hanging when try to find text string. my code is like bellow :
public void ReplaceTable(ref RadDocument doc, string searchitem, Table RefTable)
{
doc.BeginUpdate();
try
{
using (DocumentPosition startFindPosition = new DocumentPosition(doc.DocumentLayoutBox, true))
{
var found = true;
while (found)
{
DocumentTextSearch textSearch = new DocumentTextSearch(doc);
TextRange find = textSearch.Find( Regex.Escape(searchitem), startFindPosition);
found = find != null;
if (found)
{
startFindPosition.MoveToPosition(find.EndPosition);
startFindPosition.AnchorToNextFormattingSymbol();
doc.CaretPosition.MoveToPosition(find.StartPosition);
find.SetSelection(doc);
//doc.Delete(false);
//doc.IncreaseLeftIndent();
//if (RefTable.Rows.Count == 1)
//{
// doc.Insert("-");
//}
//else
//{
// doc.InsertTable(RefTable);
//}
doc.Selection.Clear();
startFindPosition.RemoveAnchorFromNextFormattingSymbol();
}
}
}
}
catch (Exception e) { }
finally
{
doc.EndUpdate();
}
}
i wait your reply
When working with the RichTextBox together with the Ribbon UI, changing the text alignment in the table style does not seem to work for any "Apply formatting to" OTHER THAN "Whole Table". Here are the steps to reproduce this issue:
1. Open the TelerikUI for WPF Demo.
2. Navigate to the RichTextBox Editor example.
3. Add a table to the document.
4. Apply a style to the table.
5. Edit the applied style.
6. Select Header Row (or anything other than Whole Table) in the Apply formatting to combo box.
7. Change the text alignment. Does not effect table.
8. Select Whole Table in the Apply formatting to combo box.
9. Change the text alignment. Does effect table.
Am I missing something or is this, dare I say, a bug?