Is it possible to override the download instance list as CSV image that is used using a property in the framework or is the only choice to manually change the .PNG file that exists on the server. This is the image I am referring to.
Override VLF ONE Download as CSV Image
-
davidbalansa
- Posts: 92
- Joined: Mon Feb 01, 2016 10:08 am
Re: Override VLF ONE Download as CSV Image
In the VLFONE theme customizer component, in the Customize method:
Add the following line:
#CustomTheme.AddImageName Usesymbolicname(LIST) Actualimagename("to_bottom")
Where the image name "to_bottom" (or any other image) exists in the ....x_<partition>/web/vl/... directories.
Hope this helps.
Add the following line:
#CustomTheme.AddImageName Usesymbolicname(LIST) Actualimagename("to_bottom")
Where the image name "to_bottom" (or any other image) exists in the ....x_<partition>/web/vl/... directories.
Hope this helps.
Re: Override VLF ONE Download as CSV Image
You don't have to create a new theme.
You can just override the associated default image name in all shipped themes, something like this:
You can just override the associated default image name in all shipped themes, something like this:
Re: Override VLF ONE Download as CSV Image
Here's the code snippet again with less typos in it ................
-
caseywhite
- Posts: 192
- Joined: Thu May 26, 2016 1:17 am
Re: Override VLF ONE Download as CSV Image
Great. Thanks Mark and David.