views:

101

answers:

1

Microsoft JScript runtime error: 'this.Plugins[...]' is null or not an object

coming from this code:

var xVal = xVal || {
    Plugins: {},
    AttachValidator: function(elementPrefix, rulesConfig, pluginName) {
        if (pluginName != null)
            this.Plugins[pluginName].AttachValidator(elementPrefix, rulesConfig);
        else
            for (var key in this.Plugins) {
                this.Plugins[key].AttachValidator(elementPrefix, rulesConfig);
                return;
            }
    }
};
+1  A: 

Make sure you are referencing xVal.AspNetNative.js AND xVal.jquery.validate.js in your master page.

jasonlaflair