DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

Stories recently tagged with 'JavaScript' Subscribe to this feed
2
kicks
submitted by crpietschmann crpietschmann 15 days, 6 hours ago

codeproject.com — This article will be useful for any custom component developer who wants to update his/her controls so they will work correctly with ASP.NET AJAX. First, we will describe the most common problems that occur during such customizations and then propose the solution for those issues. read more...

Add a comment add a comment | category: | Views: 7
tags: , , | tag it

1
kicks
submitted by crpietschmann crpietschmann 16 days, 6 hours ago

soulsolutions.com.au — In Virtual Earth we use lat/lon pairs everywhere, for pushpins, polylines and polygons but also for map bounds like the current view. This article aims to look at a better way to store and transmit these values. The encoding algorithm used is from Google maps. You will find an explanation of how and why we use it for Virtual Earth. read more...

Add a comment add a comment | category: | Views: 16
tags: , , , , | tag it

1
kicks
submitted by crpietschmann crpietschmann 16 days, 19 hours ago

pietschsoft.com — I've been looking into Silverlight in my spare time a bit, to see what it has to offer, and the JavaScript "Interop" is actually pretty neat and simple to use. About three months ago I wrote a post titled "Working with HTML DOM in Silverlight using the Bridge Pattern"; so I think this time I'll go over some of the basics involved with communicating back and forth between Silverlight and JavaScript. read more...

Add a comment add a comment | category: | Views: 1
tags: , , | tag it

25
kicks
published 13 days, 16 hours ago, submitted by janko janko 17 days, 15 hours ago

jankoatwarpspeed.com — How many times have you heard form a client that they want "outlook-like" web user interface for their application? Me, probably a hundred of times. In this article I'll explain how to create a web application user interface that looks like Outlook. You can see the live demo and download source code with images. read more...

Add a comment add a comment | category: | Views: 648
tags: , , | tag it

1
kicks
submitted by crpietschmann crpietschmann 25 days, 9 hours ago

msmvps.com — ensure allows you to load Javascript, HTML and CSS on-demand, whenever they are needed. It saves you from writing a gigantic Javascript framework up front so that you can ensure all functions are available whenever they are needed. It also saves you from delivering all possible html on your default page (e.g. default.aspx) hoping that they might some day be needed on some user action. Delivering Javascript, html fragments, CSS during initial loading that is not immediately used on first view makes initial loading slow. Moreover, browser operations get slower as there are lots of stuff on the browser DOM to deal with. So, ensure saves you from delivering unnecessary javascript, html and CSS up front, instead load them on-demand. Javascripts, html and CSS loaded by ensure remain in the browser and next time when ensure is called with the same Javascript, CSS or HTML, it does not reload them and thus saves from repeated downloads. read more...

Add a comment add a comment | category: | Views: 3
tags: , | tag it

3
kicks
submitted by oazabir 27 days, 12 hours ago

codeproject.com — A tiny javascript library that provides a handy function "ensure" which allows you to load Javascript, HTML, CSS on-demand and then execute your code. Ensure ensures that relevent Javascript and HTML snippets are already in the browser DOM before executing your code that uses them. read more...

Add a comment add a comment | category: | Views: 9
tags: , , , , | tag it

1
kicks
submitted by volume4 29 days, 14 hours ago

dotnet.dzone.com — I’ve wanted to move towards programming in C# for a while, and it seems like Silverlight 2 is giving me a great reason to make the time to learn it. In the meantime, in preparation for working with objected-oriented programming (it’s been a while since I did C++), I’ve started trying to shift my JavaScript habits towards an OO format in order to ease my transition. read more...

Add a comment add a comment | category: | Views: 11
tags: , , | tag it

19
kicks
published 1 month, 7 days ago, submitted by sidarok 1 month, 7 days ago

sidarok.com — An extender that overcomes the inability to limit the multiline textboxes read more...

Add a comment add a comment | category: | Views: 212
tags: , , , , | tag it

2
kicks
submitted by superghost superghost 1 month, 11 days ago

msmvps.com — UFrame combines the goodness of UpdatePanel and IFRAME in a cross browser and cross platform solution. It allows a DIV to behave like an IFRAME loading content from any page either static or dynamic. It can load pages having both inline and external Javascript and CSS, just like an IFRAME. But unlike IFRAME, it loads the content within the main document and you can put any number of UFrame on your page without slowing down the browser. read more...

Add a comment add a comment | category: | Views: 13
tags: , , , , | tag it

15
kicks
published 1 month, 10 days ago, submitted by oazabir 1 month, 12 days ago

codeproject.com — UFrame simulates the behavior of IFRAME on a DIV. Any page can be loaded inside a DIV and hyperlink navigation and form posts happen within the DIV. As a result, a regular page can start providing AJAX features without ever writing any AJAX code. ASP.NET MVC websites can now use UFrame instead of UpdatePanel. read more...

Add a comment 2 comments | category: | Views: 211
tags: , , , , | tag it

28
kicks
published 1 month, 14 days ago, submitted by tomdog tomdog 1 month, 14 days ago

atalasoft.com — Microsoft Research has released some exciting information about a new tool being worked on by Ben Livshits and Emre Kiciman. DOLOTO promises to greatly speed the loading of web applications. It does this by automatically making parts of the application load in the background or lazy load when they are needed. The results look extremely impressive. They tried it on a bunch of websites and saw around a fifty percent improvement in loading time on all of them. These included such content rich sites as Live.com, Live Maps and Google Spreadsheets. read more...

Add a comment 2 comments | category: | Views: 358
tags: , | tag it

1
kicks
submitted by crpietschmann crpietschmann 1 month, 16 days ago

soulsolutions.com.au — Previously I simply passed the current bounds to the server, it got the data I needed and passed it back - all was good. The issue was scalability, as hundreds of requests are made these bounds were very unique even if the data they wanted to show was the same. The solution? Create and oversize a standard grid bounds. What this does is makes many more requests identical. It also has a side benefit that slight movements of the map don't even a trigger a new data request. read more...

Add a comment add a comment | category: | Views: 3
tags: , , , | tag it

1
kicks
submitted by crpietschmann crpietschmann 1 month, 16 days ago

pietschsoft.com — I've been playing around with Silverlight 2 Beta 1 alot lately, and one of the areas I've been focusing on is interoperability with JavaScript and the DOM. Here's a technique I've found that allows you to inject JavaScript into the page from within your Silverlight application. This example also starts with the idea that the JavaScript you are going to inject is stored as an Embedded Resource within your Silverlight Application. read more...

Add a comment add a comment | category: | Views: 7
tags: , | tag it

3
kicks
submitted by ailon ailon 1 month, 20 days ago

devblog.ailon.org — People often give name/id to their html objects like "body" or "text" or something like this. And this works for them until they try doing some manipulations with these objects using JavaScript. And then crazy things happen randomly. read more...

Add a comment add a comment | category: | Views: 3
tags: , | tag it

30
kicks
published 1 month, 22 days ago, submitted by simonech simonech 1 month, 23 days ago

codeclimber.net.nz — This article outlines how to enable and disable ASP.NET client side validation from Javascript using jQuery read more...

Add a comment add a comment | category: | Views: 179
tags: , , , | tag it

2
kicks
submitted by jonas jonas 1 month, 23 days ago

hanselman.com — Also includes "Processing" in JavaScript. read more...

Add a comment add a comment | category: | Views: 7
tags: , , | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge