I cannot get a popup to display.
I have declared the popup as follows:
var mv_properties = { view: "popup", id: "fileInfo",
hidden: true,
body: { view: "template",
src: "logo.html",
scroll: "no",
height: 135 }
};
and then invoke it thus:
var mv_file = { view: "layout",
id: "thisFile",
rows: [{ view: "toolbar", css: "toolbar",
elements: [
{ view: "imagebutton",
label: "name",
align: "left", src: "./images/properties.gif",
popup: "fileInfo, left" }
]
}]};
but nothing happens when I click on the imagebutton!
Any help gratefully received.