Hey Isomorphic,
I'm working on your ShowCase site (latest build: v13.0p_2022-09-13), and trying to define a SelectItem with multiple=true, and I want to have some special values that will NOT have a checkbox next to them.
Using 'specialValues' attribute did the trick, but now I want to align those special values to the left (to the checkbox column).
A sample based "multiSelect" page:
SmartClient™ v13.0p_2022-09-13 Showcase
The code that I use:
[/CODE]
This is the desired alignment:

Can you please guide me how can I achieve that?
I'm working on your ShowCase site (latest build: v13.0p_2022-09-13), and trying to define a SelectItem with multiple=true, and I want to have some special values that will NOT have a checkbox next to them.
Using 'specialValues' attribute did the trick, but now I want to align those special values to the left (to the checkbox column).
A sample based "multiSelect" page:
SmartClient™ v13.0p_2022-09-13 Showcase
The code that I use:
Code:
[CODE]
isc.DynamicForm.create({
ID:"exampleForm",
width:450,
wrapItemTitles: false,
fields: [
{
type:"select",
title:"Select Multiple (PickList)",
multiple:true,
multipleAppearance:"picklist",
valueMap: [ "Cat", "Dog", "Giraffe", "Goat", "Marmoset", "Mouse" ],
specialValues: {"clear":"Clear","empty":"[Empty]","notEmpty":"[Not Empty]"}
}
]
});
This is the desired alignment:
Can you please guide me how can I achieve that?
Comment