I have jQuery in various files, and recently I have needed to change items in the master page. This has caused various jaavscript includes to stop working. Stackoverflow are suggesting great ideas to solve the issue regarding the get by ID selector.

$("#ctl00_ContentMainPane_eliteUser").html

However I have a problem where we have used jquery.validate.js to validate form controls, so there is code like this in external JS files

$(document).ready(function(){ 
    $("#aspnetForm").validate({
        rules: 
    {
    	ctl00$ContentMainPane$txtFirstName:
    	{
    		required:true,
    		CheckAlfaNumeric:true
    	},
    	ctl00$ContentMainPane$ctl00$ucRFI$txtComments:
    	{
    		required:true
    	}	        	        

    },
    messages:
    {
    	ctl00$ContentMainPane$txtFirstName:	
    	{
    		required:" Please enter first name"
    	},
    	ctl00$ContentMainPane$ctl00$ucRFI$txtComments:
    	{
    		required:" Please enter comments."
    	}
    }
    });
    $("#" + GetPlaceholder() + "txtFirstName").blur(function(){
            $("#" + GetPlaceholder() + "txtFirstName").valid();
    });
    jQuery.validator.addMethod("CheckAlfaNumeric", function(value, element) {
            return this.optional(element) || /^[A-Za-z\ ]+$/i.test(value);
    }, " Please enter alphabet.");
});

Any idea how to prevent the nameing issue of attributes if the name happens to change due to the master page being amended?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Wait for .NET 4.0, which allows you to specify exactly how the ID's should be constructed ;)

Seriously: you can AFAIK create your rules manually, doing something like (a JS object is nothing but an "array" of properties):

var myRules = new Object();
myRules[GetPlaceholder() + "txtFirstName"] = { required:true, CheckAlfaNumeric:true };

var myMessages = new Object();
myMessages[GetPlaceholder() + "txtFirstName"] = { required:"Please enter first name" };

$("#aspnetForm").validate({ rules: myRules, messages: myMessages });
link|improve this answer
It may just be the .Net o phile in me, but can you make "new Object()" a strongly typed class here? – digiguru Aug 5 '09 at 14:47
no, there is no such concept of a class or a strong type for that matter in JavaScript... – veggerby Aug 5 '09 at 15:54
feedback

Have you looked at http://weblogs.asp.net/psperanza/archive/2009/05/07/jquery-selectors-selecting-elements-by-a-partial-id.aspx for partial matches in jQuery.
The only other option I can see is to add the js file contents to the page and use something <%=txtFirstName.ClientID%>

link|improve this answer
feedback

See my answer here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.