I am having another problem committing tabpanels in SVN. If I add objects to a tabpanel, I can see the tabpanel object in Solution Explorer, but I can’t see the individual objects inside the tabpanel (I can see them in form editor, just not in the Sol Explorer tree. On disk, the tabpanel is an object and there is a tabpanel folder containing the objects that sit on the tabpanel object. Is this a bug? Seems like if I could get to the objects on the tabpanel in the sol explorer, then I’d be able to specifically request that those objects be added to version control. Since I can’t, they never get committed. Has anyone seen this issue?
I am having another problem committing tabpanels in SVN. If I add objects to a tabpanel, I can see the tabpanel object in Solution Explorer, but I can’t see the individual objects inside the tabpanel (I can see them in form editor, just not in the Sol Explorer tree.
That is correct, you can see the tabpanel. The individual tabs (objects as you call them) can only be seen through the form editor.
It is the way Servoy is set up right now.
Not sure if they can change it…
its on the list to change that
So that the tab you see on the tabpanel is a controller and you have to program to access it like this:
elements.myform2tab.controller.setSelectedindex(1)
then a tab is really its own instance and you can access it and you can’t access it anymore through: forms.myform2.controller
because that is then really another thing.