Is there a way to create a link to a specific datatable?

Is there a way to create a link to a specific datatable?

dt_userdt_user Posts: 51Questions: 16Answers: 0

When I click on a person's name(link) I want to be directed to their specific datatable.
Please let me know if that is possible?

Answers

  • allanallan Posts: 63,175Questions: 1Answers: 10,409 Site admin

    That's not really something that DataTables itself does. You'd need a page which contains a DataTable that is populated by a conditional SELECT query (e.g. a WHERE statement). That condition would be the user name or id or something else depending on the structure of your database.

    The think to think about here is not how DataTables will do that for you, but rather how to do it without DataTables (i.e. a plain HTML) and then use DataTables to enhance that table.

    Allan

This discussion has been closed.