Ticket Q95837
Visible to All Users
Duplicate

Mandatory fields

created 17 years ago

I want to change the mandatory fields backcolor in my appliocation,
for that i'm using a view controller in that i have to check if the propertyeditor has RuleRequiredField attribute. How can i check that? help me out…

Comments (3)
DevExpress Support Team 17 years ago

    Hi,
    To accomplish your task, you need to use the Reflection mechanism. Please write something like this in your ViewController:

    C#
    public partial class ViewController2 : ViewController { public ViewController2() { InitializeComponent(); RegisterActions(components); } protected override void OnActivated() { base.OnActivated(); View.ControlsCreated += new EventHandler(View_ControlsCreated); } protected override void OnDeactivating() { base.OnDeactivating(); View.ControlsCreated -= new EventHandler(View_ControlsCreated); } void View_ControlsCreated(object sender, EventArgs e) { if (View.Id == Application.GetListViewId(typeof(DomainObject1))) { ListView listView = View as ListView; GridListEditor gridListEditor = listView.Editor as GridListEditor; GridView gridView = gridListEditor.GridView; Type clsType = typeof(DomainObject1);// your object here PropertyInfo[] pInfoArray = clsType.GetProperties(); for (int i = 0; i < pInfoArray.Length; i++) { RuleRequiredFieldAttribute attr = (RuleRequiredFieldAttribute)Attribute.GetCustomAttribute(pInfoArray[i], typeof(RuleRequiredFieldAttribute)); if (attr != null) { gridView.Columns[pInfoArray[i].Name].AppearanceCell.BackColor = System.Drawing.Color.Red; } } } } }

    Please let me know your results.
    Thanks,
    Marina

    SK SK
    Saravanan Krishna 17 years ago

      Hi Marina,
      The code u had provided is for listview but need for the detailview. Anyhow i had found the solution with the help of ur code.Thank you,
      This is the code for detailview
      public partial class MandatoryFields : ViewController
           {
                public MandatoryFields()
                {
                     InitializeComponent();
                     RegisterActions(components);
                     this.TargetViewType = ViewType.DetailView;
                }
                protected override void OnActivated()
                {
                     base.OnActivated();
                     View.ControlsCreated += new EventHandler(View_ControlsCreated);
                }
                protected override void OnDeactivating()
                {
                     base.OnDeactivating();
                     View.ControlsCreated -= new EventHandler(View_ControlsCreated);
                }
                void View_ControlsCreated(object sender, EventArgs e)
                {

      PropertyInfo[] pInfoArray = this.View.ObjectType.GetProperties();
                          for (int i = 0; i < pInfoArray.Length; i++)
                          {
                               RuleRequiredFieldAttribute attr =
                                (RuleRequiredFieldAttribute)Attribute.GetCustomAttribute(pInfoArray[i], typeof(RuleRequiredFieldAttribute));
                               if (attr != null)
                               {
                                    ((DevExpress.XtraEditors.BaseEdit)((DetailView)View).FindItem(pInfoArray[i].Name).Control).BackColor = System.Drawing.Color.Cornsilk;
                               }
                          }
                }
           }

      DevExpress Support Team 17 years ago

        Hi,
        I'm happy to know that my snippet helped you and thank you for sharing your findings with us.
        See Also:
        Validation - Introduce an immediate visualization for properties, which are marked with the RuleRequiredValue attribute (BackgroundColor, Border or Icon)
        Thanks,
        Marina

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.