Hi,
I want to remove some columns in ticket status view page. For an example i want to remove Bulk,Article and Priority columns in Status view page. How can i remove that. I have gone through the 'Ticket ' option in SysConfig, but i can't find anything....Please help....
Thanks in Advance
Want to edit in ticket status view page
Moderator: crythias
Re: Want to edit in ticket status view page
That's not possible via config.
You should not remove the bulk option, as it will be needed
You should not remove the bulk option, as it will be needed
"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
"Testing": ((OTRS Community Edition)) and git Master
Never change Defaults.pm! :: Blog
Professional Services:: http://www.otrs.com :: enjoy@otrs.com
-
- Znuny newbie
- Posts: 27
- Joined: 27 Jan 2012, 07:56
- Znuny Version: 3.0.9
- Real Name: Ann
- Company: SGSSoft
Re: Want to edit in ticket status view page
Then how can i do that?
Does it through any HTML file?
Does it through any HTML file?
-
- Znuny wizard
- Posts: 370
- Joined: 17 Nov 2011, 17:46
- Znuny Version: 6.0.10
- Real Name: Miguel
- Company: SIA
- Location: Madrid, Spain.
Re: Want to edit in ticket status view page
At $HOME/Kernel/Output/HTML/Standard/(AgentTicketOverviewSmall.dtl|Medium|Preview)
You can modify the fields displayed for all views. If you need a new column you have to serve the hash $QData or add a new hash key from the perl module at $HOME//Kernel/Output/HTML/(TicketOverviewSmall.pm|Medium|Preview)
respect to the bulk, better not delete it is a very useful action. However you can hide it if you comment the line
<input type="hidden" name="Action" value="AgentTicketBulk"/>
In $HOME/Kernel/Output/HTML/Standard/(AgentTicketOverviewSmall.dtl|Medium|Preview)
Regards.
You can modify the fields displayed for all views. If you need a new column you have to serve the hash $QData or add a new hash key from the perl module at $HOME//Kernel/Output/HTML/(TicketOverviewSmall.pm|Medium|Preview)
respect to the bulk, better not delete it is a very useful action. However you can hide it if you comment the line
<input type="hidden" name="Action" value="AgentTicketBulk"/>
In $HOME/Kernel/Output/HTML/Standard/(AgentTicketOverviewSmall.dtl|Medium|Preview)
Regards.
-
- Znuny newbie
- Posts: 27
- Joined: 27 Jan 2012, 07:56
- Znuny Version: 3.0.9
- Real Name: Ann
- Company: SGSSoft
Re: Want to edit in ticket status view page
Thank..................