With TMS Web Core V2.6 beta, we have an issue setting an object's value with RTTI. Line 919 of RTTI.pas reads:
Result := TypeInfo.Kind in ConversionAccepted;
but it should actually read
Result := ATypeInfo.Kind in ConversionAccepted;
With TMS Web Core V2.6 beta, we have an issue setting an object's value with RTTI. Line 919 of RTTI.pas reads:
Result := TypeInfo.Kind in ConversionAccepted;
but it should actually read
Result := ATypeInfo.Kind in ConversionAccepted;
You are correct about this issue. We fixed this now. Thanks for reporting.