I would like to implement Jquery EasyUI (http://www.jeasyui.com) in my asp.net application. If you can please provide me with some working examples that would be great. I have never worked with Jquery and hence this question.
A small single example would also do me good
This is a pretty broad question. I can help you somewhat by showing you how to easily create the references to the jquery libraries (assuming you want to do that instead of having them on your server). If you’re just getting started, this is probably the easiest way to do so.
Include these lines in your Master page:
Make sure you use the latest versions which you can find from an easy search. The second reference is for the customUI which you don’t need but will want to use for styling the widgets, which you can do that through their customUI which is pretty easy to work with. Just check out this page: http://jqueryui.com/themeroller/
To get you started, here is how you could implement the datepicker widget from a standard ASP textbox:
You put this in your header:
Then you reference the ‘datepicker’ class in a textbox as such:
All the sample code you could want really is on the jqueryui.com site so give that a shot and come back if you have specific questions about implementing a specific widget.