Search found 4 matches

by medfreeman
12 Feb 2015, 12:15
Forum: Help
Topic: Customer company LDAP sync?
Replies: 4
Views: 1617

Re: Customer company LDAP sync?

Hi,

i'll also be interested in this feature.

Is this feature natively supported in otrs or would it need a custom development ?

I can't seem to find the information, so i'm assuming it is not

Best
by medfreeman
27 Jun 2014, 20:50
Forum: Developers
Topic: Add "next ticket" button in AgentTicketZoom
Replies: 6
Views: 5752

Re: Add "next ticket" button in AgentTicketZoom

Hi, i'll be as verbose as possible ! First you have to make a copy of Kernel/Modules/AgentTicketSearch.pm to Custom/Kernel/Modules/AgentTicketSearch.pm, so you don't modify the file directly. The next steps change from the original topic, since i have found a way to alter the rendered HTML without a...
by medfreeman
26 Jun 2014, 17:00
Forum: Developers
Topic: Add "next ticket" button in AgentTicketZoom
Replies: 6
Views: 5752

Re: Add "next ticket" button in AgentTicketZoom

I just rewrote this as a FilterElementPre OutputFilter on AgentTicketZoom, works beautifully. Works by finding the "Header" block in AgentTicketZoom template, and then appending my template file just after the closing </h1> tag. That should not change much between releases. I wonder now if...
by medfreeman
21 Jun 2014, 22:03
Forum: Developers
Topic: Add "next ticket" button in AgentTicketZoom
Replies: 6
Views: 5752

Re: Add "next ticket" button in AgentTicketZoom

Hi, thanks for your code, i was looking for something like this. That works pretty good, except for the placement of the snippet in AgentTicketZoom.pm, i have to put it just after (l.707) : $Self->{LayoutObject}->Block( Name => 'Header', Data => { %Param, %Ticket, %AclAction }, ); I didn't try it in...