@ -108,7 +108,11 @@ public class Property extends AbstractComponent {
*/
return BeanUtils.getProperty(obj, name);
} catch (Exception e) {
throw runtimeException(e);
try {
return BeanUtils.getIndexedProperty(obj, name);
} catch (Exception e2) {
}