user755806
user755806

Reputation: 6825

ExtGWT import excel sheet

I am using ExtGWT. my requirement is i need to keep import button. as and when import is clicked user should be able to import an excel sheet into the application. and the excel data should be displayed in Gxt grid. please suggest me how to do this?

Thanks!

Upvotes: 0

Views: 411

Answers (1)

Greg Mitchell
Greg Mitchell

Reputation: 231

I would recommend that you use POI for the excel import. Set up a servlet that accepts the excel document, translates it into your data model and then send the data model back to the client.

I haven't done that specifically, but POI is pretty easy to use, and well documented.

Upvotes: 1

Related Questions