This is a migrated thread and some comments may be shown as answers.

Conditional Formatting Form

4 Answers 73 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Barry
Top achievements
Rank 1
Barry asked on 24 Sep 2014, 10:11 PM
How can I tell when a user has modified the Conditional Formatting of a Grid
 using the Conditional Formatting Form

4 Answers, 1 is accepted

Sort by
0
Chris
Top achievements
Rank 1
answered on 25 Sep 2014, 01:55 PM
You can subscribe to one of these events:

radGridView1.Columns["MyColumn"].ConditionalFormattingObjectList.CollectionChanged
radGridView1.Columns["MyColumn"].ConditionalFormattingObjectList.CollectionChanging

These will let you know when the conditional formatting collection has changed which doesn't happen until the user clicks apply. Also, it seems that this event is called twice as the Conditional Formatting Form clears the collection and then re-adds everything rather than add and removing objects from the collection. I have a post related to this here: How can I make conditional formatting read-only?

I hope this helps. There may be a better way (such as subscribing to events on the Conditional Formatting Form itself) but I haven't figured out how to do this yet.
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 29 Sep 2014, 02:13 PM
Hello guys,

Thank you for writing.

@Barry
The suggested solution by Chris is suitable to detect when you apply style formatting. You can determine whether the ConditionalFormattingObjectList is reset or a new setting is applied via the NotifyCollectionChangedEventArgs.Action argument:
public Form1()
{
    InitializeComponent();
    radGridView1.Columns["OrderID"].ConditionalFormattingObjectList.CollectionChanged
        += ConditionalFormattingObjectList_CollectionChanged;
}
 
private void ConditionalFormattingObjectList_CollectionChanged(object sender,
    NotifyCollectionChangedEventArgs e)
{
    if (e.Action != Telerik.WinControls.Data.NotifyCollectionChangedAction.Reset)
    {
         
    }
}

@Chris
I have updated your Telerik points for community effort.

Should you have further questions, I would be glad to help.

Regards,
Desislava
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
0
Aref
Top achievements
Rank 1
answered on 16 Dec 2015, 09:26 PM
hi, is it possible to change conditional formatting form font?
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 17 Dec 2015, 11:33 AM
Hello Aref,

Thank you for writing back.

You can subscribe to the RadGridView.ConditionalFormattingFormShown event and change the Font property for the form and all its controls:
Font f = new Font("Arial",14, FontStyle.Italic);
private void radGridView1_ConditionalFormattingFormShown(object sender, EventArgs e)
{
    RadForm form = sender as RadForm;
    form.Font = f;
    foreach (Control c in form.Controls)
    {
        c.Font = f;
    }
}
 
I hope this information helps. If you have any additional questions, please let me know.

Regards,
Dess
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
GridView
Asked by
Barry
Top achievements
Rank 1
Answers by
Chris
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Aref
Top achievements
Rank 1
Share this question
or