For some reason, my SharePoint's modal dialog doesn't work properly.
The error I get is this:
- In Firefox:
SP.UI.$create_DialogOptions is not a function - In IE:
Object doesn't support this property or method
Here is my code:
var options = SP.UI.$create_DialogOptions();
options.width = 525;
options.height = 300;
options.url = '/_layouts/mywork/richtexteditor.aspx';
options.dialogReturnValueCallback = Function.createDelegate(null, function (result, value)
{
alert(result + value);
});
SP.UI.ModalDialog.showModalDialog(options);
Interestingly, when I inspect the SP.UI in Firebug, I don't see all the methods and properties.
Have a look:

NOTE: I am using standard Webpart (not visual) and not an application page
Any and all help is appreciated :)
SP.UI.$create_DialogOptionsis not loaded yet. SP2010 created a new mess with this "dynamic" JS stuff. – user166390 Jun 7 '11 at 23:46var options = {...}, although this will just delay the error to theshowModalDialogline. I'm not sure why$create_DialogOptionsever became so widely suggested... – user166390 Jun 7 '11 at 23:54