I create the PropertyGrid in Dock Window.
This Window has a size less then PropertyGrid.
But: the function RadPropertyGrid1_CreateItemElement works for visible items only and all unvisible is not created and it is the reason of exception.
How to force the RadPropertyGrid1_CreateItemElement works for all items in the propertyGrid ?
I have configured a radgridview element where we load approximately 1000 records. After loading the Database elements, I need to configure an icon column as shown in the image (IMG01). This icon is not part of the information of the database object but I load it directly to the radgridview column (IMG02). On the first item load this loop takes no more than 1 second for the 1000 items in the table.
If I make any changes and reload all the information from the database, the next execution of that loop takes about 40 seconds.
The image code IMG02 always runs after the image code IMG03.
Is there a way to improve the loading of these images in the radgridview element?
Thank you!
I ma using Telerik.WinControls.Export.GridViewSpreadExport to export data to XLSX.
The CellFormatting event is not called when using RunExportAsync().
It is only called when using RunExport();
Why is that?
Hello
I have a grid that is bound to a view of my SQLdatabase (using Entity frame work)
In order to process a change in a cell value I can not use
"context.savechanges" since the Binding is to a Query (view) and not a
table
I have Search in two directions:
1. Discard the pending changes in the context and write a function to apply the cell change
but I have not found a way to discard the changes in the context
2. the other direction I have searched is to get the changes before the value changed event is fired and process it through my function
But here also I have not managed to make it work
I hope this is understandable ...
Thanks in advance for any suggestion
Pierre-Jean
Hi Guys
The Grid looks perfect in size and style in the VS designer.. but when the app is run, the rows and the headers almost double in size. I am not even populating the grid with data and the header is already double in size.
Of course I could manually adjust all the row heights.. but I am guessing I have something set wrong with is causing this? ( some scaling or DPI option?)
Image attached is starting the app and having it side by side with the VS designer.
Any thoughts?
Many thanks
Rob
Hello
I want if toolwindow is floating mode, toolwindow title text to be in the middle.
if (mapDockWindow.IsInFloatingMode)
{
// What should I do?
}
Hello, i need to change the suggest mode of GridViewComboBoxColumn to SuggestMode.Contains. just like we can do it on dropdown control, how can i dot it.
i am using winforms q2 2014 sp1 version controls.
also sharing snippet of my code.
var column= new GridViewComboBoxColumn
{
DataSource = ClsProducts.GetActiveProducts(),
DisplayMember = "ProductName",
ValueMember = "ProductID",
Width = 280,
HeaderText = "Product",
Name = "ColProduct",
DropDownStyle = RadDropDownStyle.DropDown,
AutoCompleteMode = AutoCompleteMode.SuggestAppend
};
dgvTrade.Columns.Insert(1, column);
thanks..