Re: Help in designing excel like sheet in Django/python

2020-04-13 Thread suman patel
Hey, Thanks all for your suggestions. I am exploring Jexcel and its very good. Thx Guerrero. Regards Patel On Sat, Apr 11, 2020 at 1:43 AM Gerardo Palazuelos Guerrero < gerardo.palazue...@gmail.com> wrote: > Hi, > I used in the past the following library: > https://bossanova.uk/jexcel/v3/ >

Re: Help in designing excel like sheet in Django/python

2020-04-10 Thread Gerardo Palazuelos Guerrero
Hi, I used in the past the following library: https://bossanova.uk/jexcel/v3/ It enables you to incorporate kind-of Excel spreadsheet so users feels in home; it basically reacts to changes on cells/rows and you decide what to do. It really has lots of good features. On our case, an internal RES

Re: Help in designing excel like sheet in Django/python

2020-04-10 Thread dvij parekh
On Saturday, April 11, 2020 at 7:03:20 AM UTC+5:30, s.patel wrote: > > Hi All: > I need advice on how to design spreadsheet like screen using > python/Django. I need some idea around this for my college project. > > Requirement: Need to build math calculation like framework where user can >

Re: Help in designing excel like sheet in Django/python

2020-04-10 Thread Stephen L
Hello, Django is a web framework that uses python in the backend. You will need JS to build the spreadsheets in the browser. You can use a library like handsontable. On Fri, Apr 10, 2020, 8:32 PM s.patel wrote: > Hi All: > I need advice on how to design spreadsheet like screen using > pytho

Help in designing excel like sheet in Django/python

2020-04-10 Thread s.patel
Hi All: I need advice on how to design spreadsheet like screen using python/Django. I need some idea around this for my college project. Requirement: Need to build math calculation like framework where user can select rows/column and perform calculations like sum, Mean etc Similar to excel. s