Archive for October, 2006

Why not to mix YUI Panels with ASP.NET Panels

Tuesday, October 31st, 2006

Many an unsettling hour I have spent on this issue, so here it is for the spiders to archive for future reference; You should not use ASP.NET Panel objects within a Yahoo User Interface (YUI) Panel container. I have not determined the exact cause, but the problems were real stumpers.

The problem can best be […]

A Web 2.0 search using YUI

Sunday, October 22nd, 2006

I have always felt that the default Wordpress search was enemic and inaccurate at best, so I finally got around to changing the default search, and returning the results in a more “Web 2.0″ fashion. It could be easily adapted to any blog template since it only requires some YUI includes and a single […]

An incredible JS library for Web 2.0 layouts

Thursday, October 19th, 2006

Jack Slocum is fast approaching deity status with this last project. He has created a YUI extension library for some kick-butt Web 2.0 layouts. The toolkit allows you to create collapsible sections, multiple (even nested) splitter bars, even automatic content tabs when you place two divs on top of each other. This […]

56 hours without power, and a backyard warzone

Sunday, October 15th, 2006

Snow in October in Buffalo is nothing new, and even the 14-24″ that some parts of Buffalo received does not break any records. But the 400,000 homes left without power after this last storm breaks alot of records, and alot of branches.

During the entire storm, the tempature never got below freezing, so all of […]

YUI Effects Library

Friday, October 6th, 2006

DavGlass has created an effects library for the YUI libraries to match those of Scriptaculous. The example page can be found here, the JS source code is here.
I applied this library to an existing application to show/hide the online Help with a Blind Up/Blind Down effect:
function toggleHelp(){
   var d = YAHOO.util.Dom.get(’divHelp’);
   if(d.style.display == ‘none’){
      YAHOO.widget.Effects.BlindDown(d,{duration:1});
   }else{
      YAHOO.widget.Effects.BlindUp(d,{duration:1});
   }
}

Vector graphics with Javascript?

Tuesday, October 3rd, 2006

I have not had a chance to really play with this one, but simple, client side graphics without a plug-in or browser limitations looks too cool to not try.
www.walterzorn.com

Is your Javascript leaking?

Monday, October 2nd, 2006

Jack Slocum has an excellent piece on Javascript memory leaks. This is another reason why I like the YUI libraries (besides the excellent documentation); it is clean.

YAHOO set to open up Yahoo Mail code

Sunday, October 1st, 2006

Officials of the world’s largest Internet media company said on Friday it planned to give away the underlying code to Yahoo Mail, one of the crown jewels of its business, in a bid to encourage software developers to build new applications based on e-mail.
Coming late 2006.