Row selector defaults and language

I’d like to use the row selector to filter a dataset for a table but I’m having trouble with a couple things.

-Most importantly, I need to be able to change the language. Is that possible?

-The other thing is I can’t seem to get it to default to ‘all data’.

Ideas?

Thanks,

Tim

Just a nudge: Still hoping to get some help on this…

I’m not exactly sure what you mean by switching the language, can you elaborate?

As for selection All Data by default, you need to write a script to do it. You’d put the script on the parent window’s InternalFrameActivated event. Here’s an example:

[code]def selectAllData(tree=event.source.getComponentForPath(“Root Container.Row Selector”)):
tree.viewport.view.addSelectionRow(0)

system.util.invokeLater(selectAllData,500)[/code]