How to put a select field beside the filtering input?
How to put a select field beside the filtering input?
Chrom
Posts: 44Questions: 15Answers: 1
I want to have some divs with a select field and options integrated in my table.
e.g. for the dom
<"selectfield1"><"selectfield2">frtip
First can I only create divs?
I tried to append with jquery in initcomplete. This does not work. No fields or divs get created
var select = jQuery(
'<select><option value="">Alle Sozialen Medien</option></select>'
)
.appendTo(jQuery("selectfield1") )
Answers
Maybe this example will help. If not please build a simple test case showing what you are trying to do.
https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case
Kevin