I'm trying to get this website that runs ComponentArt to run locally. It works on the DEV server but not locally. A number of the call backs aren't working. I set a breakpoint in the server side code, and it's not getting hit because the JavaScript is erroring out that's trying to call it.
The JavaScript error is:
SCRIPT5007: The value of the property 'SaveChanges' is null or undefined, not a Function object File: PopupDataCollectionNoteExternal.aspx.js, Line: 35, Column: 2
The server side code is:
<ComponentArtCallbackMethod()> Public Function SaveChanges(ByVal sDrawerID As String, ByVal iDataCollectionRequestID As String, ByVal iNoteID As String, ByVal sNote As String, ByVal iClosed As String, ByVal sResolution As String) As String
...
End Function
The JavaScript code is:
var sReturn = SaveChanges(sDrawerID,iDataCollectionRequestID, iNoteID, sNote, iClosed, sResolution);
Anyone know if there is a configuration item or file it's missing?