Is it possible to do this? I want to be able to set key,value pairs.
Just found a valueMap property for SliderItem but I do not see it being applied.
Just found a valueMap property for SliderItem but I do not see it being applied.
Code:
isc.DynamicForm.create({
width: 200,
fields: [
{ name: "rating", title: "Rating", editorType: "slider",width: 200, titleOrientation: "top",
valueMap: {
1 : "<b>United States</b>",
2 : "China",
3 : "<b>Japan</b>",
4 : "India",
5 : "Germany",
6 : "France",
7 : "Italy",
8 : "Russia",
9 : "<b>Brazil</b>",
0 : "Canada",
11 : "Mexico",
12 : "Spain"
}}
]
});
Comment