Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On my grid, I have put a icon on a cell and on the click event I am showing a menu option. the menu displays by event.getXY() position but I want to show the menu start from the bottom of the icon or the specific cell like:

Or like standard plugin opens the calendar just from the bottom of cell. Thanks in advance.

share|improve this question
please post your code on jsfiddle. – Shubhanshu Mishra Oct 13 '12 at 9:15
I am using this function: – user1743096 Oct 13 '12 at 11:00
what is jsfiddle.I am new here.Please suggest – user1743096 Oct 13 '12 at 11:02
jsfiddle.net you can put your HTML, JS and CSS code here so that we can easily review it and suggest solutions. – Shubhanshu Mishra Oct 13 '12 at 11:13
shubhanshu..plz join me on fb: facebook.com/ankit.srivastav.98 – user1743096 Oct 13 '12 at 11:49

1 Answer

itemcontextmenu: function (grid, rec, item, index, event) {
    event.preventDefault();
    var rect = event.target.parentElement.getBoundingClientRect(); // try to play with or without 'parentElement'
    var x = rect.left;
    var y = rect.top + rect.height;
    myMenu.showAt(x, y);
}

Tested on Chrome, IE9

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.