cancel
Showing results for 
Search instead for 
Did you mean: 

Hi, Combobox is not showing any Item Record.

motiononme1
Explorer
0 Kudos

Hi, I am trying to load Plants Number. The URL is hitting correctly in the back end as you can see from the Network Tab Image but data is not getting loaded. The DropDown of combobox is loading but it is not populating any data. Is there anything wrong with the Binding(the data is coming in a bach format)Please need some advice.

metadata.png<semantic:content>
			
			<form:SimpleForm id="SimpleFormChange354"
			
			maxContainerCols="2"
			editable="true"
			layout="ResponsiveGridLayout"
			title=""
			labelSpanL="2"
			labelSpanM="2"
			emptySpanL="8"
			emptySpanM="8"
			columnsL="0"
			columnsM="0"
			class="editableForm">
				<form:content>
					
					<Label text="Plant" />
					<ComboBox id="plantId" 
items="{odata>/Plants/}">
						<items>
						<core:Item  text="{Plant}" key="{Plant}" />
						</items>
					</ComboBox>

</network.pngsemantic:content>

Accepted Solutions (1)

Accepted Solutions (1)

junwu
Active Contributor
0 Kudos
<core:Item  text="{odata>Plant}" key="{odata>Plant}" />

model name is required.

Answers (1)

Answers (1)

former_member227918
Active Contributor
0 Kudos

I think extra "/" might be the issue in items="{odata>/Plants/}" remove that.