Options

What is the best way to get the count of selected records when a list page closes

I'm guessing it has something to do with Marks, but I find them confusing and have not found a comprehensive example of how to use them. For purposes of discussion, let's say the list page had 25 records and the user selected 5. How would I accomplish getting the 5 selected keys for further processing. Thanks!

As an aside, I assume there's no easy way to add a column of check marks the user could explicitly check.

Answers

  • Options
    majormarcell1988majormarcell1988 Member Posts: 20
    CurrPage.SETSELECTIONFILTER(Record)
  • Options
    DuikmeesterDuikmeester Member Posts: 304
    You can add a field to the Page with SourceExpr := Rec.MARK. That will mark/unmark said record and then use MARKEDONLY.
Sign In or Register to comment.