javascript - DataTables row moving behind bootstrap modal using RowReorder -


i´m using datatables on bootstrap modal window, , when implement rowreorder extension works fine, except row following mouse pointer occurs behind modal. there way set can see row moving in front of screen on modal window? z-order or so? thank in advance.

by default bootstrap .modal have z-index: 1050 , .modal-backdrop z-index: 1040. have ensure z-index rowreorder floating element has higher rank :

table.dt-rowreorder-float {     z-index: 2000; } 

demo -> http://jsfiddle.net/l82z0jgj/


Comments