Skip to main content

Posts

Showing posts with the label jquery

jNotify Example for Disply animated boxes (information, errors, success) in asp.net

jNotify : Disply animated boxes (informations, errors, success) in just one line of code jNotify  can display information boxes in just one line of code in asp.net . Three kind of boxes are allowed :  information, success and failure. The whole box is entirely skinnable with css. For example, you could use it for a mail being successfully sent or a validation error of a form , or alert message . Previous post  Show jQuery UI Dialog Popup Window from Server Side ( Code Behind ) in ASP.Net First download  JNotify from GitHub   Implementations   Add links to master page , copy images into your folder  <link href="Styles/jNotify.jquery.css" rel="stylesheet" type="text/css" />   <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>   <script src="Scripts/jNotify.jquery.min.js" type="text/javascript"></script> Master page look like ...

How to remove rows from GridView using jQuery in asp.net

In this post, I will show you how to remove any row in gridview using jQuery. The task is pretty simple. One need to bind the click event with every tr which has only td not th and on click of event remove the clicked row.  Previous Post  I was Explained about the    jQuery - Allow Alphanumeric (Alphabets & Numbers) Characters in Textbox using JavaScript  ,  Fileupload show selected file in label when file selected  ,  Check for file size with JavaScript before uploading ,   Show jQuery UI Dialog Popup Window from Server Side ( Code Behind ) in ASP.Net ,   How to use the window.open()  method  ,   CONFIRMATION BOX WITH YES NO BUTTONS USING AJAX MODAL POPUP EXTENDER IN ASP.NET See below jQuery code. $(document).ready( function () {    $( "#<%=gdRows.ClientID%> tr:has(td)" ).click( function () {       $( this ).remove();    }); }); ...