cakephp-version icon indicating copy to clipboard operation
cakephp-version copied to clipboard

Ordering and paginating versions

Open adjdred opened this issue 10 years ago • 2 comments

Hi

How do you order the versions for an entity to have the latest first?

How do you paginate the results?

adjdred avatar Jul 30 '15 12:07 adjdred

I fixed it in project code with

		$versions = $textBox->versions();
		$versionList = [];
		foreach ($versions as $version) {
			$versionList[$version->version_id] = $version->version_id;
		}
		$versionList = array_reverse($versionList, true);

for a dropdown

but it would be nice if the table itself had a finder for this.

dereuromark avatar Mar 19 '17 21:03 dereuromark

Probably quite straight forward with Collections::combine

davidyell avatar Aug 29 '19 14:08 davidyell