Where is the JSFoundSet.setSelectedRecords() method?

In the releasenotes of Servoy 5.0 (http://wiki.servoy.com/display/SERV5/New+in+this+release) I see a new method JSFoundSet.setSelectedRecords() which was introduced when multiSelect came available.

I tried this method, but I get errors: TypeError: Cannot find function setSelectedRecords.

I want to pre-select records in a multiselect foundset giving a primary key or an array of primary keys.

When I use JSFoundSet.selectRecord(pk) for several records, I can obtain this, but I would expect that JSFoundSet.setSelectedRecords() can do this in one statement.

But what happened with JSFoundSet.setSelectedRecords() ? I don’t see in later release notes that this method was deprecated.

the wiki is wrong there is no such thing as setSelectedRecords only setSelectedIndexes
so this should be it:

(JSFoundSet.multiSelect, JSFoundSet.getSelectedIndexes(), JSFoundSet.getSelectedRecords(), JSFoundSet.setSelectedIndexes())

Corrected the release notes.

Paul