This is repost of comments from
http://code.google.com/p/flexigrid/wiki/FAQ
adding hyperlink:
http://groups.google.com/group/flexigrid/search?group=flexigrid&q=hyperlink
images in the buttons we can obtain with CSS like this:
....
buttons: [
{name: MSG['BTN_ADD'], bclass: 'ui2-btn-add', onpress:
function(com,grid){gridDo('grid1_add')} },
{name: MSG['BTN_EDIT'], bclass: 'ui2-btn-edit', onpress:
function(com,grid){gridDo('grid1_edit')} },
....
.flexigrid .ui2-btn-add { background: left no-repeat url(images-custom/
add.png); }
.flexigrid .ui2-btn-edit { background: left no-repeat url(images-
custom/edit.png); }
....