Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.

Status ID Uploaded By Description Work Items Action
Being evaluated
1307 May 28 2008 at
8:10 PM
ewsachse This is a fix for 9182 - 'undefined' is null or not an object

The source of the erroris in the MetaBuilders_DialogWindow_DoDialogPostBack function in the DialogWindowBaseScript.js file. It was not checking if the result was undefined. See below.

broken code:
if ( result == null) {
result = info.DefaultValue;
break;
}

fixed code:
if ( result == null || result == undefined) {
result = info.DefaultValue;
break;
}
9182
Download

Being evaluated
739 Jan 26 2008 at
1:29 AM
SelArom modification to RollOverLink.cs to allow theming
Download

Being evaluated
502 Nov 26 2007 at
6:42 AM
agorin Remote window with "Scrollbars" parameter (True/False) to configure openwindow javascript command.

Andrea
Download

Updating...
© 2006-2009 Microsoft | About CodePlex | Privacy Statement | Terms of Use | Code of Conduct | CodePlex Blog | Version 2008.12.9.14291