Strange UI issue.

Hi All,

I am working in NGClient . There is a form . In this form there are two web components . In one web component dataproviders are set . When I am changing dataprovider field to some other field , It is deleting the other web component from UI . It is quite strange . Please provide some comment on this.

It depends a lot on the component(s). For example I saw this happening with components that were loading their template async and then applying it in their link methods. And sometimes - for example when changing form and doing save the template would not get loaded in time and would not show.

Hi Andrei,

Thanks for your reply . How can I fix this issue ?.

You have to find the issue first. You could attach your component for a quick look but the best way is to debug yourself.

When you open a form editor in developer, a line appears in the workspace log file ([your_workspace]/.metadata/.log) containing an URL that you can use to start that editor in any browser. That way you can use the browser debug tools and see what happens when you change that dataprovider. For example check if the link/controller methods of your component get called as a starting point.

Hi Andrie,

Thanks for your reply.