cant type in search field, input tag not terminated

cant type in search field, input tag not terminated

metalrexmetalrex Posts: 1Questions: 0Answers: 0
edited March 2012 in DataTables 1.9
Version: 1.9.0

The datatable search field [code][/code] does not respond when I try to type in it. Can click in the field to give it focus but cant type. Tried on chrome and FF with same results. I noticed that the input that represents the field is not terminated, not sure if thats a related issue.

Here is the init code, minus the "aaData" portion.

[code]

$('#room_list_container').html("");

window.roomListTable = $('#room_list_table').dataTable({

"bJQueryUI": true, "sPaginationType": "full_numbers", "bLengthChange": false, "bFilter": true, "iDisplayLength": 20, "sScrollY": "462px", "sDom": '<"H"lifr>t<"F"p>',
"aoColumns": [
{ "sTitle": "Room", "sType": "numeric" },
{ "sTitle": "Name", "sType": "string" },
{ "sTitle": "Company", "sType": "string" },
{ "sTitle": "Work Type", "sType": "string" },
{ "sTitle": "Title", "sType": "string" },
{ "sTitle": "Project", "sType": "string" },
{ "sTitle": "Safety Tickets", "sType": "html" } ],
"aaData": [ ]
});

[/code]

Using bjQueryUI with ui-darkness/jquery-ui-1.8.17.custom.css. The datatable resides in a hidden element inititally, but after making its parents visible I am calling [code]window.roomListTable.fnAdjustColumnSizing();[/code] to deal with the column width sizing, thats it.

Thanks for looking :)
This discussion has been closed.