SergioLlana/datatables-flask-serverside

What is the ajax data format ?

Opened this issue · 1 comments

Can anyone give me a example ?

Can anyone give me a example ?

I'm pretty sure the output will be in JSON format, as you can see in this code:

@tables.route("/serverside_table", methods=['GET'])
def serverside_table_content():
    data = table_builder.collect_data_serverside(request)
    return jsonify(data)