Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I need help to sort a table ( data from sql table ) displayed on website using jQuery on the client side. I need to know how to use the jQuery, after displaying the table using asp/vbnet , code behind.
I also want to know how to position the table below the few controls , eg labels, text boxes, dropdown boxes.

I am using jquery.dataTables.min.js, and demo_table.css.

I created a string

XML
Dim sTable As String = ""

sTable = "<div><table id=""tbldata"" class=""display""><thead><tr>"

Dim DT As DataTable
DT = myDatatable
If Not DT.Rows.Count = 0 Then
    Dim iNumberofColums As Int16 = DT.Columns.Count - 1

    Dim hc As String
    Dim c As Int16 = 0
    For Each CL As DataColumn In DT.Columns
        hc = CL.ColumnName
        sTable = sTable & "<th>" & hc & "</th>"
    Next
    sTable = sTable & "</tr></thead><tbody>"

    Dim tc As String
    For Each RW As DataRow In DT.Rows
        sTable = sTable & "<tr>"
        c = 0
        For c = 0 To iNumberofColums
            tc = RW(c).ToString
            sTable = sTable & "<td>" & tc & "</td>"
        Next
        sTable = sTable & "</tr>"
    Next
    sTable = sTable & "</tbody></table></div>"
End If
Response.Write(sTable)


and response.write(sTable) to display the table.

in the aspx

<script type="text/javascript">
$(document).ready(function () {
$('#tbldata').dataTable({
"aaSorting": [[2, 'desc']],
"aoColumns": [null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
]
});
});

</script>

Is this a proper method ?. How can I improve. Thanks for your advice
Posted

1 solution

Should think of adding a GridView control to your page (call it tblData) where you want it (that is for proper placement)
To avoid the string and record manipulation you could bind your data the usual way (tblData.DataSource = xxx; tblData.DataBind(); )
Then keep your jQuery stuff as is. It should work fine...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900