when i wanna display a dynamic field to the agent dashboard, it is empty:
agents can set this date if they want in the AgentTicketZoom at FreeFields, so sometimes it is empty and sometimes not. i made some tickets with the date and its everytime empty in the dashboard view.
first of all i made the dynamic field:
then i added it in the sysconfig Frontend::Agent::Dashboard:
i red this post viewtopic.php?f=53&t=18504 and updated the Kernel/Output/HTML/DashboardTicketGeneric.pm
atleast i wanted to change the Kernel/Output/HTML/Standard/AgentDashboardTicketGeneric.dtl like they said in this post viewtopic.php?f=62&t=21982&p=86929&hili ... ard#p86929 but when i try my hole dashboard is getting weird.
i uncommented the block from line 483-489
Code: Select all
# <td class="W10pc">
# <a href="$Env{"Baselink"}Action=AgentTicketZoom;TicketID=$Data{"TicketID"}" title="$QData{"Title"}" class="AsBlock MasterActionLink">$Data{"TicketNumber"}</a>
# </td>
# <td class="W50pc">
# <div title="$QData{"Title"}">$QData{"Title","70"}</div>
# </td>
# <td>$QData{"Time"}</td>
Code: Select all
<td class="W10pc">
<a href="$Env{"Baselink"}Action=AgentTicketZoom;TicketID=$Data{"TicketID"}" title="$QData{"Title"}" class="AsBlock MasterActionLink">$Data{"TicketNumber"}</a>
</td>
<td class="W50pc">
<div title="$QData{"Title"}">$QData{"Title","70"}</div>
</td>
<td>$QData{"Priority"}</td>
<td>$QData{"TicketID"}</td>
<td>$QData{"Service"}</td>
<td>$QData{"Queues"}</td>
<td>$QData{"Title"}</td>
<td>$QData{"CustomerUserID"}</td>
<td>$QData{"Owner"}</td>
<td>$QData{"DynamicField_ProjectedCompletionTime"}</td>
<td>$QData{"Created"}</td>
<td>$QData{"State"}</td>
<td>$QData{"Time"}</td>
any help would be appreciated!
zip