Hi,
Our user are having a problem with AX2012. We are hosting our system with an external partner and are RDC onto a server and starts AX from there. When our users are working with the Customer or Vendor we are having the following problem:
Go into the customer form. edit a specific customer (open a new window). Open all the informfation tabs. Now use the mouse to scroll down to the bottom (now the address and contact information is not visible). Scroll back up and the records in the address and contact grid is gone or are partly missing. If you refresh ctrl+F5 it might all get back but not always. This is really giving our users problems. Have any of you similar problems with the customer or vendor form?
To work aroud this I have changed the task() on the Vendor form to do a better refresh (see below). The keypoint is the DirPartyLocation_Electronic_ds.research() which refreshes the to grids But I don't want the users to do F5 when they have used the mouse to scroll up and down. This is definitly not the best solution so I interested if some of you can give me any ideas on this problem?
public
int ret;
//soras-->
if (_taskId == 2876)
_taskId =
2839;
//soras<--
ret =
super(_taskId);
//soras-->
if (_taskId == 2839)
DirPartyLocation_Electronic_ds.research();
//soras<--
return ret; int task(int _taskId)
{