Hi,
base 64 encode images in html source file are not shown in RadRichTextBox after being imported via HtmlFormatProvider.Import (string). Do I miss a thing or made a mistake?
A sample solution is attached (the generated.html shows the expexted result)
Thanks in advance
Best regards Joachim

hi all
I convert my project from windows form to wpf
and I use this code in the windows form
radGridViewCostList.Rows.Clear();
foreach (var cost in _costList)
{
var newRow = radGridViewCostList.Rows.NewRow();
newRow.Cells["cost"].Value = cost.Name;
newRow.Cells["id"].Value = cost.ID;
newRow.Cells["description"].Value = cost.Description;
newRow.Cells["proposedValue"].Value = cost.ProposedValue;
radGridViewCostList.Rows.Add(newRow);
}
in wpf radgrid dose not have Row Property
I use this code bot can not find GridViewCell
uxRadGridView_CostTypeList.BeginInsert();
var newRow = uxRadGridView_CostTypeList.ChildrenOfType<GridViewNewRow>();
if (newRow == null) { return; }
var cells = new.RowFirstOrDefault().ChildrenOfType<GridViewCell>();
var costCell_ID = newRow.FirstOrDefault().ChildrenOfType<GridViewCell>().Where(c => c.Name.ToString() == uxGridViewColumn_id.Name).First(); costCell_ID.Content =" cost.ID";
xaml code :
<telerik:RadGridView x:Name="uxRadGridView_CostTypeList" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" IsReadOnly="True" AutoGenerateColumns="False" ShowGroupPanel="False" NewRowPosition="Top"> <telerik:RadGridView.Columns> <telerik:GridViewColumn x:Name="uxGridViewColumn_row" UniqueName="row" Header="ردیف" Width="45" MaxWidth="45" MinWidth="35"/> <telerik:GridViewColumn x:Name="uxGridViewColumn_id" UniqueName="id" Header="کد" MaxWidth="90" MinWidth="50" Width="76"/> <telerik:GridViewColumn x:Name="uxGridViewColumn_cost" UniqueName="cost" Header="نام هزینه" MaxWidth="300" MinWidth="150" Width="227"/> <telerik:GridViewColumn x:Name="uxGridViewColumn_category" UniqueName="category" Header="گروه" MaxWidth="100" Width="151"/> <telerik:GridViewColumn x:Name="uxGridViewColumn_proposedValue" UniqueName="proposedValue" Header="قیمت پیش فرض" MaxWidth="110" MinWidth="110" Width="110"/> <telerik:GridViewColumn x:Name="uxGridViewColumn_Accounting" UniqueName="Accounting" Header="سرفصل مرتبط" MinWidth="80" Width="153"/> <telerik:GridViewColumn x:Name="uxGridViewColumn_description" UniqueName="description" Header="توضیحات" MinWidth="150" Width="299"/> </telerik:RadGridView.Columns> </telerik:RadGridView>

I am assigning my grid a context menu. However, I only want the context menu on the contents of the grid, not on the column nor row headers. How would I do that?
In case you care, I'm doing this in code using the following:
myGrid.ContextMenuOpening += MyGrid_ContextMenuOpening;myGrid.ContextMenu = gridCM 
I have a couple of buttons embedded in a header column of my radgridview that is in a usercontrol that is in a pane of a raddock. I am trying to bind the IsVisible property of the button to a property of my MainWindows' view model. Below is the relevant xaml. See line 7 of the xaml. I can't seem to get the binding right. What's the right way to bind this property to the MainWindow's viewmodel property? Obviously, I'm not seeing it.
Any help would be great!!!
Here is the error I get in my command window of vstudio.:
System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='System.Windows.Window', AncestorLevel='1''. BindingExpression:Path=DataContext.EnableRowDetailsButton; DataItem=null; target element is 'Button' (Name='cmdAddNewSample'); target property is 'IsEnabled' (type 'Boolean')
01.<telerik:GridViewDataColumn Width="auto" >02. <telerik:GridViewDataColumn.Header>03. 04. <StackPanel Orientation="Horizontal">05. <Button Content="Add New" x:Name="cmdAddNewSample"06. Click="cmdAddNewSample_Click" Tag="AddOrUploadButton"07. IsEnabled="{Binding DataContext.EnableRowDetailsButton,08. RelativeSource={RelativeSource FindAncestor, 09. AncestorType={x:Type Window}}}"10. Margin="0,5,5,5"/>11. <Button Content="Upload" x:Name="cmdUploadSample" Tag="AddOrUploadButton"12. IsEnabled="{Binding DataContext.EnableRowDetailsButton,13. RelativeSource={RelativeSource FindAncestor, 14. AncestorType={x:Type Window}}}"15. Command="{Binding DataContext.UploadSampleCommand, Mode=TwoWay,16. RelativeSource={RelativeSource FindAncestor, 17. AncestorType={x:Type UserControl}}}" 18. Margin="0,5,0,5"/>19. </StackPanel>20. </telerik:GridViewDataColumn.Header>21.</telerik:GridViewDataColumn>
Thanks ... Ed
Hi Team,
I have to use AutoCompleteBox with multiple items, but I need to add some custom text between each selected items.
For an example, if the AutoCompleteBox is bound with following items like FileName, ReceivedDate, FileSize, etc., And the AutoCompleteBox with custom text and the selected items with cross buttons like below.
"File name is {FileName} and it is received on {ReceivedDate}"
Does this possible in AutoCompleteBox?
Regards,
Sathya
Hello,
We are playing with the interactive form pdf and when you are in the field editing the text and then we go to save the document the field has not yet been updated with the new value. Is there a way to force them out of the field editing and update the text of the field when they click the save button?
Thanks,
Brandon

Being new to Telerik controls I'm struggling to get RadGridView to populate automatically with SQL query collection.
I have some questions to understand what can and cannot be done and go from there:
I have a SQL query result collection contains over 4,000 records is there a way to set dump the datatable directly into the RadGridView with "AutoGenerateColumns="True"",
or do i have to iterate through all the rows?
Secondly I have the RadGridView in a tab of a RadPaneGroup. Which action should I use to only call the RadGridView population when its tab is selected?
Hi,
I try to change text of "Grand Total" with Localization Manager, set the localization for "Pivot_GrandTotal", but nothing happened. Other text, such as "Pivot_AggregateSum", "Pivot_AggregateCount", and other are translated successfully, but "Pivot_GrandTotal" not.
Could you help me?
Thanks