Hi
I am using a modal dialog in sharepoint 2010 that opens fine in IE but will not open in Chrome despite pop-ups being enabled.
Code behind:
profileReports.Text = "<tr><td><a href=Javascript:openReportsDialog(\'" + studentId + "\'); >Reports</a></td></tr>";
In page:
functionopenReportsDialog(studentId) {
options = SP.UI.$create_DialogOptions();
options.url = SP.Utilities.Utility.getLayoutsPageUrl(
"/CLSG/studentProfile/ProfileReports.aspx?userid="+ studentId);
SP.UI.ModalDialog.showModalDialog(options);
}
Are there any known issues with Chrome opening Sharepoint modal dialogs?
Thanks
Steve