Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3555
set IErrorDataInfo on Row when operatorConditionValueAppearance is applied
posted
Currently, I am utlitlizing IErrorDataInfo and ConditionValueAppearance
seperately.

Is it possible to set the exclamation on the row selectors if the
ConditionValueAppearance is applied to a cell? is there an event that fires
when a condition is applied?

I like the ease of setting up conditions with ConditionValueAppearance but I
like showing the exclamation on the row selectors when there is an error
somewhere in that row..
Parents
No Data
Reply
  • 2070
    posted

    Hi,

     

    If I understand you correctly, hook into FilterRow event of the grid. This gets raised whenever filter conditions are evaluated on a row. Here you can check IsFilteredOut property to either set or unset the row's RowSelectorAppearance.Image to exclamation icon.

     

    Also of use might be row's MeetsCriteria method to check if the row passes or fails a specific column filter or filter condition. This can be useful if you want to check if the row passes filter conditions of a specific column.

     

    Hope this helps,

    Sandip 

Children