Search the Community
Showing results for tags 'external parameter'.
-
Hi, I have a dashboard that contains one parent datapage (a stacked area chart) and several child datapages (pie charts) embedded as iframes in the footer of the parent datapage. The search terms for the parent datapage are configured to pass as external parameters to the child datapages. This works for all search terms where just one option is selected, but not for multi-select listboxes. Based on previous posts I've tried the following JavaScript to pass the multi-select listbox parameters, but with no success. Any suggestions? Thank you all! <script type="text/javascript"> var fieldName = "Value4_1"; var x1=document.getElementsByName(fieldName); x1[0].multiple=true; document.addEventListener('FormSubmitted', function(event) { var result = ""; for (var i = 0; i < x1[0].length; i++) { if (x1[0].options[i].selected) { result += "\"" + x1[0].options[i].value + "\"" + " OR " ; } } document.getElementById("Value4_1").value = result; }); </script>
- 2 replies
-
- javascript
- external parameter
-
(and 1 more)
Tagged with:
-
Hi there - I'm trying to pass an external parameter (a unique ID) from my results page - I've read that I need to do this as a query string, but don't know how to do that or from where! Bit of background - I have a 'Review tracker' list report datapage that directs users to a different page through an HTML block (no details page) based on the status of one of the fields (review_stage), but the page always displays with no results. I think this is because the results page is not passing the unique ID to the next page (which is a 'Single record update' submission form) but can't figure out how to get it to do so! Any help would be greatly appreciated .. Tim
- 2 replies
-
- parameter
- query string
-
(and 3 more)
Tagged with: