Hi,
using SmartGWT/3.1p/PowerEdition/2013-04-12.
After applying new above mentioned library we are getting couple of ClassCastExceptions.
For example. We have a field in DS defined like this:
On server we do casting like this:
And this line of code is now throwing ClassCastException.
So it looks like in the past DB type took precedence while today takes precedence “type” attribute in DS.
Was this intended change by you or is it a bug ?
Regards,
Frantisek
using SmartGWT/3.1p/PowerEdition/2013-04-12.
After applying new above mentioned library we are getting couple of ClassCastExceptions.
For example. We have a field in DS defined like this:
Code:
<field name="someName" type="text" escapeHTML="true" customSelectExpression="table_alias.COLUMN_NAME"/>
Code:
BigDecimal fieldName = (BigDecimal)record.get("fieldName");
So it looks like in the past DB type took precedence while today takes precedence “type” attribute in DS.
Was this intended change by you or is it a bug ?
Regards,
Frantisek
Comment