We are developing a generic client using smartGWT. we design our application as: in Left of screen we have tree navigator, and in right we display form (onClick of a tree item) of the target tree-element. In displaying forms we are using notebooks, i.e. whenever one clicks a tree-item we add a tab in notebook to display its relevant form. So multiple form may exist in DOM at the same time.
My query is:
what if multiple notebooks (thus different forms) say X and Y have same-field-widget say 'name',
Will this cause ID conflict problem in operation like `save` or `onchange` or simply is this a good practice in smartGWT?
Note: we want to generate same ID of the widget each time we generate particular form, for some testing purpose.