cancel
Showing results for 
Search instead for 
Did you mean: 

Newly Added fragment not displaying custom fields in adaptation project SAP Business Studio.

0 Kudos
684

I have selected the option Add fragment in the SAPUI5 editor, and entered the below code saved it.I have reloaded the changes but the below added input control is not visible but the fragment is created under the changes folder.

Please let me know why the fragment is not visible.

<core:FragmentDefinition xmlns:core='sap.ui.core' xmlns='sap.m'>
  <Input value="Text Hello"/>
</core:FragmentDefinition>

View Entire Topic
manju537449
Participant
0 Kudos

Hi Hari,

You have to give id to your Input control. It will work.

<core:FragmentDefinition xmlns:core='sap.ui.core' xmlns='sap.m'>
  <Input id="someId" value="Text Hello"/>
</core:FragmentDefinition>
0 Kudos

Hello,

Thanks for the answer but adding the Id didn't show the input field in the UI.I am adding the input field in a custom group added by selecting the option add new group and then selected the create fragment option.