Hi Abu,
Is't possible to have, in the column regarding uploaded files, the button before the file name instead the reverse?
Thanks in advance
Massimo Gagliardi
2 Answers
Edit jqgrid_dist.php and replace append to prepend.
Replace:
jQuery(o).parent().append("<input type='button' value='Reset'
jQuery(el).parent().append("<input type='button' value='Reset'
to
jQuery(o).parent().prepend("<input type='button' value='Reset'
jQuery(el).parent().prepend("<input type='button' value='Reset'
Your Answer