Hi
Is there a difference between
foundset.setSelectedIndex(index)
and
controller.setSelectedIndex(index)?
Regards
Birgit
Hi
Is there a difference between
foundset.setSelectedIndex(index)
and
controller.setSelectedIndex(index)?
Regards
Birgit
no not really.
Exception that controller is the ui. You are setting the index of the foundset that is currently showing in the Form.
And with foundset.setSelectedIndex you set the index of that foundset, that can be bound to an ui or not.
For the most part setting a selected index is really a ui thing (you want to visibly set something for a user to see). So you could say that you will mostly using the controller.
Thank you for answering my question. That will help me.
Regards
Birgit