LINKTOFORM() error on desktop mode

Good evening, I activated the Desktop mode and in a LINKTOFORM() there is a strange behavior.

 

 

LINKTOFORM(
  "Ingresar_este_producto",
  "id_tipo_movimiento", 1,
  "id_producto", [_THISROW],
  "id_destino", 1
)

 

 

Action with the LINKTOFORM:
1.jpg 

 

 

 

 

 

Form "Ingresar_este_producto" open:
2.jpg

 

 

 

 

 

 

 

 

Here comes the strange thing. When I enter the quantity, the selected product disappears, but that only happens in the desktop view in the browser, it does not happen in the app on the phone or tablet, on phone and tablet work fine.

3.jpg

The Valid_if of the "cantidad" filed is: 

 

 

[cantidad]>0

 

 

The "id_producto" have not Valid_if, only Required. So, I think there is a bug in the "Desktop mode" view.
Any ideas?

0 1 95
1 REPLY 1

I think I have found the reason. I have another field "Code" and in the Initial_value of the product I had it set:

IFS(
  ISNOTBLANK([codigo_producto]),
  LOOKUP(
    [codigo_producto],
    "Productos",
    "codigo",
    "id"
  )
)

So, when i LINKTOFORM with a initial "id_producto" value seted, on the app (phone and tablet) repect that the value pre-seted from the LINKTOFORM, but, on the Desktop mode view dont, there the "id_product" disappears becouse he are searching by the "codigo" field value becouse the "id_producto" Inicial_value. If i remove the Initial_value on "id_producto" field, everything work fine on the Desktop mode view. So, there is a kind of bug on that view mode. How can I report that bug?

Top Labels in this Space