|
|
|
|
|
by jwoah12
4750 days ago
|
|
My side project[1] is an interactive table component that allows the user to provide the table data through an arbitrary callback. I allow the use to either pass an actual function or a reference to inline code that will be instantiated as a web worker. I figure there may be a case in which the user is creating the dataset in some expensive way, but it can happen in a separate thread and not tie up the UI. Then the worker passes the final data back to the UI thread to render. It would make sense that any intensive calculations should happen on the server, but I wanted to leave the option open. [1] - http://jarwol.com/aTable/ |
|