Server-Side Processing Inputs & Outputs
Server-Side Processing Inputs & Outputs
kaseykrehbiel
Posts: 18Questions: 2Answers: 0
I'm planning on using a WCF service to talk back and forth to DataTables, and I was wondering if there is a list anywhere of all variables that DataTables SENDS to the server, as well as a list of all variables that DataTables expects to RECEIVE from the server.
There are a lot of examples to draw from, and I could just examine the HTTP traffic to find this information, but I was hoping that this input/output type list would be located somewhere so it would be easier to reference (and so that I'd be less likely to miss something important.) Any help would be appreciated. Thanks a lot!
There are a lot of examples to draw from, and I could just examine the HTTP traffic to find this information, but I was hoping that this input/output type list would be located somewhere so it would be easier to reference (and so that I'd be less likely to miss something important.) Any help would be appreciated. Thanks a lot!
This discussion has been closed.
Replies
Allan
And thanks again for this awesome product!
> sColumns
Its deprecated and shouldn't be used (hence why not documented, to discourage use). Use mDataProp instead :-)
Allan
http://datatables.net/examples/server_side/column_ordering.html
to indicate that it is deprecated? I had found that and submitted its usage to my colleague for writing the WCF service before I saw your response. I do plan on using this server-side code along-side the colReorder plugin, so I'm hoping mDataProp accounts for that. If not, please let me know.
Thanks again for this plugin, and for your support!
mData / mDataProp (use it with objects) is a much better solution to column order independence from the data source.
Allan