What are some good jQuery Resources along with some gotchas when using it with ASP.Net?

link|improve this question

feedback

closed as not constructive by Kev May 20 at 22:50

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 3 down vote accepted

One thing to note is that if you use WebMethods for Ajax, the response values will be returned wrapped in an object named 'd' for security reasons. You will have to unwrap that value, which is usually not a problem, unless you are using a component (such as the jqGrid plugin) that relies upon jquery ajax. To get around that, I just changed the code in the grid that called ajax and inserted a bit of code to unwrap. I do plan on sending in some code to the jquery crew to see if it can be accepted for future versions.

The next thing, as was mentioned previously, is the ids. If you have the time and inclination, I actually subclassed all of the HTML controls to make participating in the NamingContainer optional, like this:

protected override void RenderAttributes(HtmlTextWriter writer) {
	HtmlControlImpl.RenderAttributes(this, writer);
}

And then the helper object (to prevent writing the same code in each object) looks like this:

public static void RenderAttributes(IFormControl cntrl, HtmlTextWriter writer) {
	if (cntrl.ID != null) {
		cntrl.Attributes.Remove("id");
		cntrl.Attributes.Remove("name");
		writer.WriteAttribute("id", cntrl.RenderedId);
		writer.WriteAttribute("name", cntrl.RenderedName);
	}
	cntrl.Attributes.Render(writer);
	HtmlContainerControl containerCntrl = cntrl as HtmlContainerControl;
	if (containerCntrl == null)
		writer.Write(" /");
}

public static string GetRenderedId(IFormControl cntrl) {
	return cntrl.UseNamingContainer ? cntrl.ClientID : cntrl.ID;
}

public static string GetRenderedName(IFormControl cntrl) {
	return cntrl.UseNamingContainer ? cntrl.UniqueID : cntrl.ID;
}
link|improve this answer
feedback

ASP.Net's autogenerated id's make using jQuery's selector syntax somewhat difficult.

Two easy ways around this problem:

  • Search for objects using css class instead of id
  • You can weed out the uniqueid garbage with: $('[id$=myid]')
link|improve this answer
Thanks for the note about $('[id$=myid]'). I can finally get rid of my "uniqueid garbage"! – EndangeredMassa Oct 27 '08 at 22:32
WOW! I didn't know what [id$=myId] would do, so I looked it up in the documentation. Matching the end, so simple! Bet it uses Regex. You could probably enhance it further by always prefacing with '_'. THANKS! You get a gold star! – Atømix Oct 27 '08 at 23:32
Awesome tip Adam! – L. De Leo Feb 11 '09 at 13:11
feedback

Rick Strahl's Blog is a good place to start. He has quite a few jQuery posts.

link|improve this answer
feedback

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