4

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 ].

Blauharley
  • 4,186
  • 6
  • 28
  • 47
ref
  • 43
  • 4

1 Answers1

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>

tool tip screen shot

Or exactly your tool tip:

<px:PXDropDown ID="edStatus" runat="server" AllowNull="False" DataField="Status" Enabled="False" ToolTip="Tax Code: [ 1099 ]"  ></px:PXDropDown>

enter image description here

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