Code |
---|
&AtClient Procedure ListOnActivateRow(Item) Line = Items.List.CurrentData; If ValueIsFilled(Line.ComprobanteRecibido) Then Items.Lable.Title = "Text1"; Else Items.Lable.Title = "Text2"; EndIf; EndProcedure |
Every time it changes from Text1 to Text2 and vise versa it provokes a server call. How could I disable List update? I can't add this logic to the Query because the real code is 200 lines and this is just an illustration of the problem.
All functions are client-side functions. items.Lable does not belong to List. Just some info field on the screen.