datatables icon indicating copy to clipboard operation
datatables copied to clipboard

SQLAlchemy->Datatables

Results 12 datatables issues
Sort by recently updated
recently updated
newest added

I know this isnt the way it should be done, but this project is truly dead otherwise. So to make it easy to find for others that are in need,...

It seems like the package not working on one to many relationships with the secondary table

Great library. Many thanks. You may want to update the PyPi page so that pip pulls the version with the columns search. Also may want to include an example template...

Hi , I am using this code: ``` @amazon.route("/data")` def datatables(): table = DataTable(request.args, Order, db.session.query(Order), [ "id", ("AmazonOrderId", "AmazonOrderId"), ("OrderStatus", "OrderStatus"), ]) return json.dumps(table.json()) ``` But i get {"error":...

If I have users and addresses and i'm creating a table of addresses, i want to also show user name and sort by it, not just by address.user_id. how can...

See error below ``` File "/app/.heroku/python/lib/python2.7/site-packages/datatables/__init__.py", line 138, in _json query = self.search_func(query, str(search["value"])) UnicodeEncodeError: 'ascii' codec can't encode character u'\xe7' in position 4: ordinal not in range(128) ``` Only...

Hi, Thank you for this amazing module! It really does help as all the datatables examples that i've seen are PHP. I've got a flask-alchemy project with flask-restless for REST...

I'm not a database expert, however from what I gather, paging results from a query with ORDER BY clause on a column that's not unique and contains lots of repeating...

@orf Thanks for creating this library. I've been trying to use datatables with my flask application but most examples I see with serverside processing have been php. I see that...

Hi, not to nit pick but I can't see how searching could possibly work here. in the **init** method you define search_func as a lambda that takes two arguments and...