Skip Menu |

This queue is for tickets about the Catalyst-TraitFor-Controller-jQuery-jqGrid CPAN distribution.

Report information
The Basics
Id: 83553
Status: new
Priority: 0/
Queue: Catalyst-TraitFor-Controller-jQuery-jqGrid

People
Owner: Nobody in particular
Requestors: pronichev [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.04
Fixed in: (no value)



Hi, i think i've found a bug in sorting when using join in search before calling jqgrid_page. If there is a field in join table with same name as a field on which i use order by in main table i got error "Column '...' in order clause is ambiguous", possible patch could be: @@ -47,7 +47,6 @@ sub jqgrid_page { } if ($index_row && $sort_order) { + $index_row = 'me.' . $index_row; my $order_by = { -asc => $index_row }; if (lc($sort_order) eq 'desc') { $order_by = { - desc => $index_row };