1
Button "Data" on Form "Usage data" (AOT name "SysLastValue" shows actual no values (only "" appears in new dialog). Because of not business impact related, this was transferred from a MS Service Request to ideas.

Actual Code (10.0.14):

[Control("Button")]
class DataButton
{
void clicked()
{
super();
SysUtil::conView(sysLastValue.Value, "@SYS70739");
}

}



Code, that will work (if i do it for example in an extension):
[Control("Button")]
class DataButton
{
void clicked()
{
super();
if (!sysLastValue.Value)
{
SysUtil::conView(ContainerHelper::deserialize(sysLastValue.Document), "@SYS70739");
}
else
{
SysUtil::conView(sysLastValue.Value, "@SYS70739");
}
}

}
Category: General
STATUS DETAILS
Declined