Hallo,
I would like users of my app to be able to reorganize buttons in the toolstrip items. For instance I'va made a toolstrip item with buttons "Cut", "Copy", "Paste". The user do not like my design and decides to reorganize them to "Copy", "Paste", "Cut". (Toolbar items reorganization can be seen in MS Word for example.. I need somethink like that)
Is that reorganization possible in radtoolstrip?? I have read the help but unfortunately I haven't found the answet yet.
Thank you in advance!
Hi,
I have a gridview with data, similar to your example gridview on conditional formatting. I copy / pasted the example code for conditional formatting but I don't get it to work properly.
The problem is that there is no initial formatting. The gridview has it's standard look. Only after clicking on a cell that contains the formatting-conditional text, the row gets the correct color. Your example seems to work fine, but I see no differences between that code and mine.
radGridView1.CellFormatting += new CellFormattingEventHandler(radGridView1_CellFormatting); |
radGridView1.DataSource = meterObjectValueList; |
radGridView1.Refresh(); |
GridViewColumn col = radGridView1.MasterGridViewTemplate.Columns.FindByDataField("State"); |
ConditionalFormattingObject c1 = new ConditionalFormattingObject("ValueRead", ConditionTypes.Equal, "read", "", true); |
c1.RowBackColor = Color.Green; |
c1.RowForeColor = Color.Black; |
col.ConditionalFormattingObjectList.Add(c1); |
ConditionalFormattingObject c2 = new ConditionalFormattingObject("ValueInit", ConditionTypes.Equal, "init", "", true); |
c2.RowBackColor = Color.Blue; |
col.ConditionalFormattingObjectList.Add(c2); |
radGridView1.MasterGridViewInfo.UpdateView(); |
radGridView1.Refresh(); |
Am I missing something?
Ben.