How can I show/hide some dynamic fields in AgentTicketPhone screen base on selecting a queue. I'm now thinking about ACL able to do, I wrote ACL in my config file like this:
Code: Select all
#ACL
$Self->{TicketAcl}->{'ACL-Test-1'} = {
# match properties
Properties => {
# current ticket match properties
Ticket => {
Queue => ['Raw'],
}
},
# return possible options (white list)
Possible => {
# possible ticket options (white list)
From => {
TestACL => 1, #TestACL is a dynamic field
},
},
};
Thanks in adv
Vu Nguyen