is posible to display an image in the datatables or flexigrid ?
- Single Page
Posted 10 January 2012 - 07:14 AM
is posible to display an image in the datatables or flexigrid ?
i have some extracode to combine some jquery plugin for displaying an image from database to datatables or flexigrid, but no luck for me, it doesn't work, may be you gusy have tried before and work,
Posted 12 January 2012 - 21:51 PM
hi,
is posible to display an image in the datatables or flexigrid ?
i have some extracode to combine some jquery plugin for displaying an image from database to datatables or flexigrid, but no luck for me, it doesn't work, may be you gusy have tried before and work,
[/quote]
Did you try it to do with callback_column ( http://www.grocerycrud.com/crud/example/callback_column ) ?
Posted 13 January 2012 - 04:09 AM
thanks for the quick replay
Posted 04 February 2012 - 01:28 AM
[color=#333333][font=arial, sans-serif][size=4]how you [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]solved [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]the problem[/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]?[/size][/font][/color]
[color=#333333][font=arial, sans-serif][size=4]you may [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]send [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]an example[/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]?[/size][/font][/color]
[size=4][font="arial, sans-serif"][color="#333333"]thank[/color][/font]s[/size]
Now its ok.
Thanks all
Posted 25 December 2012 - 15:23 PM
[color=#333333][font=arial, sans-serif][size=4]Hello,[/size][/font][/color]
[color=#333333][font=arial, sans-serif][size=4]how you [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]solved [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]the problem[/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]?[/size][/font][/color]
[color=#333333][font=arial, sans-serif][size=4]you may [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]send [/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]an example[/size][/font][/color][color=#333333][font=arial, sans-serif][size=4]?[/size][/font][/color]
[size=4][font=arial, sans-serif][color=#333333]thank[/color][/font]s[/size]
Now its ok.
Thanks all
[/quote]
Hello hunterbit,
This is the simple solution, if you know how to add the ajax class on this you are the boss .
$crud->callback_column('image',array($this,'Image'));
function Image($value, $row)
{
return '<a class="ajax" href="uploads/' . $value .'"><img src="uploads/' . $value . '" alt="' . $value . '" width="24" height="24" /></a>';
}