problemfacing.blogspot.com
Stylish text with the css text-shadow property... ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2011/11/stylish-text-with-css-text-shadow.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Monday, November 21, 2011. Stylish text with the css text-shadow property. This is a cross-post of an article. I wrote for the hacks.mozilla.org. Blog It shows off some of the fun stuff web developers can do with the. Feature that will be released as part of Firefox 3.5. CSS property does what the name implies: It lets you create a slightly blurred, slightly moved copy of text, which ends up looking somewhat like a real-world shadow. Shadow is defined as:.
problemfacing.blogspot.com
Javascript: Send / Pass value of child window to parent window ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2012/05/javascript-send-pass-value-of-child.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Wednesday, May 2, 2012. Javascript: Send / Pass value of child window to parent window. Sending child window’s value to parent window is one of the very common requirements for web developers. I also used it a lot, so decided to make a post for some of our beginners friends to Javascript. There are many ways you can send values of child window to parent window, however, I have described here two ways to send value from child window to parent. Input id=&#...
problemfacing.blogspot.com
Kendo UI :How do you make a kendo datepicker do date validation for a minimum date? ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2014/07/kendo-ui-how-do-you-make-kendo.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Tuesday, July 8, 2014. Kendo UI :How do you make a kendo datepicker do date validation for a minimum date? Link href="http:/ cdn.kendostatic.com/2013.3.1119/styles/kendo.common.min.css" rel="stylesheet" type="text/css" /. Link href="http:/ cdn.kendostatic.com/2013.3.1119/styles/kendo.rtl.min.css" rel="stylesheet" type="text/css" /. Script src="http:/ code.jquery.com/jquery-1.9.1.min.js" /script. Var value = $(element).val();. Click here to see. Heres how...
problemfacing.blogspot.com
04/13/15 ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2015_04_13_archive.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Monday, April 13, 2015. Google Signin for ASP.NET MVC 4. With ASP.NET MVC 4 Microsoft has added the ability to allow your users to log in to your application using various OAuth and OpenID providers. Microsoft has supplied clients for Facebook, Twitter, Google, Microsoft, LinkedIn and Yahoo. The Google client is based on OpenID and not OAuth. With the recent announcement of. Google has supplied some. Overview of the Google OAuth Client. Once the applicat...
problemfacing.blogspot.com
CSS Trick: Turning a background image into a clickable link ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2011/11/css-trick-turning-background-image-into.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Friday, November 11, 2011. CSS Trick: Turning a background image into a clickable link. One of the things I most often get asked by people trying to master HTML and CSS is “How do I make a background image clickable? 8221; It’s easy to wrap a regular image tag in a link, but what if your design or situation required that you use a background image? Http:/ problemfacing.blogspot.com/. So, how can we make a background image a clickable link? Now all we nee...
problemfacing.blogspot.com
Smooth Scrolling To Internal Links With jQuery ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2015/02/smooth-scrolling-to-internal-links-with.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Wednesday, February 18, 2015. Smooth Scrolling To Internal Links With jQuery. JQuery allows you change the way you interact with your website with very little code. jQuery has an animate function which allows you to animate anything that jQuery does, including scrolling. Animate scrolling creates a better effect to the visitor than to just job to a place on the page. Jump to services /. Look at the demo to see the effect this creates. From the above code...
problemfacing.blogspot.com
04/02/15 ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2015_04_02_archive.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Thursday, April 2, 2015. Check if Popup Window Closed. Sometimes you will want to use a popup window for an antiquated system and need to maintain a reference to the popup window so that when the popup loses focus you can bring it back in focus with a click of a button. The following script will allow you to do that. Script type="text/javascript" src=" http:/ ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js. Button id="button" Click Me! Browser o...
problemfacing.blogspot.com
Kendo UI Grid Only Expand One Row at a Time ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2014/01/kendo-ui-grid-only-expand-one-row-at.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Thursday, January 23, 2014. Kendo UI Grid Only Expand One Row at a Time. Var grd = "#dvGrid";. DetailExpand: function (e) {. Grd " tr.k-detail-row").hide();. Grd " tr.k-master-row").find(".highlightrow").removeClass("activerow");. Grd " div.k-hierarchy-cell").find("a").removeClass("k-minus").addClass("k-plus");. EmasterRow).find(".highlightrow").addClass("activerow");. DetailCollapse: function (e) {. August 2, 2016 at 12:48 AM. Thank Bos Success full.
problemfacing.blogspot.com
Convert a Unix timestamp to a .NET DateTime ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2015/04/convert-unix-timestamp-to-net-datetime.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Tuesday, April 7, 2015. Convert a Unix timestamp to a .NET DateTime. The POSIX time, or Unix time. Is the number of seconds elapsed from the midnight of January 1st 1970 in UTC coordinates. This timestamp is used in all *nix languages; probably you will never need to use a Unix timestamp in .NET, but if you have to interact with other application or sites, maybe built in PHP or Java, you will probably have to deal with it. Hopefully most of the applicati...
problemfacing.blogspot.com
Generate a PDF from an ASP.NET Web Page using the iTextSharp XMLWorker Namespace ~ .NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI
http://problemfacing.blogspot.com/2015/01/generate-pdf-from-aspnet-web-page-using.html
NET, MVC, C#.NET, ASP.NET , Jquery, SQL, Kendo UI. Tuesday, January 20, 2015. Generate a PDF from an ASP.NET Web Page using the iTextSharp XMLWorker Namespace. If you need to quickly and easily generate PDF. Documents from ASP.NET. Then the iTextSharp library. For NET is very convenient. To install and start using iTextSharp, you can download the zipped reference files from the SourceForge Web site and then add them to your Visual Studio project. The latest version of iTextSharp. Just to note: if you are...