how to make pop up on left side of each icon in list view?

Shruti

I am making a demo of list view. Rows are is generated dynamically (when user press add button).I want to show a pop up screen on left side of icon.But In my demo it is opening on center on every row.Can it is possible it only open on left side of icon or each row (as show in image)

http://jsfiddle.net/FZQ8D/34/

$(document).on("click", "i.test_h", function(e){
    alert("pop up open");
    $("#Mainnavpanel").popup("open");
});

![enter image description here][2]

I am getting this output.

Omar

Override x and y position of popup.

$("#Mainnavpanel").popup("open", {
  y: $(this).offset().top + ($(this).height() / 2),
  x: $(this).offset().left
});

Or positionTo.

$("#Mainnavpanel").popup("open", {
   positionTo: $(this)
});

Demo

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to make pop up on left side of each icon in list view?

From Dev

How to make Icon and Text align Left side on JButton

From Dev

How to make button with icon at left side without line break?

From Java

How to make linear layout inside pop up view responsive?

From Dev

Android: how to add Icon at the left side of the TextView

From Dev

how do I make this pop up extension more generic to be applied to any view?

From Dev

How to make marquee text pop up again immediately after it leaves the screen view in Android

From Dev

How to make a button with an icon on the side bootstrap

From Dev

How to create a custom pop up view with swift?

From Dev

Xcode - How to make a pop up menu

From Dev

How to make this pop up layer in the middle of the page?

From Dev

How to make pop-up for error bootstrap?

From Dev

How to make a pop up button (Python)

From Dev

How to make icon move to the left on MDL header?

From Dev

How to design android pop-up window with likely slide list view

From Dev

How do I make a pop-up bubble/dropdown with a list of checkmarks?

From Dev

How to do stuff with actionbar sherlock icon on top of left side?

From Dev

Calendar View on pop up

From Dev

How to set an icon(picture) for each row in listview. List view items access through some folder in sdcard

From Dev

How can I make each word in a read-only textview touchable so that a pop-up appears when touched?

From Dev

How to make blocks line up side-by-side in pairs?

From Dev

how to make a side-by-side span into below with each other

From Dev

how to add a fixed position Box on left side of each post

From Dev

How to add icon in list view Odoo?

From Dev

How can I make the documentation pop-up on hover in PyCharm?

From Dev

How to make multiple JQuery pop up , on hyperlinks click?

From Dev

how to make window.open pop up Modal?

From Dev

how to make pop-up image using css3?

From Dev

How would I make a message pop up after this form is submitted?

Related Related

  1. 1

    how to make pop up on left side of each icon in list view?

  2. 2

    How to make Icon and Text align Left side on JButton

  3. 3

    How to make button with icon at left side without line break?

  4. 4

    How to make linear layout inside pop up view responsive?

  5. 5

    Android: how to add Icon at the left side of the TextView

  6. 6

    how do I make this pop up extension more generic to be applied to any view?

  7. 7

    How to make marquee text pop up again immediately after it leaves the screen view in Android

  8. 8

    How to make a button with an icon on the side bootstrap

  9. 9

    How to create a custom pop up view with swift?

  10. 10

    Xcode - How to make a pop up menu

  11. 11

    How to make this pop up layer in the middle of the page?

  12. 12

    How to make pop-up for error bootstrap?

  13. 13

    How to make a pop up button (Python)

  14. 14

    How to make icon move to the left on MDL header?

  15. 15

    How to design android pop-up window with likely slide list view

  16. 16

    How do I make a pop-up bubble/dropdown with a list of checkmarks?

  17. 17

    How to do stuff with actionbar sherlock icon on top of left side?

  18. 18

    Calendar View on pop up

  19. 19

    How to set an icon(picture) for each row in listview. List view items access through some folder in sdcard

  20. 20

    How can I make each word in a read-only textview touchable so that a pop-up appears when touched?

  21. 21

    How to make blocks line up side-by-side in pairs?

  22. 22

    how to make a side-by-side span into below with each other

  23. 23

    how to add a fixed position Box on left side of each post

  24. 24

    How to add icon in list view Odoo?

  25. 25

    How can I make the documentation pop-up on hover in PyCharm?

  26. 26

    How to make multiple JQuery pop up , on hyperlinks click?

  27. 27

    how to make window.open pop up Modal?

  28. 28

    how to make pop-up image using css3?

  29. 29

    How would I make a message pop up after this form is submitted?

HotTag

Archive