CRUD using CodeIgniter and EXTJS Grid – Part 4

August 11th, 2010   by  aditia rahman

It’s been quite a long time since I updated this blog, just continue my blogging journey with very simple post. I have been suggested by Taguchi from the previous post, to adding autosearch filtering to this example, the system will search while user input a value in the searchbox. If you haven’t follow any of this here is the link:
1. CRUD using CodeIgniter and EXTJS Grid – Part 1
2. CRUD using CodeIgniter and EXTJS Grid – Part 2
3. CRUD using CodeIgniter and EXTJS Grid – Part 3
Actually it is quite easy you just have to enable the keyEvent and add a key listeners to the searchUsers component, this is how it look:

Posted in Extjs3 Comments

Understanding CodeIgniter Cart Class

August 4th, 2010   by  aditia rahman

CodeIgniter Cart ClassCart is one of the most important feature when creating an online store. In this post I want to have more understanding about Cart Class in CodeIgniter, cause maybe come in handy in the future, you can see how many new online store out there open in business, and in this internet age, online store seems the must have for many people who have retail business, in this post I’m not writing about how to use it in some example, the code I posted in here just copying from the original cart class documentation, but i’m included the link to the example usage of this class on the section 4 below.

Posted in Codeigniter2 Comments
Tags:

Infographic Collection Everything Google

August 2nd, 2010   by  aditia rahman

Google Infographic Mashup

Not much word I can write here, I’m collection all infographics about google, the product, service, history, and so on. Even when I create the thumbnail image above I’m using picasa, here check it out.

Posted in Design ShowcaseNo Comments

Another List of PHP: The Template Engine

August 1st, 2010   by  aditia rahman

PHPTemplateEngineCollage

Before the knowing the php framework I usually work with php template engine, Smarty was always be my choice (look like the project still active till now), I don’t know whether php developers outhere still using the template engine for their project, cause many web framework now providing some great API to create html page and maybe that can replace the template engine, but the php template engine has give a great contribution to php development before the flood of php framework came along.

Posted in PHP2 Comments
Tags:

ExtJS: Passing Parameter in Function Handler

July 31st, 2010   by  aditia rahman

This is a very short post in my ExtJS posts, when we dealing with handler config in many component sometimes we want to passing the parameter inside the function, so here the simple code on how I do it

Ext.onReady(function() {
    var myHandler = function (name){
       Ext.Msg.alert('Notification', 'Hello ' + name);
    };

    var form = new Ext.FormPanel({
        frame: true, border: false, buttonAlign: 'center',
        url: 'test.php', method: 'POST',
        buttons: [{
            text: 'Submit Test',
            handler: myHandler.createDelegate(this, ['Luffy'])
        }]
    });

    var winLogin = new Ext.Window({
        title: 'Function Handler Parameter',
        layout: 'fit', width: 200,
        height: 80, resizable: false,
        border: false,
        closable: false, items: [form]
    });
    winLogin.show();
});

Posted in ExtjsNo Comments

10 Blogs To Following Technology News, Social Media and Web Startup

July 30th, 2010   by  aditia rahman

The era of blogs still continue to grow, blog enables you to publish everything you like, and some of these blogs that I mention can steal a lot of readers from big company, in internet industry some says a big company is not the guarantee to win game, but it have to be fast.

Social Media Blogs

If you are a social media addict, internet entrepreneur or something like that, maybe you didn’t want to left behind what is happening on the industry, and some of these blogs can provide you a really fast tech news, just follow them on twitter or subscribe them.

Posted in Blog1 Comment

50 Firefox Persona: Abstract Black and White

July 29th, 2010   by  aditia rahman

Till these day firefox still my first choice to my browing experience, besides the so many addons, firefox have many choice of themes to make it prettier and it called persona, and here is my first 50 favorite Firefox Persona and I have tried it on my Firefox.

Posted in Firefox ShowcaseNo Comments
Tags:

Get Latest Tweet Using ExtJS DataView and PHP

July 27th, 2010   by  aditia rahman

Recently I love twitter, even though I didn’t tweet too often, cause I found many great link from the people that I follow. In this post, I want to create a little twitter client to getting the latest tweets by specific username using ExtJS DataView, cause the app are just getting the tweets the it doesn’t have to authenticate the users, let get straight to the code:

Posted in Extjs PHP4 Comments
Tags:

Mini Showcase of Palm WebOS Application WebSite Design

July 25th, 2010   by  aditia rahman

Well when this post is created Palm WebOS is not really big news, it is losing the game fighting with iphone and android, but when HP joining the Palm, maybe the story will be different in the future. Not much WebOS app for now, but this list is something that I found.

Posted in ShowcaseNo Comments

Mini Icons Sets for ExtJS Application

July 23rd, 2010   by  aditia rahman

ExtJS Icon Sample Usage

When creating ExtJS application you must be need some of cool icons, mostly the icon used in ExtJS component like in toolbar, menu, tab, treepanel, button or any other place on the component which the icon can be customized based on your need. Here I create a list of mini icons set that can be used in your ExtJS application, the icons was handpicked only for the size 16 x 16 pixels, that suit in the ExtJS default themes.

Posted in IconsNo Comments