Archive for Featured

Extract Single Table From mysqldump File

// August 4th, 2010 // No Comments » // Code, Featured

I wanted to restore a mysql table from a mysqldump file to another server, but I wanted to extract the information about this table only. One of the ways this can be accomplished is by using awk. This is the command I ran: (more…)

Submit ExtJS Incoming Put Data into MySQL With PHP

// July 29th, 2010 // 1 Comment » // Code, Featured

Recently I built another ExtJS form panel containing a few form fields and an editable datagrid, and I wanted to implement the search box I used on a previous application. In theory this would’ve been a pretty simple task, taking into account I’ve already built both a search capable grid and an editable grid (I’ll be posting a tutorial on this in the near future), however, it wasn’t so easy, but I got it done and I’ll show you how. (more…)

How to Apply Custom CSS to ExtJS Row Editor Grid

// July 22nd, 2010 // 15 Comments » // Code, Featured

In this tutorial I’ll show you how to apply a custom css to an individual cell grid on an extjs editor grid. I wanted to be able to apply a different background color to certain cells in the grid where the user was required to fill in the data, just like you see on a form, where the background color for required fields are different from the generic fields. (more…)