I have a bit of a weird issue. We use DevExpress controls to do all our Windows Form development. Anyway, I found a perfect use for the DataRow.SetParentRow/GetParentRow methods in my grid. So I creat
EDIT: The problem has something to do with when I am invoking the method.If I wait for the form to be displayed, and invoke the method from a menu on the form itself, it works. But if I set the row to
I have an XtraGrid with ~500 rows in it. I can set the FocusedRowHandle to, say, row 245. But is there a method that will scroll that now-focused row into view if it\'s currently not visible?
I need to sh开发者_高级运维ow control depending on object data in XtraGrid cell of column. i.e. different coltrol in cell depending on data. Any tutorial or demo ?You need to handle the CustomRowCellE
edit = gridView1.GridControl.RepositoryItems.Add(\"CheckEdit\") as RepositoryItemCheckEdit; column = gridView1.Columns.Add();
I am using a DevExpress DataGrid control, and what I basically do on form initialization is: populate with data, set grouping, disabling some options via
I\'m using DevExpress\'s xtragrid control. In my application I\'m setting the datasource property of gridcontrol at runtime but it not show my updated table value when my form displays.
This problem has bugged me for several years and maybe 开发者_C百科someone here knows a simple solution, since I just ran into it again.
if I want to both change the database and render the change on the GridView, at present I am forced to change CType(grd.DataSource, DataView).Table cell values explicitly because I don\'t want to lose
I have a XtraGrid dropped on to a Winform. I have created 3 unbound columns named ID, StartTime and EndTime and set their unbound types as Int, DateTime and DateTime respectively.