Ok, When i referring to “Mobile framework preview” i mean the right section on the app edit like… tables seccion where is an app simulator on the right side. Now i can see that “Mobile framework preview” is a diferent thing. No i have not enabled the “New mobile framework (preview)”. Sorry for my confusion about that.
End about my Total field, yes is a show field called show_total, and it has the following formula:
CONCATENATE(
"TOTAL: ",
LOOKUP(2, “Monedas”, “id”, “simbolo”),
" “,
SUBSTITUTE([totalEnBolivares], “.”, “,”),
" (”,
LOOKUP(1, “Monedas”, “id”, “simbolo”),
" ",
SUBSTITUTE([totalEnDolares], “.”, “,”),
“)”
)
And the totalEnDolares field (for example) is an real field (not virtual) and has the following formula on Initial Value:
IF(
ISNOTBLANK([Related Items_Compras]),
SUM(
[Related Items_Compras][montoTotalEnDolares]
),
0
)
Here is where is related the formula to items list. Thats why it should be update or recalculate where the list change. This happend only when the environment is web mode, but not happend on mobile app mode. Now…. the other filed withe the count of items, i called “cantidadItems”, is a virtual column too and has the following formula:
COUNT([Related Items_Compras])
On this case, is work fine on mobile app mode, but no working on web mode.
I hope this information can help you to reproduce the problem.
Thank you very much for your response.