Donde encuentro documentacion de los bean, quiero usar el DBTreeView y en el manual solo muestra el ejemplo del reloj, usted me puede orientar donde encontrar documentacion del modo de uso de estos bean.
Where I find documentation it(he,she) brings over of the bean dbtreeview
Hi, welcome to the Servoy forum.
For more information about the dbtreeview bean, take a look at this topic.
Please try to post messages in English, than most people can read it, and you’ll have a much bigger chance to get answers.
Is there a TreeView bean example that will run in 4.1.4 ?
Kahuna:
Is there a TreeView bean example that will run in 4.1.4 ?
That’s right, the sample in that topic causes an error in servoy 4, because it isn’t allowed anymore to touch data in the onLoad.
To get it to work, the only thing that needs to be changed is that the method triggered by the onLoad event, should be triggered by the onShow event instead.
A more correct solution would be to create a method like this
function onShow() {
if (arguments[0]) {
onLoad();
}
}
And use that as the onShow method, that way it is only executed once.
Very useful thanks Joas.