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
890
Grid Events
posted

I am trying to update the row count total for a grid when a user selects an item from my combobox. 

I am using the AfterRowFilterChanged event for the count when the grid is filtered and that works fine, but on my form I have a combobox that applies a query to the Grid. When the grid changes, my row count label stays the same.

What event is the last event that happens after a grid is displayed?

v8.1

Parents
  • 37774
    posted

    What kind of query are you applying to the grid?  If you're using a filter condition, then you should be able to use the grid's filtering events.  If you're applying something on the underlying data source, this is more difficult to do since the grid will not update itself until the next Paint message; you don't really want to check row counts here, though.  If you can be a little more specific, perhaps I can come up with a different workaround.

    -Matt

Reply Children