Hi there
I use a array as data source and everything works fine until i try to format the columns with:
,colHeaders: [“ID”, “NAME”, “DESCRIPTION”, “KATEGORIE”],
columns: [
{ type: ‘numeric’, readOnly: true},
{ type: ‘text’, readOnly: false},
{ type: ‘text’, readOnly: false},
{
type: ‘dropdown’,
source: [‘POI’, ‘SNAPSHOT’, ‘Verified Store’, ‘Kids’, ‘Adult’]
}
],
After that, no data is displayed anymore and the array is empty.
I know, i know, but two questions more:
1:
hiddenColumns: {
rows: [1],
indicators: false
},
Has no effect. Why?
2: Is there a way to seperate the internal value and the diplayed text in a dropdown?
A while ago you publish that fiddle http://jsfiddle.net/handsoncode/ed5hbL8L/ but its not working anymore. Is there a more elegant way inside handsontable?
Thx a bunch in advance