Hello!
I made a group row changing command, it works fine on my local machine, but it works very slow in Web Client, here is the code:
| Code |
|---|
&AtClient
Procedure ResetQuantity(Command)
For Each Row In Object.List Do
Row.Quantity = GetDefaultQuantity(Row.Item);
EndDo;
EndProcedure
&AtServer
Function GetDefaultQuantity(Item)
Return Item.DefaultQuantity;
EndFunction |