is there a way to add the field tip into the mobile screen when entering a expense receipt??
Page 1 / 1
you can add field tooltips to Acumatica mobile screens by customizing the ASPX page.
<!-- Basic field example with tooltip -->
<Control Type="FormViewField" DataField="Description" ControlID="edDescription"
Label="Description" Required="True"
ToolTip="Enter a brief description of the expense" />
To implement this:
- Go to Customization Projects
- Create or open your customization project
- Add a Mobile Site Map
- Find the expense receipt screen
- Add the ToolTip attributes to the desired fields
- Publish the customization
Try to modify like this
I think the ask here was to add the field called tip. Not a tooltip.
This needs to be added to the customization for the mobile:
update screen EP301000 {
update container "Details" {
add field "TipAmount"
}
}
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.