Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
function viewerSubmitParameters() {
var params = {
action: "Variables",
variables: {
"Name": document.getElementById("name").value,
"Email": document.getElementById("email").value,
"Sex": document.getElementById("male").checked
}
};
jsStiNetCoreViewer1.postInteraction(params);
}<button onclick="jsStiNetCoreViewer1.postAction('FirstPage')">First Page</button>
<button onclick="jsStiNetCoreViewer1.postAction('PrevPage')">Prev Page</button>postInteraction sends your variables to the server (where the report is re-rendered with them), while postAction invokes standard viewer commands — together they let you replace the default parameter panel with a fully custom interface.