javascript - when I combine I am not able t see the delete button -


  • i moved grid popup. when click 3 dots need show delete button
  • i able see delete button when alone.
  • but when combine not able t see delete button.
  • can guys tell me how fic it...
  • providing code , fiddle below.

  • working fiddle http://jsfiddle.net/sureshatta/7brbws09/6/

  • not working fiddle http://jsfiddle.net/xy7ht/61/

    <div id="grid"></div> <div class="pai-del-menu">delete</div>   <script id="delete-confirmation" type="text/x-kendo-template">   kendowindow.data("kendowindow")     .content($("#delete-confirmation").html())     .center().open();    $(document).on("click", "#playerdocumentok", function(){      pai_to_delete.remove();  </script> 

the z-index of pop z-index: 10011; .pai-del-menu z-index: 999;. set above 10011. example z-index: 10012;.

or can set dynamically, i'd recommend realized z-index set dynamically:

$('.pai-del-menu').css({   left: pai_x,   top: pai_y,   zindex: parseint($('.k-window').css('z-index')) + 1 }); 

Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -