This topic is locked

How to customize Export page output formats

3/14/2019 12:34:04 PM
PHPRunner Tips and Tricks
admin

Applies to all versions of PHPRunner, ASPRunner.NET and ASPRunnerPro
Question:
can "Word" and "XML" and "CSV" output choices be removed from the Export Page?
Answer:
Add the following code to Export page: Javascript OnLoad event to hide those options:

$("input[value=xml]").parent().hide();

$("input[value=csv]").parent().hide();

$("input[value=word]").parent().hide();