Posts: 132
Threads: 54
Joined: Mar 2019
Reputation:
1
My Intraweb application consists of IW 15.2.60, HTML template with Javascript, DataTables.
If you generate large data browser message Out of memory.
I can't explain what the problem is because it worked.
Is problem Javascript memory or Ajax, ...?
Posts: 2,261
Threads: 196
Joined: Mar 2018
Reputation:
86
Location: Auckland, New Zealand
Large data where? This is too vague.
Out of memory is a message of a Delphi exception. You need to debug your application and break the execution whenever the exception happens and check where it happens.
Posts: 146
Threads: 34
Joined: Jun 2018
Reputation:
3
Location: USA
If it is really coming from the browser, you need to limit the number of rows that are returned and allow pagination in the results that are sent to the browser.
Posts: 2,261
Threads: 196
Joined: Mar 2018
Reputation:
86
Location: Auckland, New Zealand
Is it happening on browser side or server side?
To implement it using server-side processing you will need to use content handlers (the simplest way) that return the data as needed given some input parameters from the datatables control.