on 2021 Feb 27 12:24 PM
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>
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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
81 | |
11 | |
10 | |
10 | |
10 | |
8 | |
7 | |
7 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.