Hi Ben , thanks for quick answer
1. I run it on DB 9.1.2 , 64 bit. And the pc have enough resources (i7, 16 G RAM) .
2. With w.rowheight its looks much more better - and if there is no other option i will work with that.
3. 64 bit version. Just downloaded and installer fresh copy at home.
So, after an little investigation, i'm pretty sure that's Hebrew language character issue. What i did: just created 2 buttons: one replaces all the rows with English text, the other one is the same but with Hebrew analogue.
English:
var structCount = params.getElementCount('ROTable');
var newValue,i;
for(i=0;i<structCount;i++){
ogscript.debug('count is :' + i);
newValue = {
"channel": " ",
"available": "" ,
"video": 'text',
"name": "some text in english" ,
"itemNumber": '0'+i,
"storyID": ""
};
params.setValue('ROTable', i, newValue);
}
Hebrew:
var structCount = params.getElementCount('ROTable');
var newValue,i;
for(i=0;i<structCount;i++){
ogscript.debug('count is :' + i);
newValue = {
"channel": " ",
"available": "" ,
"video": 'טקסט',
"name": "טקסט כלשהו בעיברית" ,
"itemNumber": '0'+i,
"storyID": ""
};
params.setValue('ROTable', i, newValue);
}
Conclusion: It's run perfect with English, and bad with Hebrew.
I also tried to change windows non-Unicode language to Hebrew - didn't helped.
#DashBoard