Hello,
Scenario:
I want a user to be able to click on an icon within a gallery item which will then print predefined fields within the gallery item. User must be able to choose a network printer to print to.
Thanks in advance.
Solved! Go to Solution.
Hi,
This may be able to be adapted for your requirements.
Add an icon to your gallery.
Set the OnSelect of the icon in your gallery to
Set(printstring,ThisItem.field1&", "&ThisItem.field2&", "&ThisItem.field3...)
this creates the variable with the required printable text.
Add a new screen from Scenarios (Portrait Print)
Create an HtmlText field with default of printstring on the new screen
and there you have it.
You could add formatting to the HtmlText or split it into several variables and create a one page report with your preferred layout.
The Print() function will open your normal print preview screen and your user can then select the network printer as normal.
Hope it helps
Hi,
This may be able to be adapted for your requirements.
Add an icon to your gallery.
Set the OnSelect of the icon in your gallery to
Set(printstring,ThisItem.field1&", "&ThisItem.field2&", "&ThisItem.field3...)
this creates the variable with the required printable text.
Add a new screen from Scenarios (Portrait Print)
Create an HtmlText field with default of printstring on the new screen
and there you have it.
You could add formatting to the HtmlText or split it into several variables and create a one page report with your preferred layout.
The Print() function will open your normal print preview screen and your user can then select the network printer as normal.
Hope it helps