Hello everyone, how are you?
I have this code snippet with a dynamic form with only one selection field:
When I hover over the picklist it shows a blue shadow, the border becomes blue and the dropdown changes to the icon "Chevron-Down_Over.svg" that does not exist. How can I remove this behavior of the component?
Thanks everyone =)
I have this code snippet with a dynamic form with only one selection field:
Code:
isc.DynamicForm.create({
name: "selectDynamicForm",
fields: [
{
name: 'slectionField',
type: 'select',
valueMap: newObject,
defaultValue: defaultObject,
height: 32,
cellHeight: 32,
showTitle: false,
pickerIconSrc: "/imgs/icons/Chevron-Down.svg",
}
]
}),
Thanks everyone =)
Comment