Additional ITSM fields of ticket display in the ticket

Moderator: crythias

Locked
borisnikitic
Znuny newbie
Posts: 9
Joined: 02 Nov 2011, 20:20
Znuny Version: 3.0.9

Additional ITSM fields of ticket display in the ticket

Post by borisnikitic »

Is it possible display window Additional ITSM Fields->Change ITSM fields of ticket directly in ticket window ?
If is possible how can I do it ?
thank you fo answer
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Additional ITSM fields of ticket display in the ticket

Post by reneeb »

You can enable all dynamic fields for TicketZoom in the SysConfig (Ticket -> Frontend::Agent::Ticket::ViewZoom).
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
borisnikitic
Znuny newbie
Posts: 9
Joined: 02 Nov 2011, 20:20
Znuny Version: 3.0.9

Re: Additional ITSM fields of ticket display in the ticket

Post by borisnikitic »

Thanks for quick answer :-)
But is it possible display dynamic fields in ticket zoom so that can they directly edit ?
Second question how to move ticket information window from right side to left side in ticket zoom window ?
jojo
Znuny guru
Posts: 15020
Joined: 26 Jan 2007, 14:50
Znuny Version: Git Master
Contact:

Re: Additional ITSM fields of ticket display in the ticket

Post by jojo »

both not possible without development
"Production": OTRS™ 8, OTRS™ 7, STORM powered by OTRS
"Testing": ((OTRS Community Edition)) and git Master

Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Additional ITSM fields of ticket display in the ticket

Post by crythias »

borisnikitic wrote:Second question how to move ticket information window from right side to left side in ticket zoom window ?
change var/httpd/htdocs/skins/Agent/default/css/Core.PageLayout.css from this

Code: Select all

.LayoutFixedSidebar.SidebarLast > .SidebarColumn {
    width: 270px;
    float: right;
    margin-left: 16px;
    margin-right: 0;
}
to this:

Code: Select all

.LayoutFixedSidebar.SidebarLast > .SidebarColumn {
    width: 270px;
    float: left;
    margin-left: 0;
    margin-right: 16px;
}
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Locked