Is there a way in Acumatica to add a tool tip to a text box control on a form? For example I would like to display a tool tip when the user hovers over the tax code control. Tax Code: [ 1099 ].
Asked
Active
Viewed 442 times
1 Answers
1
For example with usage of ToolTip. Take a look:
<px:PXDropDown ID="edStatus" runat="server" AllowNull="False" DataField="Status" Enabled="False" ToolTip="Some status" ></px:PXDropDown>
Or exactly your tool tip:
<px:PXDropDown ID="edStatus" runat="server" AllowNull="False" DataField="Status" Enabled="False" ToolTip="Tax Code: [ 1099 ]" ></px:PXDropDown>

Yuriy Zaletskyy
- 4,983
- 5
- 34
- 54
-
Thank you. Can conditional logic be added to display a different tool tip based on the value of the field? – ref Jan 03 '18 at 18:44
-
Of what I know you can use javascript for conditional logic. – Yuriy Zaletskyy Jan 03 '18 at 19:09
-
I'm new to Acumatica, How can the value of the field be referenced in code, in your example within PXDropDown. I did not find anything Acumatica documentation. – ref Jan 04 '18 at 05:19