cancel
Showing results for 
Search instead for 
Did you mean: 

Data Binding in My Fiori Master App

Former Member
0 Kudos

Hallo,

does anyone knows what should i do when the details section from my Fiori master app dont show up? I dont know why cant i get the MASTER-DETAIL vizualization.

I ve tried to use oModel.refresh(), in order to refresh my model but i had no success.

Can anyone help?

Thats how my App looks like in this moment.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Paola,

Did you use the WebIDE template for creating this app? If yes can you share the code of _onMasterMatched method of your Master controller?

Former Member
0 Kudos

Hi Rahul,

Yes i ve used the master detail application Template.

I ve tried to use on the section template customization the fields of "Data-Binding Line Item" and it doesnt allow me to select any data in the fields. I can go further and generate the app without it, but then i always get the error I ve printed above.

Former Member

Hi Paola,

Here you dont see anything in Line Item Collection because the OData entityset which you have used in Object Collection does not contain any association.

Former Member
0 Kudos

Does that mean that I cant never use any of my Tables in this template, cause it will always generate an error in the detail app part?

Former Member

No. You can leave the Line Item Collection blank, and generate the app, after this do some changes in Detail view and Detail controller as per your requirement.

Former Member
0 Kudos

great Rahul, could you please let me know where can I shut the busy indicateor for the detail page off?

So i can display my App Master and detail parts.

Thanks a lot! Its been very helpful!

Former Member

In the Detail.view.xml remove the busy and busyIndicatorDelay attributes:

<semantic:DetailPage
		id="page"
		navButtonPress="onNavBack"
		showNavButton="{device>/system/phone}"
		title="{i18n>detailTitle}"
		busy="{detailView>/busy}"
		busyIndicatorDelay="{detailView>/delay}">

Former Member

thank you very very much again Rahul

best regards

Answers (1)

Answers (1)

Sharathmg
Active Contributor
0 Kudos

If you have correcly bound the model to the detail section, then check if there is data for the record selected in master.

You need to use the Chrome debugger to set breakpoints at suitable lines to identify if the data is available in the model bound to the detail section.

If data is bound, it is bound to appear(pun intended 🙂 )

Regards,

Sharath

Former Member
0 Kudos

Thanks a lot Sharath MG