YangNing Posted May 10, 2014 Posted May 10, 2014 I create a simple unigui project, only a MainForm. When I resize the window of the browser, client will send ajax-request to server. But I don't write event in service code. Later, I found that there are many like this useless interaction information between client and server. These interactions between client and server cause the browser to slow down. When the project bigger, it's more obvious.
Administrators Farshad Mohajeri Posted May 10, 2014 Administrators Posted May 10, 2014 Actually those ajax requests are transparent to the user and it does not get slower when project becomes bigger. Those events inform the server that form is resized so proper sizing and anchoring can be performed. That said, I plan to reduce number of events to minimum required.
YangNing Posted May 10, 2014 Author Posted May 10, 2014 Hi, Farshad Mohajeri I think it's a good way to send ajax requests if server required. For example, the server writes events.
Recommended Posts