Archive for the ‘yui’ Category
Thursday, November 12th, 2009
YUI, YAHOO tarafından geliştirilen içerisinde javascript ve css kodları bulunduran gelişmiş bir arayüz kütüphanesidir. Arayüz geliştiricilerinin tüm ihtiyaçlarını karşılayacak kadar zengindir. YUI’nin nasıl kullanıldığını adım adım öğreneceğiz.
Posted in Web Development, javascript, yui | No Comments »
Monday, November 9th, 2009
We used YUI 2.5.2 version for a long time on markafoni.com. With the new face of markafoni I decided to update YUI version. I updated YUI to 2.8rc version, but surprisingly I saw javascript errors in all IE8 pages. After googling I found the solution. The problem is was here in selector.js (or selector-min.js):
if(YAHOO.env.ua.ie && YAHOO.env.ua.ie<8)
Change to:
if(YAHOO.env.ua.ie && ((!document.documentMode && YAHOO.env.ua.ie<8) || document.documentMode < 8))
Posted in Web Development, javascript, yui | No Comments »
Tuesday, September 9th, 2008
As a YUI fan, I am excited about new release of YUI. There is a total diffrence between YUI 2.x and YUI 3.x. Now it is time to try new YUI 3.x
I made an experimental example using Node and Event modules. Here is the example.
Creating elements are very easy with new YUI:
Y.Node.create('<div class="class" style="style:value;">
Lorem ipsum
</div>');
Posted in Web Development, javascript, yui | 1 Comment »
Friday, September 5th, 2008
markafoni.com : Markafoni is an e-commerce site. It is a Django Project, so I worked only front-end.
icanfootball.com: I Can Football is a football game by Sobee. I used Codeigniter and YUI on this site. It was my first MSSQL project.
usaksofrasi.com : Uşak Sofrası is my experimental project. It is a clone of Yemek Sepeti -food order site-. Usaksofrasi is my first codeigniter project.
trabzoncell.com.tr : Trabzoncell I fully coded backend and frontend. As my favourites I used YUI and Codeigniter.
turkolimpiyattakimi.gov.tr : Türk Olimpiyat Takımı is the offical site of Turkish Olympic Team. I developed all front-end on this site.
Posted in codeigniter, portfolio, yui | 2 Comments »