While working on a project that involves integrating DataTables
and Excel files, I encountered the challenge of uploading an Excel file and displaying its contents using DataTables
. Despite my search for a JavaScript library that could parse the Excel file and seamlessly integrate it with DataTables
, I found no suitable solution. The only viable option seemed to be sending the data to the front-end server using Struts/Java, processing it, and then returning it as JSON. I wonder if there is a way for DataTables
to wait for the JSON data via Ajax without explicitly making a request.