Hello there,
I have this question: Is there any possibility we can have an alphabet order drop down list into grid cell?
Like in your demo, where we have editable cells, the dropdown solution is always build in random generated order:
var productNames =
[
"Black Tea", "Green Tea", "Caffe Espresso", "Doubleshot Espresso", "Caffe Latte", "White Chocolate Mocha", "Caramel Latte", "Caffe Americano", "Cappuccino", "Espresso Truffle", "Espresso con Panna", "Peppermint Mocha Twist"
];
...
var productindex = Math.floor(Math.random() * productNames.length);
...
row["productname"] = productNames[productindex];
Thank you.