Version: 8.3
Hi all,
In the following code, I have a ListGrid with one field (spinnerItem) with some attributes.
The problem is that it's not working, I mean, it allows me to put values under 0 and above 10.
Am I missing somthing?
Thanks in advance.
Hi all,
In the following code, I have a ListGrid with one field (spinnerItem) with some attributes.
The problem is that it's not working, I mean, it allows me to put values under 0 and above 10.
Am I missing somthing?
Code:
isc.ListGrid.create({
ID: "productList",
data: xxxxx,
fields:[
{name:"quantityToOrder",
title: "Quantity to Order",
typeSelector: "spinner",
min: 0,
max:10
}]
})Thanks in advance.