So I am a completely new web report developer and I am trying to wrap my head around how to create a custom web report. I have created an html page and am using DataTables.js to eventually display information queried from the relevance.
However, I am bit confused on how to actually create a query, and then manipulate the response from the query. I have been reading about a javascript file called EvaluateRevelance.js that apparently comes with BigFix.
From my understanding so far, for the javascript, would I just need
Thanks for the tip! Actually my question about the javascript didn’t seem to show up.
Just to repeat… for the javascript, would I just need
script tag
var query = ‘relevance query’;
var response = EvaluateRelevance(query);
end script tag
Ahhh I see so I could use that <?Relevance> tag directly in an html file? Also say I have a table, how could I grab information from whatever is inside the relevance tag to display in the table?