Anyone can upload a patch. Patches are evaluated by project team members and either Applied or Declined.
1-3 of 3Patches
< Previous 1 Next >
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
|
1-3 of 3Patches
< Previous 1 Next >