-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Performance comparison with the paying version of jqGrid? #492
Comments
Are you going to use it with PHP or Python? |
Python. Will this make a difference to the answer to the question? |
The reason is that I made an open-source datagrid in Python using free-jqGrid. https://github.com/pycr/pythongrid maybe it will help you to decide. Let me know if you have any questions. |
That looks interesting. At the moment I'm working things so that I don't need Flask or Django: just calls to the dbase using mysql.connector. I want to make my first tests of this as dependency-free and uncomplicated as possible. But can I ask: you must have been using jqGrid-free for some times: did you weigh up the pros and cons between jqGrid-free and DataTables? Also I'm puzzled about the status of jqGrid-Gurrido (the paying version): it is possible to download all this source code from its Github page. So what are people paying for? And why did this fork happen back in 2014? I mean, why did Oleg need to fork jqGrid-free when the Gurrido source code is available to download freely? |
@OlegKi explained here after MIT license was dropped. I am not entirely sure how you would use jqGrid without a web framework. You've mentioned mysql connector, but didn't go about how you would have data displayed on the front-end. Without a web framework, AFAIK even for things like obtaining URL query parameters can be frustrating. That is one of the reasons I chose to use a framework for pythongrid. I'm still relatively a Python newbie. If you know how to get around and be efficient in developing web apps in Python without a framework, I'm all ears. |
I'm not a Python expert either. My Python cgi file is currently very simple as it only does one thing: retrieve some rows from a data table. But any SQL statement could be processed by a bit of tweaking. (In practice people everywhere say always use prepared statements, with settable parameters...).
|
For a proof of concept, that what I initially did with MySQL first before I decided to use SQLAlchemy instead in order to support a wider array of databases and more streamlined API. Like what you did, it does similar data retrieve before loading them onto jqGrid to render the grid. It wraps jqGrid in grid class so that one doesn't really need to know a lot about the jqGrid. Just take a look at the routes.py. At a minimum, this is all you need
|
As I say, that does look interesting, RESTful, etc. But it also involves learning something entirely new and understanding what's gone wrong when things don't work out. Bear in mind that I've only just discovered jqGrid today! The learning curve is a bit steep, not least because the intro documentation is cursory. I've just googled my way to a first vague grasp of how cell editing works. To return to the subject of this thread, though, if you don't mind, have you ever looked at DataTables? A number of early indications (in my investigations) and opinions expressed out there and observations I've made today are tending to make me incline towards jqGrid. Did you consciously choose jqGrid over DataTables at some point and if so what swayed it for you? |
I like jqGrid. It has less learning curve than DataTable, which I only used in another different project. Mind you, they are all front-end, so one must still develop server-side scripts to handle update and delete. In my view, jqGrid is much more flexible than DT, still very fast. My large dataset ever used is over 3 million rows. |
Hi, sorry if this is not the best place to ask this.
I'm trying to choose a JS data grid solution (to link to dbases via Ajax and server-side scripting). The choice seems to have boiled down to either your project or the DataTables project. I want it to be FOSS. I've started examining the JS source code of both these projects (to try to understand what's going on, and how easy it might be to add my own developments).
At the moment I'm inclining towards yours. There are lots of things to consider when trying to decide, but for example here, the consensus seems to be that the jqGrid solution is more configurable and probably has better performance.
However the link there is to the "Gurrido" (paying) version of jqGrid.
Do you have any views about whether your fork may have improved performance since the fork (v. 4.6.0 I believe), or whether the Gurrido version may have improved?
By the way, on this page you say that you'd be interested in native English speakers helping improve the documentation. I'm a native English speaker and when I get more familiar with the project I'd be happy to see if I could help with that.
The text was updated successfully, but these errors were encountered: