I have a repeater In which I am displaying different values.On click of each row I want to display few values.But in the enyo example the content of the popup is popup.....
This content I want to change.I have tried as below
I have the popup-
{name: "basicPopup", kind: "enyo.Popup", floating: true, **centered: true,**
style: "background-color: yellow; padding: 10px", onHide: "popupHidden", components: [
{content: "Popup..."}
]
},
If I am removing centered:true all the popups are coming on the left corner. I want that on the repeater on which i will click the popup should come near that row i mean where i will click popup will come near mouse click.
Please help...