Browse by Tags
All Tags » Grid (RSS)
Showing page 1 of 3 (28 total posts)
-
Hi Glen,
You can simply use:
this.gridControl1.GridLineColor = System.Drawing.Color.Transparent;
and this should make the grid lines transparent, with the (pretty old) version 2.5 or with the (current) version 3.8.
Best regards,
-
Hello,
I've observed an issue in rendering of Marster-Detail grid. Imagine you have two DetailConfiguration for the same root element. When you start the application, it will render the detail grids oddly. The critical issue is, that the first Detail grid will take all available space on the screen down from its first row. If we remove one of the ...
-
public Form1() { Xceed.Grid.Licenser.LicenseKey = ''GRD38-*****-*****-****''; ...
-
Hi,
I'm using an Xceed Grid which is bound to a DataTable object. What combination of properties constitutes as a cell being editable? At first I thought the 'ReadOnly' property of the cell was the only one I had to look at (i.e. Setting the parent column to read only would make all the cells in the column read only). However, I ...
-
Hi,
We're currently using an Xceed grid, with a number of DetailGrids with an IList of objects. These objects have a property that returns a string value in the form of a decimal ie ''1.2'' or ''3.8''. We have added a SortColumn to one of the DetailGrids, and the rows are now sorted in the correct order. We have some rows that we have ...
-
A couple of our screens have more than one Xceed grid with a ScrollViewer. When there are, for example, 20 rows, enough where the screen needs to be scrolled to see the end, when I click on one of the lower rows, it jumps the view to the top row (for that grid). My focus is still where I clicked, and I can type even though I can't see ...
-
You are getting this exception because you have (probably) set your debugger to ''Break on all exceptions'' (Debug -> Exceptions, Common Language Runtime Exceptions is probably checked).
This exception is normally issued and managed by System.Xml.XmlSerializer but it pops up because of this setting.
It is sometimes necessary to ...
-
Hi!To make a cell showing its content as a masked password (i.e. ''*******''), one possibility is: DataRow dataRow;// gridControl1 being the default grid name when dropped on a form, could be something else dataRow = this.gridControl1.DataRows.AddNew();// WinTextBox is defined in Xceed.Editors so make you have a reference and a ''using'' ...
-
Hi Andre,
Thanks for sending across the sample code. But none of these sample have the code to move the entire ROW up & down using Drag & drop. I saw one example of ''Drag & Drop one Cell'' & tried to modify it to support drag & drop of ROW but its not working. Can you please help.
Thanks ins ...
-
Hello, I'm comming back with a new issue: I have to remove a DataRow from a Xceed.Grid.GridControl. But a ''NullReferenceException'' is thrown and I don't understand why. It gave me hard headakes last hours. Maybe I'm missing somethiong from my view ...This is my ...
1
|
|
|
|