Posts

Showing posts from January, 2015

jquery slideshow

Image
RESPONSIVE IMAGE GALLERY WITH THUMBNAIL CAROUSEL http://tympanus.net/codrops/2011/09/20/responsive-image-gallery/ Everyone asking for the thumbnails below the image, it was answered several times in the comments. “change this line $(‘#img-wrapper-tmpl’).tmpl( {itemsCount : itemsCount} ).appendTo( $rgGallery ); to $(‘#img-wrapper-tmpl’).tmpl( {itemsCount : itemsCount} ).prependTo( $rgGallery );” Now, does anyone know how we could add autoplay to the slideshow? Hi all, I’ve seen many time people ask if it’s possible to have an automatic slideshow. I wanted the same thing and I find a way to do it. In the file gallery.js, in the function _initCarousel add these lines after $esCarousel.elastislide( ‘setCurrent’, current ); (~ line 103) : window.setInterval(function(){ _navigate( ‘right’ ); }, 5000); You just have to change 5000 to the value you want.

ALLOW ONLY NUMBERS IN TEXTBOX JQUERY

ALLOW ONLY NUMBERS IN TEXTBOX JQUERY http://jsfiddle.net/lesson8/HkEuf/1/ Note:Use cssClass when you want your textbox in girdview or listview control. Otherwise we can use ID in normal form.   #errmsg { color: red; }   #errmsg { color: red; position:relative; }               http://www.tricksofit.com/2014/10/allow-only-numbers-in-textbox-jquery#.VL4Db0eUfsw        

jQuery Effects

Image
How to create fly to cart / basket effect using jQuery and CSS http://www.phpgang.com/how-to-create-fly-to-cart-basket-effect-using-jquery-and-css_603.html http://www.phpgang.com/how-to-create-fly-to-cart-basket-effect-using-jquery-and-css_603.html http://codepen.io/ElmahdiMahmoud/pen/tEeDn#0 http://easyscript4u.blogspot.in/2014/03/how-to-create-fly-to-cart-basket-effect.html cart icon with poup http://codepen.io/Blowup/pen/rysLn Making a Success Message Show & Hide After a Form Submission http://www.awmcreative.com/jquery/making-a-success-message-show-hide-after-a-form-submission/ jQuery popup from closing on postback? http://forums.asp.net/t/1933763.aspx?Prevent+jQuery+popup+from+closing+on+postback+ Flip A jQuery plugin to flip content with 3D animation http://www.jqueryrain.com/?xpLojXKl

ListView Paging Smart Way

Image
Load data while Scrolling Page down with jQuery AJAX and ASP.Net http://aspsnippets.com/Blue/Articles/Load-data-while-Scrolling-Page-down-with-jQuery-AJAX-and-ASPNet.aspx Effective paging with List View control in ASP.NET http://www.codeproject.com/Articles/142326/Effective-paging-with-List-View-control-in-ASP-NET Paging ASP.NET ListView using DataPager without using DataSource Control http://dotnet.dzone.com/articles/paging-listview-using Using DataPager control with example in ASP.Net http://www.aspsnippets.com/Articles/Using-DataPager-control-with-example-in-ASPNet.aspx DataPager in ASP.NET 3.5 with images for navigation first last. http://www.c-sharpcorner.com/uploadfile/nipuntomar/datapager-in-Asp-Net-3-5/ DataPager in ASP.NET 3.5  with summary http://www.beansoftware.com/ASP.NET-Tutorials/ListView-DataPager.aspx

Cube Processing Failed :OLE DB error: OLE DB or ODBC error: Login failed for user ''.; 28000.

Image
OLE DB error: OLE DB or ODBC error: Login failed for user ''.; 28000. Solution  : 1 Double click on Data Source which was used for Cube. Pop up opens. Select first option, Use a specific windows user name and password. provide the Login username and password  This error is caused by the Data Source connection not having access into the OTLP database. Connect to your SSAS instance and verify the connection string of your data source is accurate. Make sure to update the Security Settings to use the proper Impersonation Info. The impersonation info defines what credentials to use to connect to the data source, independent of who triggers the processing. Most likely, your Analysis Services is running under 'NT AUTHORITY\NETWORK SERVICE' and your impersonation settings is set to Run As Service Account. In production environments I've worked in, we usually create a windows service account that runs Analysis Services and grant that service account read acc