掲示板

Index out of bound exception

11年前 に sasmita swain によって更新されました。

Index out of bound exception

Regular Member 投稿: 183 参加年月日: 12/02/24 最新の投稿
Hi

I am working on LR6.1..i have two radio buttons..when i am clicking on one radio button it should save in database and it is retreive ata time..

my code is:

<aui:input inlineLabel="right" name="gender" type="radio" value="Male" label="basicinfo.male" checked="${basicInformations.get(0).getGender().equalsIgnoreCase('Male')?true:false}" />
</td>
<td>
<aui:input inlineLabel="right" name="gender" type="radio" value="Female" label="basicinfo.female" checked="${basicInformations.get(0).getGender().equalsIgnoreCase('Female')?true:false}" />
</td>

i am getting error like


05:35:59,681 ERROR [render_portlet_jsp:154] javax.el.ELException: java.lang.IndexOutOfBoundsException: Index: 0

for non user it is showing temporarily unavailable

Thanks

Sasmita
thumbnail
11年前 に Sampsa Sohlman によって更新されました。

RE: Index out of bound exception

Regular Member 投稿: 230 参加年月日: 07/09/27 最新の投稿
Hi Sasmita,

At your code basicInformations does not any have values inside. That's why you are getting that kind of error. It is empty array. Try to debug from there.