AutoFill with input elements - show plus sign also at mouseover on the input elements
AutoFill with input elements - show plus sign also at mouseover on the input elements
Hello,
I am using DataTables with Autofill and input elements - similiar to the example here:
http://datatables.net/release-datatables/extras/AutoFill/inputs.html
It works fine, the only thing I want to add is to show the plus sign in the down right corner also when I am writing in an input field or generally on the mouseover-effect of input elements (e.g. select-boxes).
How can I add that functionality?
Thank you guys!
I am using DataTables with Autofill and input elements - similiar to the example here:
http://datatables.net/release-datatables/extras/AutoFill/inputs.html
It works fine, the only thing I want to add is to show the plus sign in the down right corner also when I am writing in an input field or generally on the mouseover-effect of input elements (e.g. select-boxes).
How can I add that functionality?
Thank you guys!
This discussion has been closed.
Replies
$('tbody>tr>td>input', this.dom.table).parent().live( 'mouseover mouseout', function (e) {
that._fnFillerDisplay.call( that, e );
} );
Can anybody explain me how I can correct the selector?