Jump to content
  • 0

Контекстное меню на сгенеренной таблице.


Delphin911
 Share

Question

Народ, нашел простенькую менюшку контекстную. Ну собственно принцип у всех один. Вот сама менюшка

    <div id="main_menu">
        <div onClick="jump(this);" id="openb">Открыть файл</div>
        <div onClick="jump(this);" id="delb">Удалить файл</div>
    </div>    

А вот обработка

<script>
function mousemove(event) {
        if (document.attachEvent != null) {
            mouse_x = window.event.pageX;
            mouse_y = window.event.pageY;
        } 
        else if (!document.attachEvent && document.addEventListener) {
            mouse_x = event.pageX;
            mouse_y = event.pageY;
        }
    }

    function show_menu(e) {
        mousemove(e);
        menu_obj.style.left = mouse_x + "px";
        menu_obj.style.top = mouse_y + "px";
        menu_obj.style.visibility = "visible";
        return false;
    }

    function hide_menu(e) { menu_obj.style.visibility = "hidden"; }

    function jump(e) { alert(e.getAttribute("title"));window.location=e.getAttribute("title");}

    //document.oncontextmenu = show_menu;
    document.onclick = hide_menu;            
</script>

Проблема вот в чем. Я генерю табличку со списком файлов

<table id="myTable">
    <tbody></tbody>
</table>
    function CreateView(data) {
        for (var i = 0; i < data.length; i++) {
                var tr = document.createElement('tr');
                var td = tr.appendChild(document.createElement('td'));
                td.style.width = "30%";
                td.innerHTML = data[i]['type'];
                td = tr.appendChild(document.createElement('td'));
                td.style.width = "70%";
                td.innerHTML = data[i]['name'];
                td.oncontextmenu = show_menu;
                td.onmouseup = m_up(this);
                document.getElementById('myTable').tBodies[0].appendChild(tr);
        }
    }

Так вот по нажатию правой кнопкой на строчку таблички мне надо получить менюшку с 2 строчками: прочитать файл и удалить файл. Надо из таблички имя файла передать. Никак не получается. У show_menu ничего в параметрах подсьавить не дает.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy