Very slow change of tabular section rows

The 1C:Enterprise developers forum

#1
People who like this:0Yes/0No
Active user
Rating: 5
Joined: Sep 27, 2011
Company:

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

 
#2
People who like this:0Yes/0No
Just came
Rating: 1
Joined: Mar 15, 2012
Company: no

You request server in cycle. Try to plase cycle in server function.

 
#3
People who like this:0Yes/0No
Just came
Rating: 1
Joined: Mar 15, 2012
Company: no

Or use client only.

 
#4
People who like this:0Yes/0No
Active user
Rating: 5
Joined: Sep 27, 2011
Company:

Sounds reasonable, thanks, Mikhail!

 
#5
People who like this:0Yes/0No
Just came
Rating: 0
Joined: Apr 18, 2012
Company:

Instead of &AtServer use &AtServerNoContext

 
Subscribe
Users browsing this topic (guests: 1, registered: 0, hidden: 0)
Be the first to know tips & tricks on business application development!

A confirmation e-mail has been sent to the e-mail address you provided .

Click the link in the e-mail to confirm and activate the subscription.