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();
