I've got a dropdown added to the Frontend::Agent::Ticket::ViewCustomer page, it is populating from the script, but it is not being saved to the Dynamic Field I created.
The moderator of that post asked if the Dynamic Field was on the page I am using. The ViewCustomer page seems to be a bit different than other pages in the SysConfig, there isn't a place to add Dynamic Fields.
Another issue is that I will need to pass the current value of the Dynamic Field to the Perl script so that the drop down can set it as selected. From my research on the web, it appears that it is possible to do that, but I couldn't find how to adjust the Jquery below to pass an argument to GetCompanyData.pl.
Code: Select all
<script type="text/javascript">
$.get("GetCompanyData.pl", function(data) {
$("#companydata").append(data);
});
</script>
Thanks for any help!
Tom