cancel
Showing results for 
Search instead for 
Did you mean: 

Binding textArea Value within icontabbar

Fehmina
Advisor
Advisor
0 Kudos

Hi All,

I am having odata Service which gives me output like description, notes and location details.

I created TextArea and bind the value property like value="{/GetAuditDetailDescSet/Description}" However the textArea ( within icontabbar) is not showing value.

If i supply items= "{/GetAuditDetailDescSet}" to iconTabbar then first tab is not visible. Below is my code snippet.

<IconTabBar visible="true"
		id="idIconTabBarNoIcons"
		expanded="{device>/isNoPhone}"
		items="{/GetAuditDetailDescSet}"
		select="onSelectChanged"
		class="sapUiResponsiveContentPadding">
		<items>
		
			<IconTabFilter key="Description"
				text="{i18n>TXT_LBLCREATEAUDITDESCRIPTIONKEY}">
				
				<TextArea width="100%" id="createAuditDesc" value="{Description}" />
		
			</IconTabFilter>
			
				<IconTabFilter key="notes"
				text="{i18n>TXT_LBLCREATEAUDITNOTESKEY}">
				<TextArea width="100%" id="createAuditNote" value="{Note}"/>
			</IconTabFilter>
			</items>
		</IconTabBar>

Accepted Solutions (0)

Answers (1)

Answers (1)

karthikarjun
Active Contributor
0 Kudos
Fehmina
Advisor
Advisor
0 Kudos

Hi Karthik,

Thanks for the response.

However you are directly binding through the model. I tried but it dint worked

oData.Results is set in /GetAuditDetailDescSet .