Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

All other Modules /

Discuss all other Modules here.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

MultiSelectField Fix


Go to End


28 Posts   9750 Views

Avatar
swaiba

Forum Moderator, 1899 Posts

4 August 2011 at 9:10am

For anyone reading this - https://github.com/ajshort/silverstripe-itemsetfield is a great alternative

Avatar
lx

Community Member, 83 Posts

4 August 2011 at 9:24pm

hi jam13,

in addition to validation handling we added some other features to the module yesterday.

1) counting the items in both columns and show the number under each column
2) checkbox "Select All" on both sides
3) search filter above the columns that filters both cloumns while typing

We didnt test them very extensive but at a first look they seem to work fine.

If you like i can give you the code so that you can integrate it into your next release.

Regards
lx

Avatar
Graphicator

Community Member, 62 Posts

16 September 2011 at 3:03pm

Edited: 16/09/2011 3:13pm

Itemsetfield quickly got the job done. Thank you ajshort.

My question is if there is any way to change $default_options per page type. I haven't looked into changing ItemSetFields default options.

I'd like to make this Sortable, and Turn off the Picked items in the search.

Avatar
Graphicator

Community Member, 62 Posts

17 September 2011 at 9:48pm

For example, The new config accepts options in the 4th argument as an array

		$fields->addFieldToTab('Root.Content.Testimonials', new HasManyPickerField(
			$this,
			'Testimonials',
			'Pick a Testimonial',
			array(
				'Sortable' => true,
				'ShowPickedInSearch' => false
			)));

Go to Top