From my create.gsp page, I expect to see a list of all the districts available on my database.
<td valign="top" class="value ${hasErrors(bean: streamInstance, field: 'district', 'errors')}">
<% println ctv.District.list(); %>
<g:select name="district.id" from="${ctv.District.list()}" optionKey="id" value="${streamInstance?.district?.id}" />
</td>
However, I see the <select> statement not empty, but unable to see any name. When I added the println, I see:
District = [
null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null
]
I have no idea why is District an array of null objects. I was expecting to see the district names. Any thoughts?
ctvvariable? Does it haveDistrictproperty? Did you name any property starting with a capital letter? – Victor Sergienko Aug 5 '12 at 7:47ctvis the package name,Districtis the Domain name. I don't have any property starting with a capital letter. – philippe Aug 5 '12 at 13:59