Hi! I have 2 fields
field1:
temp := @Unique(@DbColumn( “” : “NoCache” ; Server : “” ; “LookupMarca”; 1 ));
@If(@IsError(temp);“”;" " : @Trim(temp))
field2:
temp:=@DbLookup( “” : “NoCache” ; “” : “” ; “LookupMarcaModelo” ; field1 ; 2);
@If(@IsError(temp);“”;temp);
@If(field1=“”;“”;temp)
The field2 depend in the valor that you choose in the field1, its work fine, but i dont want to use “Refresh fields on keyword change”, because its work slow in Internet Slow Connection, so my question is:
There is way to populate field2 without “Refresh fields on keyword change”, so the page dont have to reload???