Hi there,
I'm having a problem loading data in gridview. It's taking too long, like 2 seconds for 5-10 rows.
I think the main problem is where i assign the bindingsource.
I'd like to know if there is any faster way to do this.
I'm using progress 4gl and OE 12.1.
I'll attach a file of what i'm doing.
Thanks.
I need to use a RadGridView, so I can assign the DataSource.
However, when I do the following code, i get zero rows and columns. What am I missing
List<Records> data = dbc.Records.ToList();
RadGridView gv =
new
RadGridView();
gv.BeginUpdate();
gv.AutoGenerateColumns =
true
;
gv.AutoGenerateHierarchy =
true
;
gv.DataSource = data;
gv.EndUpdate();
When I look at the gridview, after the datasource is set, the row count and column count are zero? Again, What I am doing wrong? The only thing that is different then what we are doing in our application, is the grid is not on a FORM.
Thanks
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