
Hi, We are wondering how to change the "Title" field on T icket::Frontend::AgentTicketLockedView to actually show the ticket title instead of the weird combination of last poster and last subject. In Ticket::Frontend::AgentTicketLockedView###DefaultColumns I can see the field "Title" which is the above combo-thingie. I tried to locate a list of all available ticket attributes to see if there was another field showing the actual title, but my google skills failed me. We are on OTRS 5. Any suggestions? -- Lars

Hi, 05.07.2016 14:12 - Lars Jørgensen schrieb:
We are wondering how to change the "Title" field on Ticket::Frontend::AgentTicketLockedView
Ticket → Frontend::Agent::TicketOverview Ticket::Frontend::OverviewSmall###ColumnHeader should be the correct setting for the title. displaying the title in separate column, you need additional add ons AFAIR -- Florian

Respondiendo
Saludos
2016-07-06 13:27 GMT-06:00 Florian Edlhuber
Hi,
05.07.2016 14:12 - Lars Jørgensen schrieb:
We are wondering how to change the "Title" field on Ticket::Frontend::AgentTicketLockedView
Ticket → Frontend::Agent::TicketOverview Ticket::Frontend::OverviewSmall###ColumnHeader
should be the correct setting for the title.
displaying the title in separate column, you need additional add ons AFAIR
-- Florian
--------------------------------------------------------------------- OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/mailman/listinfo/otrs
-- *Alvaro Cordero RetanaConsultor de Tecnologias* *Tel: 22585757 ext 123* *Email:* alvaro@gridshield.net

Thank you, that solved the biggest part of my question! I would still very
much like to use the "last poster" part of that column, but that seems not
to be possible.
2016-07-06 21:27 GMT+02:00 Florian Edlhuber
Hi,
05.07.2016 14:12 - Lars Jørgensen schrieb:
We are wondering how to change the "Title" field on Ticket::Frontend::AgentTicketLockedView
Ticket → Frontend::Agent::TicketOverview Ticket::Frontend::OverviewSmall###ColumnHeader
should be the correct setting for the title.
displaying the title in separate column, you need additional add ons AFAIR
-- Florian
--------------------------------------------------------------------- OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/mailman/listinfo/otrs
-- Lars

Well, it can be done easily enough with a hack in
Kernel/Output/HTML/Templates/Standard/AgentTicketOverviewSmall.tt:
[% RenderBlockStart("RecordTicketTitle") %]
<td>
# <div title="[% Data.From | html %]">[%
Data.FromRealname | truncate(30) | html %]</div>
<div title="[% Data.Title | html %]">[% Data.Title
| html %]</div>
</td>
We just commented out the div with the Data.FromRealname.
I know this won't survive an upgrade and I should do it in a separate
theme, but it's easy to re-do so a can't be bothered.
2016-07-07 8:59 GMT+02:00 Lars Jørgensen
Thank you, that solved the biggest part of my question! I would still very much like to use the "last poster" part of that column, but that seems not to be possible.
2016-07-06 21:27 GMT+02:00 Florian Edlhuber
: Hi,
05.07.2016 14:12 - Lars Jørgensen schrieb:
We are wondering how to change the "Title" field on Ticket::Frontend::AgentTicketLockedView
Ticket → Frontend::Agent::TicketOverview Ticket::Frontend::OverviewSmall###ColumnHeader
should be the correct setting for the title.
displaying the title in separate column, you need additional add ons AFAIR
-- Florian
--------------------------------------------------------------------- OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/mailman/listinfo/otrs
-- Lars
-- Lars
participants (4)
-
Alvaro Cordero
-
Florian Edlhuber
-
Lars Jørgensen
-
Vogl, Yves