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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

AddExtraClass on select dropdown field only


Go to End


880 Views

Avatar
Scott Farmer

Community Member, 49 Posts

4 January 2012 at 5:36pm

Hi,

I'm wanting to override / replace the default form css class and use jquery UI instead.

This adds a extra class, but applies extra class to div and select element.

$PickUpLocation = new DropdownField(
'PickUpLocation',
'Pick Up'
);
$PickUpLocation->AddExtraClass('newclass');

I want to only add extra class to the select box only.

Tried ExtraClass, but this didn't work.

Thanks
Scott