Intelerad InteleShare (formerly Ambra Image Exchange) - User Comments (2024)

View Product Scores

View Advanced Filters

Advanced Filters

Job Level

Comment Type

Overall Satisfaction

Click stars to filter

By Month

1

6

12

24

36

By Date Range

Comment Categories

"); applyKlasOverLay($(".comments-loading-area")); } var searchString = $("#commentsSearchInput").val(); var startDate = $("#fromDate").val(); var endDate = $("#toDate").val(); var sortOrder = $("#sortBySelect").val(); var selectedJobLevels = ""; $(".job-level-check-boxes input:checked").each(function () { if (selectedJobLevels !== "") { selectedJobLevels += ","; } selectedJobLevels += $(this).attr('value'); }); if (selectedJobLevels === "0") { selectedJobLevels = ""; } var selectedCommentTypes = ""; $("#comment-type-check-boxes input:checked").each(function () { if (selectedCommentTypes !== "") { selectedCommentTypes += ","; } selectedCommentTypes += $(this).attr('value'); }); if (selectedCommentTypes === "0") { selectedCommentTypes = ""; } var selectedCategories = ""; $("#category-check-boxes input:checked").each(function () { if (selectedCategories !== "") { selectedCategories += ","; } selectedCategories += $(this).attr('value'); }); if (selectedCategories === "0") { selectedCategories = ""; } var i; var selectedSatisfaction = ""; for (i = 0; i <= maxSatisfactionScore; i++) { if ($("#star" + i + "i").hasClass('fas')) { selectedSatisfaction = i; } } var $months = $('div.months div.btn-primary.active'); var numberOfMonths = parseInt($months.attr("data-months")); var showOnlyUnread = false; if (numberOfMonths === 0) { showOnlyUnread = true; rowsToRetrieve = 50000; } else { rowsToRetrieve = 50000; } $.ajax({ type: 'POST', url: '/comments/_comments', data: { evProductIds:_evProductId, searchString: searchString, startDate: startDate, endDate: endDate, sortId: sortOrder, includeProviderPulse: false, numberOfRows: rowsToRetrieve, pageNumber: _currentPage, jobLevels: selectedJobLevels.toString(), commentType: selectedCommentTypes, scores: selectedSatisfaction, categories: selectedCategories, async: ajaxAsync, // blocks scroll events from duplicating the data. sortItems: "[{"SortTypeID":2,"SortDesc":"Date Newest"},{"SortTypeID":1,"SortDesc":"Date Oldest"},{"SortTypeID":4,"SortDesc":"Job Level Z-A"},{"SortTypeID":3,"SortDesc":"Job Level A-Z"}]", showUnreadOnly: showOnlyUnread, segmentId: 236, contactName: "", contactNumber: "", marketSegmentName: "Image Exchange", productTypeId: 1, isOneTimeService: "False" } }).done(function (html) { if (pageNum > 1) { var $html = $(html); $('#user-commentary-comments-grid').isotope("insert", $html); } else { $('#commentsContainer').empty().html(html); } // Bind the endless scrolling scroll event // Only do this if there are additional comments to load if ((_currentPage * rowsToRetrieve) < _resultsCount) { commentsScrollListener(); } $(".comments-loading-area").remove(); }).fail(function () { toastr.error("Error loading comments "); $('#commentsContainer').empty().html("Error loading comments"); }); } function saveFilters() { var $months = $('div.months div.btn-primary.active'); var numberOfMonths = parseInt($months.attr("data-months")); if (numberOfMonths !== 0) { sessionStorage.setItem("product.comments.numberOfMonths", numberOfMonths); } var fromDate = $("#fromDate").val(); sessionStorage.setItem("product.comments.fromDate", fromDate); var toDate= $("#toDate").val(); sessionStorage.setItem("product.comments.toDate", toDate); var selectedJobLevels = ""; $(".job-level-check-boxes input:checked").each(function () { if (selectedJobLevels !== "") { selectedJobLevels += ","; } selectedJobLevels += $(this).attr('value'); }); if (selectedJobLevels === "0") { selectedJobLevels = ""; } sessionStorage.setItem("product.9819.comments.jobLevels", selectedJobLevels); var selectedCategories = ""; $("#category-check-boxes input:checked").each(function () { if (selectedCategories !== "") { selectedCategories += ","; } selectedCategories += $(this).attr('value'); }); if (selectedCategories === "0") { selectedCategories = ""; } sessionStorage.setItem("product.9819.comments.categoryTypes", selectedCategories); var selectedCommentTypes = ""; $("#comment-type-check-boxes input:checked").each(function () { if (selectedCommentTypes !== "") { selectedCommentTypes += ","; } selectedCommentTypes += $(this).attr('value'); }); if (selectedCommentTypes === "0") { selectedCommentTypes = ""; } sessionStorage.setItem("product.9819.comments.commentTypes", selectedCommentTypes); } function loadFilters() { var saveDefaults = false; var numberOfMonthsValue = sessionStorage.getItem("product.comments.numberOfMonths"); if (numberOfMonthsValue && (numberOfMonthsValue != "" || numberOfMonthsValue != "-1")) { $("div.months div.btn-primary").removeClass('active'); $('div.months div.btn-primary[data-months="' + numberOfMonthsValue + '"]').addClass("active"); } else { saveDefaults = true; } updateDateRange(); var jobLevelValues = sessionStorage.getItem("product.9819.comments.jobLevels"); if (jobLevelValues && jobLevelValues != "" && jobLevelValues !== "undefined") { $('input[type="checkbox"][name="jobLevel"]').prop('checked', false); var jobLevels = jobLevelValues.split(","); jobLevels.forEach(function(element) { $('input[type="checkbox"][name="jobLevel"][value=' + element + ']').prop('checked', true); }); } var categoryTypeValues = sessionStorage.getItem("product.9819.comments.categoryTypes"); if (categoryTypeValues && categoryTypeValues != "" && categoryTypeValues !== "undefined") { $('input[type="checkbox"][name="categoryType"]').prop('checked', false); var categoryTypes = categoryTypeValues.split(","); categoryTypes.forEach(function(element) { $('input[type="checkbox"][name="categoryType"][value=' + element + ']').prop('checked', true); }); } var commentTypeValues = sessionStorage.getItem("product.9819.comments.commentTypes"); if (commentTypeValues && commentTypeValues != "" && commentTypeValues !== "undefined") { $('input[type="checkbox"][name="commentType"]').prop('checked', false); var commentTypes = commentTypeValues.split(","); commentTypes.forEach(function(element) { $('input[type="checkbox"][name="commentType"][value=' + element + ']').prop('checked', true); }); } if (saveDefaults === true) { // Nothing was saved to local storage.. save the defaults saveFilters(); } } // Note DOMContentLoaded doesn't fire if the document is already loaded check the document state before using it. if( document.readyState !== 'loading' ) { commentFiltersDocumentReady(); } else { document.addEventListener('DOMContentLoaded', function () { commentFiltersDocumentReady(); }); } function commentFiltersDocumentReady() { // Set the Filter Buttons on loadSize Filters $('input[name="size"][value="0"]').prop('checked', true); $('input[name="region"][value="0"]').prop('checked', true); $('input[name="subtype"][value="0"]').prop('checked', true); $('input[name="owned"][value="-1"]').prop('checked', true); $('input[name="specialty-filter-Utilization-1"][value="0"]').prop('checked', true); $("#mobileCommentFilters").on("click", function () { // hide / show for mobile only $("#commentAdvancedFilters").toggleClass("d-none"); $("#commentAdvancedFilters").toggleClass("d-sm-none"); $("#mobileCommentFilterButtonLabel").text(function (i, text) { return text === " View Advanced Filters" ? "Hide Advanced Filters" : " View Advanced Filters"; }); }); // wire up date pickers $("#fromDate").datepicker().on("changeDate", function () { populateCommentResults(); $(this).datepicker('hide'); }); $("#toDate").datepicker().on("changeDate", function () { populateCommentResults(); $(this).datepicker('hide'); }); $("#fromDate, #toDate").on("change", function () { $(this).datepicker('hide'); }); $("#fromDate, #toDate").on("blur", function () { populateCommentResults(); }); $(".job-level-check-boxes input").on("change", function () { var $this = $(this); if ($this.attr('value') === "0") { $(".job-level-check-boxes input").prop('checked', false); $this.prop('checked', true); } else { if ($("#joblevel-0").is(':checked')) { $("#joblevel-0").prop('checked', false); } } saveFilters(); }); $("#comment-type-check-boxes input").on("change", function () { var $this = $(this); if ($this.attr('value') === "0") { $("#comment-type-check-boxes input").prop('checked', false); $this.prop('checked', true); } else { if ($("#comment-type-0").is(':checked')) { $("#comment-type-0").prop('checked', false); } } saveFilters(); }); $("#category-check-boxes input").on("change", function () { var $this = $(this); if ($this.attr('value') === "0") { $("#category-check-boxes input").prop('checked', false); $this.prop('checked', true); } else { if ($("#category-0").is(':checked')) { $("#category-0").prop('checked', false); } } saveFilters(); }); // Change the month selector $("div.months div.btn-primary").on("click", function () { $("div.months div.btn-primary").removeClass('active'); $(this).addClass("active"); updateDateRange(); populateCommentResults(); saveFilters(); }); //Search event with a de-bouncer, prevent enter key $("#commentsSearchInput").on("keyup", $.debounce(750, function () { // refresh the results populateCommentResults(); })).on("keypress", function (event) { var code = (event.keyCode ? event.keyCode : event.which); if (code === 13) { event.stopPropagation(); event.preventDefault(); } }); $(".filter-radio-buttons-comments").off('click').on('click', function () { var value = $(this).val(); if (value === "0") { $('input[name=commentType]').prop("checked", false); $('input[name=commentType][value="0"]').prop("checked", true); } else { $('input[name=commentType][value="0"]').prop("checked", false); } applyKlasOverLay('#commentsContainer'); // Number of years from the parent page var numberOfYears = $("#trendingFilters .years .btn.btn-primary.active").attr("data-years"); var filterSizeValue = $('input[name="size"]:checked').val(); var filterRegionValue = $('input[name="region"]:checked').val(); var filterSpecialtyValue = $('input[name="specialty-filter-Utilization-1"]:checked').val(); var filterOwnedValue = $('input[name="owned"]:checked').val(); var filterSubTypeValue = $('input[name="subtype"]:checked').val(); if (filterSizeValue === undefined) { filterSizeValue = 0; } if (filterRegionValue === undefined) { filterRegionValue = 0; } if (filterOwnedValue === undefined) { filterOwnedValue = -1; } if (filterSubTypeValue === undefined) { filterSubTypeValue = 0; } // Update the filters $.ajax({ url: '/productPage/UpdateFilters', data: { productId: _evProductId, filterSizeValue: filterSizeValue, filterRegionValue: filterRegionValue, filterSpecialtyValue: filterSpecialtyValue, filterSubTypeValue: filterSubTypeValue, isOwnedId: filterOwnedValue, } }).done(function (result) { if(result.evProductId == null) { // There is data that KLAS is willing to show for this case. (Exception Ambulatory EMR, when sizing is applied the business doesn't want to show the owned data.) $('#commentsContainer').empty().html("No comments for the selected filter combination."); return; } // Update the global evProduct Id with the new one. _evProductId = result.evProductId; var filterSizeValue = $('input[name="size"]:checked').val(); var filterRegionValue = $('input[name="region"]:checked').val(); var filterSubTypeVlue =$('input[name="subtype"]:checked').val(); var filterOwnedValue =$('input[name="owned"]:checked').val(); var filterSpecialtyValue = $('input[name="specialty-filter-Utilization-1"]:checked').val(); var filterSizeText = $('input[name="size"]:checked').parent().text(); var filterSubTypeText = $('input[name="subtype"]:checked').parent().text(); var filterOwnedText = $('input[name="owned"]:checked').parent().text(); var filterRegionText = $('input[name="region"]:checked').parent().text(); var filterSpecialtyText = $('input[name="specialty-filter-Utilization-1"]:checked').parent().text(); var filterOwnedValue = $('input[name="owned"]:checked').val(); var filterOwnedText = $('input[name="owned"]:checked').parent().text(); var filterSubTypeValue = $('input[name="subtype"]:checked').val(); var filterSubTypeText = $('input[name="subtype"]:checked').parent().text(); $("#viewProductsButton").attr("href", "/review/" + result.urlFriendlyProductName + "/" + _evProductId); var filterText = buildFilterText(filterSizeText.trim(), filterRegionText.trim(), filterSpecialtyText, filterSubTypeText.trim(), filterOwnedText.trim()) $("strong.filtered-text-description").text(filterText); // Change all the labels if (filterText.toLowerCase().includes("all") && !filterText.toLowerCase().includes("small")) { $(".filter-text-label").addClass("d-none"); } else { $(".filter-text-label").removeClass("d-none"); } populateCommentResults(); var url = "/comments/" + result.urlFriendlyProductName + "/" + result.evProductId; if (result.evProductIds && result.evProductIds != "") { url += "/" + result.evProductIds; } history.pushState({ evProductId: result.evProductId, evProductIds: result.evProductIds, numberOfYears: numberOfYears, filterText: filterText, filterSizeValue: filterSizeValue, filterRegionValue: filterRegionValue, filterSpecialtyValue: filterSpecialtyValue, filterSubTypeValue: filterSubTypeValue, filterOwnedValue: filterOwnedValue, }, document.title + " - " + filterText, url); }).fail(function (response) { toastr.error("error updating filters"); }).always(function () { removeKlasOverlay(); }); // Bind the Call to action login button the menu click event // Global function see functions.js bindMenuLoginButton('.login-to-access'); bindCreateAccountButton('.create-account-modal-dropdown'); bindMobileCreateAccountButton(".mobile-create-account-modal-dropdown"); $(window).on('popstate', function (e) { if (e.originalEvent.state.evProductId != undefined && e.originalEvent.state.evProductId != null) { // Restore the state of the check-boxes $("input[name='size'][value='" + e.originalEvent.state.filterSizeValue + "']") .prop("checked", true); $("input[name='size2'][value='" + e.originalEvent.state.filterSizeValue + "']") .prop("checked", true); $("input[name='region'][value='" + e.originalEvent.state.filterRegionValue + "']") .prop("checked", true); $("input[name='region2'][value='" + e.originalEvent.state.filterRegionValue + "']") .prop("checked", true); $("input[name='specialty-filter-Utilization-1'][value='" + e.originalEvent.state.filterSpecialtyValue + "']") .prop("checked", true); $("input[name='specialty-filter-Utilization-2'][value='" + e.originalEvent.state.filterSpecialtyValue + "']") .prop("checked", true); $("input[name='subtype'][value='" + e.originalEvent.state.filterSubTypeValue + "']") .prop("checked", true); $("input[name='owned'][value='" + e.originalEvent.state.filterOwnedValue + "']") .prop("checked", true); loadCommentFilters(e.originalEvent.state.evProductId, e.originalEvent.state.filterSizeValue, e.originalEvent.state.filterRegionValue, e.originalEvent.state.filterSpecialtyValue, e.originalEvent.state.filterSubTypeValue, e.originalEvent.state.filterOwnedValue); } }); const EUROPE_FILTER = 11; // Europe filter ID const EUROPE_RANGE_START = 2291; // Europe sub filter range start const EUROPE_RANGE_END = 2296; // Europe sub filter range end // Show Europe filters based on region selection var regionValue = 0; if (regionValue === EUROPE_FILTER || (regionValue >= EUROPE_RANGE_START && regionValue <= EUROPE_RANGE_END)) { $("#europe-filters-continer").removeClass("d-none"); } // Hide and Show Europe filters based on region selection $("input[name='region']").change(function () { var $this = $(this); var value = parseInt($this.val(), 10); if (value === EUROPE_FILTER || (value >= EUROPE_RANGE_START && value <= EUROPE_RANGE_END)) { $("#europe-filters-continer").removeClass("d-none"); } else { $("#europe-filters-continer").addClass("d-none"); } }); }); } // end of function commentFiltersDocumentReady var HasAccess = false; var IsVendor = false; function setStars(selectorToAdd, selectorToRemove) { for (let k = (minSatisfactionScore + 1); k <= maxSatisfactionScore; k++) { $("#star" + k + "i").removeClass("fas").addClass("far"); } for (let j = 1; j <= minSatisfactionScore; j++) { $("#star" + j + "i").removeClass(selectorToRemove).addClass(selectorToAdd); } } function bindEvents() { $(".star-filters span.star").on("click", function () { var $this = $(this); var value = $this.attr("data-value"); var id = "#star" + value + "i"; if (value <= minSatisfactionScore) { if ($(id).hasClass("far")) { //a star was clicked to select it setStars("fas", "far"); } else { //a star was clicked to unselect it setStars("far", "fas"); } } else { if ($(id).hasClass("far")) { //a star was clicked to select it $(".fas").removeClass("fas").addClass("far"); $(id).addClass("fas").removeClass("far"); } else { //a star was clicked to unselect it $(".fas").removeClass("fas").addClass("far"); $(id).addClass("far").removeClass("fas"); } } if (IsVendor === true) { ReturnByMonthFilterToPreviousState(); } populateCommentResults(); }); }

Intelerad InteleShare (formerly Ambra Image Exchange) - User Comments (2024)

References

Top Articles
How to Make a Coil Pot - Step by step guide with photos and video
30 Keto Meal Prep Recipe Ideas (+ How to Monthly Meal Prep)
Spasa Parish
Rentals for rent in Maastricht
159R Bus Schedule Pdf
Sallisaw Bin Store
Black Adam Showtimes Near Maya Cinemas Delano
Espn Transfer Portal Basketball
Pollen Levels Richmond
11 Best Sites Like The Chive For Funny Pictures and Memes
Xenia Canary Dragon Age Origins
Momokun Leaked Controversy - Champion Magazine - Online Magazine
‘An affront to the memories of British sailors’: the lies that sank Hollywood’s sub thriller U-571
Tyreek Hill admits some regrets but calls for officer who restrained him to be fired | CNN
Haverhill, MA Obituaries | Driscoll Funeral Home and Cremation Service
Rogers Breece Obituaries
Ems Isd Skyward Family Access
Sauce 423405
Elektrische Arbeit W (Kilowattstunden kWh Strompreis Berechnen Berechnung)
Omni Id Portal Waconia
Kellifans.com
Banned in NYC: Airbnb One Year Later
Four-Legged Friday: Meet Tuscaloosa's Adoptable All-Stars Cub & Pickle
Model Center Jasmin
Ice Dodo Unblocked 76
Is Slatt Offensive
Labcorp Locations Near Me
Storm Prediction Center Convective Outlook
Experience the Convenience of Po Box 790010 St Louis Mo
Fungal Symbiote Terraria
modelo julia - PLAYBOARD
Abby's Caribbean Cafe
Joanna Gaines Reveals Who Bought the 'Fixer Upper' Lake House and Her Favorite Features of the Milestone Project
Tri-State Dog Racing Results
Trade Chart Dave Richard
Lincoln Financial Field Section 110
Free Stuff Craigslist Roanoke Va
Stellaris Resolution
Wi Dept Of Regulation & Licensing
Pick N Pull Near Me [Locator Map + Guide + FAQ]
Horseheads Schooltool
Crystal Westbrooks Nipple
Ice Hockey Dboard
Über 60 Prozent Rabatt auf E-Bikes: Aldi reduziert sämtliche Pedelecs stark im Preis - nur noch für kurze Zeit
Wie blocke ich einen Bot aus Boardman/USA - sellerforum.de
Craigslist Pets Inland Empire
Infinity Pool Showtimes Near Maya Cinemas Bakersfield
Hooda Math—Games, Features, and Benefits — Mashup Math
How To Use Price Chopper Points At Quiktrip
Maria Butina Bikini
Busted Newspaper Zapata Tx
Latest Posts
Article information

Author: Amb. Frankie Simonis

Last Updated:

Views: 5919

Rating: 4.6 / 5 (76 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Amb. Frankie Simonis

Birthday: 1998-02-19

Address: 64841 Delmar Isle, North Wiley, OR 74073

Phone: +17844167847676

Job: Forward IT Agent

Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.