Fran Parker
Fran Parker

Reputation: 1

Add JavaScript Through Acumatica Customization

I'm wondering if it's possible to add JavaScript code to an Acumatica web page through a customization.

Thanks for your help!

Fran Parker

Upvotes: 0

Views: 1249

Answers (2)

combobox
combobox

Reputation: 41

Another way is to create customization for existing page. In Layout Editor select "Actions->Edit Aspx", add the following code

<px:PXLiteral runat="server" ID="s">
    <script type="text/javascript" src="myscript.js"></script>
</px:PXLiteral>

and click "Generate customization script"

Upvotes: 4

Yuriy Zaletskyy
Yuriy Zaletskyy

Reputation: 5151

You can add js code to your aspx page, and then add this page to your customization package. Here you can see example of adding js code.

Upvotes: 1

Related Questions