I have not seen it, but is there any ability to export from the grid to a fixed length flat file?
Thanks

Good morning, the binding with RadDocument and Docx drive me crazy.
When I click in importCommand, fires ImportDocx() correctly and file docx is imported in Rdoc property but in RadRichTextBox don´t display in view. When I clik in keyboard, the aplicacion pause in set.
This is my view model:
private RadDocument rd;
public RadDocument Rdoc
{
get { return rd; }
set {
rd = value;
OnPropertyChanged();
}
}
public void ImportDocx()
{
RadDocument doc = null;
DocxFormatProvider provider = new DocxFormatProvider();
using (Stream
inputStream = File.OpenRead(“Any File.docx"))
{
doc =
provider.Import(inputStream);
}
Rdoc=doc;
}
This is my view (Xaml)
<telerik:DocxDataProvider RichTextBox="{Binding ElementName=radRichTextBox}" Docx="{Binding Path=Rdoc, Mode=TwoWay}"/>
<telerik:RadRichTextBox x:Name="radRichTextBox"/>.......

Hi. Is it possible to overflow a text into the next cell?
Something like no-wrap and no ellipsis but the whole text should still be visible.
There seems to be no straightforward way to do this in gridview.


Hello,
In Run Time, How to remove/change the white space in the middle of the word rapped text. Kindly refer to the screenshot.
https://anilkumar-aitechindia.tinytake.com/tt/NDUxMjc0NF8xNDI5OTY2Mg

Could you provide an example of using the RadSyntaxEditor commands?
https://docs.telerik.com/devtools/winforms/controls/syntax-editor/commands
Thanks! Jason
Why does the PropertyGridDropDownListEditor automatically select the first option for me, is it possible to change this behavior?I want to keep things as they are when I have not chosen to.
public partial class RadForm1 : Telerik.WinControls.UI.RadForm { private class Info { [Editor(typeof(PropertyGridDropDownListEditor), typeof(BaseInputEditor))] public string Address { get; set; } } public RadForm1() { InitializeComponent(); } private void RadForm1_Load(object sender, EventArgs e) { radPropertyGrid1.SelectedObject = new Info { Address = "B" }; } private void radPropertyGrid1_EditorInitialized(object sender, PropertyGridItemEditorInitializedEventArgs e) { PropertyGridDropDownListEditor ddl = e.Editor as PropertyGridDropDownListEditor; if (ddl != null) { BaseDropDownListEditorElement el = ddl.EditorElement as BaseDropDownListEditorElement; el.DataSource = new List<string> { "A", "B", "C" }; el.Text = ((PropertyGridItem)e.Item).Value + ""; } } }

HI,
I am trying to create gridview like Example.png. I tried with project examplepng but nothing is coming to UI. Can you please tell me why? What needs to be done to fix it?
Note: Sorry i didn't know how to attach project iteself.
Regards
Harsha D
