23 January 2010
JavaScript Breadcrumbs navigation
In this code listing I want to demonstrate how to implement "Breadcrumbs" in JavaScript for the pages collection, where page object have a two main key's pageId and parentPageId, and create a new collection sorted by current parents. Like this (See below...) Listing 1: function page(pageId... Read More...
13 October 2008
"Run as Administrator" - Run an application in Vista with Administrator rights using app.manifest
With the new version of Microsoft's Windows Vista - you and me as a software developer confronted with the problem of "How to run the application with Administrative rights under VISTA - a decision use app.manifest file with follow configurations. Just add new item "Application Manifest... Read More...
07 October 2008
Windows Hosts File Manager
Hi Guy's I'm wrote some little server component (tool) Windows Hosts File Manager for Web Developers & IT Administrators, QA and others... This application tool for Web Developers & IT Administrators, QA and others who are time to time make some changes in the HOSTS file of the Windows... Read More...
22 September 2008
Defining your own functions in jQuery
Defining your own functions in jQuery. In this post i want to present how easy define your own functions in jQuery and using them. As you know, jQuery it's a very rich JavaScript library and it's a pity not to use all it resources. Ok. Do you want to create your own jQuery function to work with... Read More...
21 August 2008
jQuery.create() - jQuery plugin to create HTML elements
jQuery.create() - it's a featured plugin for jQuery JavaScript Library. You can create any types of HTML elements, set attributes and context or HTML using jQuery.create(). See below the HTML example declaration. I think it make easy and fast your programming in JavaScript. jQuery.create = function... Read More...
20 August 2008
JavaScript Repeater Control (dataRepeater) - from jQuery.Presenter.1.0.8 - UIControls Library
In this post, I want to present a new JavaScript Repeater Control from my latest UIControls Library jQuery.Presenter 1.0.8. This control like (ASP.NET Repeater Control) created using jQuery Library 1.2.3 and support for later versions. It's a free open source script... Enjoy... /* * jQuery.Presenter... Read More...
30 June 2008
AnimatedTextDemo (WPF Screen Saver)
Two days ago I find in Google search the great post of Josh Smith on WPF here a link http://joshsmithonwpf.wordpress.com/2007/08/13/animating-text-in-wpf/ about advanced animation (manipulation) for text using Microsoft WPF Storyboard and System.Windows.Media.TextEffect I liked his example and was created... Read More...
תגים:, , , ,
26 February 2008
Understand prototype in JavaScript (JavaScript prototype)
Understand prototype in JavaScript Hi Guy’s Sorry on this syntaxed post, but I think for understand syntax you will read. Follow my comments Hope!!! // Namespace core function core() { return this .constructor( '1.0.0.0' ); } core.prototype = { // String type version: '' , constructor... Read More...
25 February 2008
How to set absolutePath using CSS expression for AlphaImageLoader (IE) *.png files
TIP : "Set absolutePath using CSS expression for AlphaImageLoader (IE) *.png files". So what you can do to write absolute path in CSS files not like "HARD CODE" Here attached below examples CSS syntax. Before: _filter : progid:DXImageTransform.Microsoft.AlphaImageLoader(src='... Read More...
21 February 2008
ASP.NET 2 Custom Control for Google "UrchinTracker" as sample
Simple example to create ASP.NET 2 Custom Control for Google "UrchinTracker" 1) Edit Web.config file add the next code between <system.web> <pages> <controls> <add namespace ="Render.Web.UI.CustomControls" assembly ="App_Code" tagPrefix ="render"... Read More...
19 February 2008
How to write JavaScript right?
Ok guy's. We are having 3 ways (Prototype, Object and Closure) to write JavaScript but I like at once strong and beautiful "Prototype". Here attached example for Prototype way (with Namespaces, Classes and Methods as in C#). // Namespace Core function core() { return this .constructor(... Read More...
18 February 2008
JavaScript String.format & StringBuilder
// String.Format String.format = function() { var s = arguments[0]; for (var i = 0;i<arguments.length-1;i++){ var reg = new RegExp( "\\{" +i+ "\\}" , "gm" ); s = s.replace(reg,arguments[i+1]); } return s; } String.prototype.format = function() { var s = this ; for (var... Read More...
18 February 2008
Wow... People i've really started post on blogs.microsoft.co.il
Hi all. This my first blog on the microsoft blogs. I'm really happy... and I wana say "More thanks to Shai Raiten for help me to create this Blog". Thanks Shai. Read More...