Hi,
I'm working with the TimeGridView sample and setting:
- autoDismissTime
- ignoreTrickPlayKeys
- duration
on the TimeGridView all seem to have no effect. Further, I can't find any references to those strings anywhere in the codebase. Is the extension in the repository out-of-date with the documentation, or am I doing something wrong/not looking in the right place?
My code:
grid = CreateObject("roSGNode", "TimeGridView")
' put a handler config on the root node of the tree
content = CreateObject("roSGNode", "ContentNode")
content.AddFields({
HandlerConfigTimeGrid: {
name: "CHRoot"
}
})
' set content to the view
grid.update({
autoDismissTime: 5,
programTitleFocusedColor: "0xFF0000"
duration: 2000,
ignoreTrickPlayKeys: true
}, true)
Thank you!