Added tableId to App.TicketList for sizeable table columns.

This commit is contained in:
Martin Edenhofer 2016-11-23 13:26:49 +01:00
parent 1b4fbd6b4c
commit 0766ffc0f5
2 changed files with 3 additions and 0 deletions

View file

@ -192,6 +192,7 @@ class App.UiElement.ticket_selector
@ticketTable: (ticket_ids, ticket_count, item) -> @ticketTable: (ticket_ids, ticket_count, item) ->
item.find('.js-previewCounter').html(ticket_count) item.find('.js-previewCounter').html(ticket_count)
new App.TicketList( new App.TicketList(
tableId: 'ticket-selector'
el: item.find('.js-previewTable') el: item.find('.js-previewTable')
ticket_ids: ticket_ids ticket_ids: ticket_ids
) )

View file

@ -26,12 +26,14 @@ class App.TicketMerge extends App.ControllerModal
content = $( App.view('agent_ticket_merge')() ) content = $( App.view('agent_ticket_merge')() )
new App.TicketList( new App.TicketList(
tableId: 'ticket-merge-customer-tickets'
el: content.find('#ticket-merge-customer-tickets') el: content.find('#ticket-merge-customer-tickets')
ticket_ids: @ticket_ids_by_customer ticket_ids: @ticket_ids_by_customer
radio: true radio: true
) )
new App.TicketList( new App.TicketList(
tableId: 'ticket-merge-recent-tickets'
el: content.find('#ticket-merge-recent-tickets') el: content.find('#ticket-merge-recent-tickets')
ticket_ids: @ticket_ids_recent_viewed ticket_ids: @ticket_ids_recent_viewed
radio: true radio: true