I upgraded to RC2 this morning and have noticed that my dialogs aren’t working correctly. Here is my code:
var diag = plugins.dialogs.showQuestionDialog("Change to Standard","Would you like to change this to a Standard finding for " + varName.toUpperCase() + "?","OK", "Cancel");
if(diag === "OK")
{
//Do stuff
}
When I look at this in debugger, diag = “uninitializedValue”. I loaded up beta1, and it works fine. Bug in RC2? I didn’t use RC1 so don’t know when it quit working.
Thanks!