Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Find Previous not working

Find Next 1, 2 and 3 (see attached screens)

        If SearchDirection = SearchDown Then

            sfgMatsList.SearchController.FindNext(txtSearch.Text)

            sfgMatsList.MoveToCurrentCell(sfgMatsList.SearchController.CurrentRowColumnIndex)

            sfgMatsList.TableControl.ScrollRows.ScrollInView(sfgMatsList.SearchController.CurrentRowColumnIndex.RowIndex)

            sfgMatsList.TableControl.UpdateScrollBars()

            Debug.Print("Find Next " & sfgMatsList.SearchController.CurrentRowColumnIndex.RowIndex)

Find Previous 1 and 2 (see attached screens)

        If SearchDirection = SearchUp Then

            sfgMatsList.SearchController.FindPrevious(txtSearch.Text)

            sfgMatsList.MoveToCurrentCell(sfgMatsList.SearchController.CurrentRowColumnIndex)

            sfgMatsList.TableControl.ScrollRows.ScrollInView(sfgMatsList.SearchController.CurrentRowColumnIndex.RowIndex)

            sfgMatsList.TableControl.UpdateScrollBars()

            Debug.Print("Find Previous " & sfgMatsList.SearchController.CurrentRowColumnIndex.RowIndex)


As you can see from the debug the rowindex does not change when trying to do a find previous.


Version is 17.4.0.39 not 17.4.0.49