Hello
I have a simple hash (categoryMargin) with key, value for 25 pairs of i.e. “GROCERY”,".33" etc. All I get on the dropdown is .33 line 0 and GROCERY line1. when I should have all 25 categories. If I try it category.put(pair.key, pair.vale) all I get is the 25 item but all are .33(which is the correct default margin). Can you help
var category = mygrid.getCombo(layout00.get("categoryColNum"));
category.clear();
categoryMargin.keys().sort();
categoryMargin.each(function(pair){
log.debug('processFullLine: category/margin: ('+pair.key+','+pair.value+')');
category.put(pair.value,pair.key); //know this is wrong
});