Hi, I want to enable a DynamicField only for a few select queues and don't want it to show anywhere else at all. In the ACL examples, I only found a way to limit the possible values of a dynamic field, but how can I hide it for certain queues altogether?
Thanks in advance.
Restrict DynamicField to certain queues
Moderator: crythias
Restrict DynamicField to certain queues
Last edited by fuzzyL on 11 Jan 2013, 11:19, edited 1 time in total.
Re: Restrict DynamicField to certain queues
This is only possible with the Feature Add O: Ticket Mask Extension which is only available for Support Customers
"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 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: Restrict DynamicField to certain queues
If those fields are not mandatory, you could simply bind JavaScript to the queue dropdown...
see viewtopic.php?f=62&t=18465&p=72544&hili ... ide#p72544
If you want it more dynamic, you have to put in more efforts or become support subscription customer of xxx or hire someone
Code: Select all
var $QueueSelect = $('#Dest');
$QueueSelect.change(function() {
var Selected = $QueueSelect.val();
if ( Selected == "AnyQueueName" ) {
$('#LabelDynamicField_<DynamicField>').parent().addClass( 'Hidden' );
}
});
If you want it more dynamic, you have to put in more efforts or become support subscription customer of xxx or hire someone

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
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Re: Restrict DynamicField to certain queues
I see, thanks.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Restrict DynamicField to certain queues
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
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