Hi,
I'm displaying several type of classes using the BindingList class as a DataSource. The GridView automatically generates columns of the names of the properties defined in these classes. In this case te text of the columns can be set with the DisplayName attribute. So far so good. My question now is, if there is a way to change the order of the columns via property attributes and/or if it is possible the hide some properties from beeing displayed.
Thanks in advance
Martin
Hi,
I have custom appointment class and as well as custom editappointment dialog. I am able to reproduce Daily recurrence and weekly recurrence in the radscheduler. But when i try to create exceptions for the Appointment, the radscheduler control displays daily recurrence even for the days which has been defined as exception.i am using SchedulerBindingDataSource.
GridViewTextBoxColumn textBoxColumn = new GridViewTextBoxColumn(); |
textBoxColumn.FieldName = "Comments"; |
textBoxColumn.FieldAlias = "Comments"; |
textBoxColumn.UniqueName = "Comments"; |
textBoxColumn.HeaderText = "Text"; |
this.radGridView1.Columns.Add(textBoxColumn); |