Rajesh Pillai

My experiments with asp.net mvc, jquery, wpf, silverlight, sharepoint, tdd and design patterns.

  Home  |   Contact  |   Syndication    |   Login
  42 Posts | 2 Stories | 34 Comments | 0 Trackbacks

News

Twitter












Tag Cloud


Article Categories

Archives

Post Categories

business

jQuery

jquery learnings and experimits, tips tricks and cookbook...
For more info refer the below post http://blog.jquery.com/2011... Some great improvements and fixes
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

jQuery fundametal online book is available at http://www.rebeccamurphey.c... Enjoy :)
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Its been long due I was planning to write an article on creating some useful ASP.NET MVC application. I have code named it "DailyJournal". Its a simple application which allows creation of multiple activities and assign tasks to these activities. Its' kind of "Yet another Task/Todo application". The credentials which you can use with the attached demo application is shown below. Collapse Copy Code User Name : admin Password : admin123 Framework/Libraries Used ASP.NET MVC jQuery + jQuery UI (for ajax...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

jQuery 1.4 released. You can find more info at http://api.jquery.com/categ... Also celebrate jQuery 1.4 release with 14 days of jquery at jquery14.com/pre-release-1 Learn about 15 new features of jQuery you must know net.tutsplus.com/tutorials/... Enjoy jQuerying...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Lets quickly have a look at how you can limit the entry to textbox and display the character input left to be keyed in. First things first, the script. <script type="text/javascript"> $(function() { var limit = 250; $('#dvLimit').text('250 characters left'); $('textarea[id$=txtDemoLimi... { var len = $(this).val().length; if (len > limit) { this.value = this.value.substring(0, limit); } $("#dvLimit").text(limit - len + " characters left"); }); }); </script> The $()...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Prototype This time we will have a basic prototype ready for the public website. The design will be kept simple so that we could concentrate on the main task at hand. Later on we will enable theming,so that the user could customize the blog to their heart's content. The landing page looks like in the figure below. Create a "Blog" folder under the "Views" folder in the website. Add an aspx and copy the below markup and name it "List.aspx". <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Sha...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Welcome back. This time we will look at creating a simple jquery pager plugin to use with asp.net mvc project. Please note the intent is to learn the basics of jquery plugin development. The control as such is not recommended for use in production environment. I recommend having a look at the jQuery Authoring Guideline at docs.jquery.com/Plugins/Aut... Let's begin our journey into the mystery of jquery plugin. The first step is to create a self executing anonymous function. Anonymous functions...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Welcome to the 2nd series of building a blog engine. In the first part we have laid out the foundation for this application and modeled the DB structure for quick mockup. You can read the first part here lets-build-a-simple-blog-en... One thing I missed to mentioned in the first part is the we will be using the excellent ELMAH for error logging. This is a pretty cool module which hooks up to the system and logs all exceptions without writing a single line of code. You can read more...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Welcome to eBoard Hello and welcome to this series of application development using asp.net mvc, jquery, automapper, ninject. Though the world doesn't need another blog engine, but sometimes reinventing the wheel teaches you many unknown things and it's the learning experinece that counts more than anything else. I have been using asp.net mvc + jquery for about a year now. So, it's time to put down something which will help the beginner with this technologies get a good graps of the fundamentals...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Let's try a simple in-place edit with jquery. For demonstration purpose I am using the plain old HTML file. However, if you, wish you could apply the same technique to asp.net, asp.net mvc or php or any other web application as well. Here is the html that we will be using for the demo. <body> <div style="line-height:3xm;back... Double Click the below paragraph to edit. </div> </br></br> <div class="edit"> Lorem ipsum dolor sit amet, consectetur...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Full jQuery Archive