This website uses cookies. By clicking Accept, you consent to the use of cookies.
Click Here
to learn more about how we use cookies.
Accept
Reject
Browse
Welcome Center
Community Blog
Community Resources
Contests and Giveaways
Lansweeper Excellence Awards
Cybersecurity Challenge
Lansweeper SysAdmin Day 2024 Giveaway
Lansweeper Integration Challenge
Asset Discovery Challenge
The Lounge (for New Users)
Forum
Blog
Events
Forums
General Discussions
Open Office Hours Q&A
Reports & Analytics
Product Discussions
Deployment Packages
Product Announcements
Archive
Knowledge Center
Knowledge Base
Requirements
Installation
Troubleshooting your installation
Scanning your network
Troubleshooting Scanning Issues
Customizing the Web Console
Managing Assets
Lansweeper Maintenance
Troubleshooting
Deploying Software & Other Changes
Configuring & Using the Helpdesk
Managing Software
Managing Licenses
Managing Users
Actions
Reporting
Billing-related Questions
Lansweeper OT
Sites
Diagrams
Cyber Security and Risk Insights
Integrations
Pro Tips
Quick Tech Solutions
Support Portal
Training
Installing Lansweeper
Lansweeper Fundamentals Course
Reboot & Review
Resources
Vulnerability Audit Reports
End of Life Updates
Patch Tuesday Updates
Events and Webinars
Events
Virtual Office Hours
Participate in Product Research
About the Programs
Open Programs
Lansweeper.com
Developer Portal
Lansweeper Community
Lansweeper.com
Developer Portal
Community FAQ
Register | Log In
Welcome Center
Community Blog
Community Resources
Contests and Giveaways
Lansweeper Excellence Awards
Cybersecurity Challenge
Lansweeper SysAdmin Day 2024 Giveaway
Lansweeper Integration Challenge
Asset Discovery Challenge
The Lounge (for New Users)
Forum
Blog
Events
Forums
General Discussions
Open Office Hours Q&A
Reports & Analytics
Product Discussions
Deployment Packages
Product Announcements
Archive
Knowledge Center
Knowledge Base
Requirements
Installation
Troubleshooting your installation
Scanning your network
Troubleshooting Scanning Issues
Customizing the Web Console
Managing Assets
Lansweeper Maintenance
Troubleshooting
Deploying Software & Other Changes
Configuring & Using the Helpdesk
Managing Software
Managing Licenses
Managing Users
Actions
Reporting
Billing-related Questions
Lansweeper OT
Sites
Diagrams
Cyber Security and Risk Insights
Integrations
Pro Tips
Quick Tech Solutions
Support Portal
Training
Installing Lansweeper
Lansweeper Fundamentals Course
Reboot & Review
Resources
Vulnerability Audit Reports
End of Life Updates
Patch Tuesday Updates
Events and Webinars
Events
Virtual Office Hours
Participate in Product Research
About the Programs
Open Programs
Community Events
Upcoming events in the Lansweeper Community
All community
This category
Events
Knowledge base
Users
cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show
only
|
Search instead for
Did you mean:
Lansweeper Community
Resources
Events and Webinars
Events
Options
Subscribe
Add Events to Calendar
Mark all as New
Mark all as Read
Community Events
View:
In Progress
Upcoming
Past
Status: In progress
Remove Status: In progress filter
Status: Upcoming
Remove Status: Upcoming filter
Friday, February 28, 2025
Lansweeper Virtual Open Office Hours: 28th February
Register here Webinar: Lansweeper Open Office Hours - February 2025 by Lansweeper (bigmarker.com) About This Webinar Join this open virtual session and interact with our team as they answer your questions around how to fast-track your Lansweeper installation and avoid common pitfalls. Ever wanted to know: How many scan servers should I use? How to make the most of Diagrams? How to deploy Lansweeper in a complex network? ...and others? Join us to ask your questions. Note: Lansweeper wants to empower users to succeed with our product! Office hours are collaborative and attendee-driven, so make sure to come with questions: Although our team will be on hand to facilitate discussions, the agenda will be entirely driven by attendees
Labels:
Labels:
Office Hours
0 attending
0
0
At your desk
Thursday, March 20, 2025
Save the date: Regular Open Office Hours 20.03.2025
[RSVP to be notified when event link is available] Kick off the new year by taking your Lansweeper expertise to the next level! What’s in Store: - Expert insights to help you maximize Lansweeper's potential. - Live Q&A to answer your pressing questions. - Tips to optimize your setup and uncover new possibilities. Whether you're starting fresh or looking to build on your success, this session is your chance to connect, learn, and collaborate. Note: Lansweeper’s Office Hours are attendee-driven—your questions set the agenda! Come prepared to make the most of this interactive opportunity.
Labels:
Labels:
Office Hours
1 attending
0
0
;(function($) { var lastDepth = 1; function checkDropdownKey(e) { var parent = $(e.target).closest('li.custom-nav-menu-item'); if (parent.length) { var button = $(parent).children('.toggle-menu-button-wrapper').children('.toggle-menu-children'); if (e.key !== 'Escape' && $(parent).hasClass('has-children')) { if (e.key === ' ' || e.key === 'Spacebar' || e.key === 'Enter') { if (e.key !== 'Enter') { toggleSubMenu(button) } } } else if (e.key === 'Escape') { var button = $(e.target).closest('.nav-expanded.depth1').children('.toggle-menu-button-wrapper').children('.toggle-menu-children'); $(button).focus(); hideSubMenus(); } } } function checkDropdownTabKey(e) { var parentLi = $(e.target).closest('li'); var newDepth = 1; if ($(e.target).closest('li').hasClass('depth2')) { newDepth = 2; } else if ($(e.target).closest('li').hasClass('depth3')) { newDepth = 3; } if ($(e.target).hasClass('top-level-link')) { hideSubMenus(); } else { var lastLinkPos = 0; if (newDepth !== lastDepth) { if (newDepth < lastDepth) { hideSubMenus(lastDepth); } lastDepth = newDepth; } } } function toggleSubMenu(button) { if (button) { if (button.attr('aria-expanded') == 'false') { button.attr('aria-expanded','true'); button.closest('li.custom-nav-menu-item').addClass('nav-expanded'); } else { button.attr('aria-expanded','false'); button.closest('li.custom-nav-menu-item.nav-expanded').removeClass('nav-expanded'); } } } function hideSubMenus(depth = 1, desktop = true) { if (depth > 1) { if (desktop) { depth--; } $('li.custom-nav-menu-item .depth'+depth).find('.toggle-menu-children').attr('aria-expanded','false'); $('li.custom-nav-menu-item .depth'+depth).removeClass('nav-expanded'); } else { $('li.custom-nav-menu-item .toggle-menu-children').attr('aria-expanded','false'); $('li.custom-nav-menu-item').removeClass('nav-expanded'); } } var mobileBreakpoint = 840; $('.toggle-menu-children').click(function (e) { e.preventDefault(); var item = $(this); if (window.innerWidth < mobileBreakpoint) { var nearest = $(item).closest('li.custom-nav-menu-item'); if ($(nearest).hasClass('depth1')) { if (!($(nearest).hasClass('nav-expanded'))) { hideSubMenus(1, false); } } else if ($(nearest).hasClass('depth2')) { if (!($(nearest).hasClass('nav-expanded'))) { hideSubMenus(2, false); } } } toggleSubMenu(item); }); $('.custom-sub-nav li').mouseenter(function () { if (window.innerWidth >= mobileBreakpoint) { var button = $(this).children('.toggle-menu-button-wrapper').children('.toggle-menu-children'); button.attr('aria-expanded','true'); $(this).addClass('nav-expanded'); } }); $('li.has-children').mouseleave(function (e) { if (window.innerWidth >= mobileBreakpoint) { if ($(this).hasClass('depth2')) { hideSubMenus(2); } else { hideSubMenus(); } } }); $('.custom-community-header-sub-navigation li.depth2').mouseleave(function () { if (window.innerWidth >= mobileBreakpoint) { $(this).find('.toggle-menu-children').attr('aria-expanded','false'); $(this).removeClass('nav-expanded'); } }); $( window ).resize(function() { if (window.innerWidth >= mobileBreakpoint) { hideSubMenus(); } }); var eventTarget = document.getElementById('headerNav'); eventTarget.onkeyup = function (evt) { e = evt || window.event; if (e.key === 'Tab') { checkDropdownTabKey(e) } else if (e.key === 'Escape') { checkDropdownKey(e) } else if ((e.key === ' ' || e.key === 'Spacebar' || e.key === 'Enter')) { if (!($(e.target).is('a'))) { checkDropdownKey(e) } } }; })(LITHIUM.jQuery); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_0","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_1","feedbackSelector":".InfoMessage"}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_2","feedbackSelector":".InfoMessage"}); LITHIUM.AjaxFeedback(".lia-inline-ajax-feedback", "LITHIUM:hideAjaxFeedback", ".lia-inline-ajax-feedback-persist"); LITHIUM.Placeholder(); LITHIUM.AutoComplete({"options":{"autosuggestionAvailableInstructionText":"Auto-suggestions available. Use Up and Down arrow keys to navigate.","triggerTextLength":2,"autocompleteInstructionsSelector":"#autocompleteInstructionsText","updateInputOnSelect":true,"loadingText":"Searching...","emptyText":"No Matches","successText":"Results:","defaultText":"Enter a search word","autosuggestionUnavailableInstructionText":"No suggestions available","disabled":false,"footerContent":[{"scripts":"\n\n(function(b){LITHIUM.Link=function(f){function g(a){var c=b(this),e=c.data(\"lia-action-token\");!0!==c.data(\"lia-ajax\")&&void 0!==e&&!1===a.isPropagationStopped()&&!1===a.isImmediatePropagationStopped()&&!1===a.isDefaultPrevented()&&(a.stop(),a=b(\"\\x3cform\\x3e\",{method:\"POST\",action:c.attr(\"href\"),enctype:\"multipart/form-data\"}),e=b(\"\\x3cinput\\x3e\",{type:\"hidden\",name:\"lia-action-token\",value:e}),a.append(e),b(document.body).append(a),a.submit(),d.trigger(\"click\"))}var d=b(document);void 0===d.data(\"lia-link-action-handler\")&&\n(d.data(\"lia-link-action-handler\",!0),d.on(\"click.link-action\",f.linkSelector,g),b.fn.on=b.wrap(b.fn.on,function(a){var c=a.apply(this,b.makeArray(arguments).slice(1));this.is(document)&&(d.off(\"click.link-action\",f.linkSelector,g),a.call(this,\"click.link-action\",f.linkSelector,g));return c}))}})(LITHIUM.jQuery);\nLITHIUM.Link({\n \"linkSelector\" : \"a.lia-link-ticket-post-action\"\n});LITHIUM.AjaxSupport.fromLink('#disableAutoComplete_3da54d72006187', 'disableAutoComplete', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 'SySUhf3E_V7V1a_lojPmYB7r5gI_DBzMgFMSHTezF5Y.', 'ajax');","content":"
Turn off suggestions<\/a>"}],"prefixTriggerTextLength":3},"inputSelector":"#messageSearchField_0","redirectToItemLink":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.searchformv32.messagesearchfield.messagesearchfield:autocomplete?t:ac=board-id/LSCommunityEvents&t:cp=search/contributions/page","resizeImageEvent":"LITHIUM:renderImages"}); LITHIUM.AutoComplete({"options":{"autosuggestionAvailableInstructionText":"Auto-suggestions available. Use Up and Down arrow keys to navigate.","triggerTextLength":2,"autocompleteInstructionsSelector":"#autocompleteInstructionsText_0","updateInputOnSelect":true,"loadingText":"Searching...","emptyText":"No Matches","successText":"Results:","defaultText":"Enter a search word","autosuggestionUnavailableInstructionText":"No suggestions available","disabled":false,"footerContent":[{"scripts":"\n\n(function(b){LITHIUM.Link=function(f){function g(a){var c=b(this),e=c.data(\"lia-action-token\");!0!==c.data(\"lia-ajax\")&&void 0!==e&&!1===a.isPropagationStopped()&&!1===a.isImmediatePropagationStopped()&&!1===a.isDefaultPrevented()&&(a.stop(),a=b(\"\\x3cform\\x3e\",{method:\"POST\",action:c.attr(\"href\"),enctype:\"multipart/form-data\"}),e=b(\"\\x3cinput\\x3e\",{type:\"hidden\",name:\"lia-action-token\",value:e}),a.append(e),b(document.body).append(a),a.submit(),d.trigger(\"click\"))}var d=b(document);void 0===d.data(\"lia-link-action-handler\")&&\n(d.data(\"lia-link-action-handler\",!0),d.on(\"click.link-action\",f.linkSelector,g),b.fn.on=b.wrap(b.fn.on,function(a){var c=a.apply(this,b.makeArray(arguments).slice(1));this.is(document)&&(d.off(\"click.link-action\",f.linkSelector,g),a.call(this,\"click.link-action\",f.linkSelector,g));return c}))}})(LITHIUM.jQuery);\nLITHIUM.Link({\n \"linkSelector\" : \"a.lia-link-ticket-post-action\"\n});LITHIUM.AjaxSupport.fromLink('#disableAutoComplete_3da54d7225f35d', 'disableAutoComplete', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 'zZiqy-4On6WdxMYgr3dgOnrMnAjsHCKRwnrJcJX3YCc.', 'ajax');","content":"
Turn off suggestions<\/a>"}],"prefixTriggerTextLength":3},"inputSelector":"#messageSearchField_1","redirectToItemLink":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.searchformv32.tkbmessagesearchfield.messagesearchfield:autocomplete?t:ac=board-id/LSCommunityEvents&t:cp=search/contributions/page","resizeImageEvent":"LITHIUM:renderImages"}); LITHIUM.AutoComplete({"options":{"autosuggestionAvailableInstructionText":"Auto-suggestions available. Use Up and Down arrow keys to navigate.","triggerTextLength":0,"autocompleteInstructionsSelector":"#autocompleteInstructionsText_1","updateInputOnSelect":true,"loadingText":"Searching for users...","emptyText":"No Matches","successText":"Users found:","defaultText":"Enter a user name or rank","autosuggestionUnavailableInstructionText":"No suggestions available","disabled":false,"footerContent":[{"scripts":"\n\n(function(b){LITHIUM.Link=function(f){function g(a){var c=b(this),e=c.data(\"lia-action-token\");!0!==c.data(\"lia-ajax\")&&void 0!==e&&!1===a.isPropagationStopped()&&!1===a.isImmediatePropagationStopped()&&!1===a.isDefaultPrevented()&&(a.stop(),a=b(\"\\x3cform\\x3e\",{method:\"POST\",action:c.attr(\"href\"),enctype:\"multipart/form-data\"}),e=b(\"\\x3cinput\\x3e\",{type:\"hidden\",name:\"lia-action-token\",value:e}),a.append(e),b(document.body).append(a),a.submit(),d.trigger(\"click\"))}var d=b(document);void 0===d.data(\"lia-link-action-handler\")&&\n(d.data(\"lia-link-action-handler\",!0),d.on(\"click.link-action\",f.linkSelector,g),b.fn.on=b.wrap(b.fn.on,function(a){var c=a.apply(this,b.makeArray(arguments).slice(1));this.is(document)&&(d.off(\"click.link-action\",f.linkSelector,g),a.call(this,\"click.link-action\",f.linkSelector,g));return c}))}})(LITHIUM.jQuery);\nLITHIUM.Link({\n \"linkSelector\" : \"a.lia-link-ticket-post-action\"\n});LITHIUM.AjaxSupport.fromLink('#disableAutoComplete_3da54d72437b13', 'disableAutoComplete', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 's1x-bbM_CYOdjvRx3309-Cs0xDJmB-L8CGp3xw0i2Vw.', 'ajax');","content":"
Turn off suggestions<\/a>"}],"prefixTriggerTextLength":0},"inputSelector":"#userSearchField","redirectToItemLink":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.searchformv32.usersearchfield.usersearchfield:autocomplete?t:ac=board-id/LSCommunityEvents&t:cp=search/contributions/page","resizeImageEvent":"LITHIUM:renderImages"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:userExistsQuery","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":"#userSearchField","action":"userExistsQuery","feedbackSelector":"#ajaxfeedback_0","url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.searchformv32.usersearchfield:userexistsquery?t:ac=board-id/LSCommunityEvents&t:cp=search/contributions/page","ajaxErrorEventName":"LITHIUM:ajaxError","token":"T88KzVF5rqcoKQuJv-oGtjPWeARnduWcT5-K0V4Wl5k."}); LITHIUM.AutoComplete({"options":{"autosuggestionAvailableInstructionText":"Auto-suggestions available. Use Up and Down arrow keys to navigate.","triggerTextLength":2,"autocompleteInstructionsSelector":"#autocompleteInstructionsText_2","updateInputOnSelect":true,"loadingText":"Searching...","emptyText":"No Matches","successText":"Results:","defaultText":"Enter a search word","autosuggestionUnavailableInstructionText":"No suggestions available","disabled":false,"footerContent":[{"scripts":"\n\n(function(b){LITHIUM.Link=function(f){function g(a){var c=b(this),e=c.data(\"lia-action-token\");!0!==c.data(\"lia-ajax\")&&void 0!==e&&!1===a.isPropagationStopped()&&!1===a.isImmediatePropagationStopped()&&!1===a.isDefaultPrevented()&&(a.stop(),a=b(\"\\x3cform\\x3e\",{method:\"POST\",action:c.attr(\"href\"),enctype:\"multipart/form-data\"}),e=b(\"\\x3cinput\\x3e\",{type:\"hidden\",name:\"lia-action-token\",value:e}),a.append(e),b(document.body).append(a),a.submit(),d.trigger(\"click\"))}var d=b(document);void 0===d.data(\"lia-link-action-handler\")&&\n(d.data(\"lia-link-action-handler\",!0),d.on(\"click.link-action\",f.linkSelector,g),b.fn.on=b.wrap(b.fn.on,function(a){var c=a.apply(this,b.makeArray(arguments).slice(1));this.is(document)&&(d.off(\"click.link-action\",f.linkSelector,g),a.call(this,\"click.link-action\",f.linkSelector,g));return c}))}})(LITHIUM.jQuery);\nLITHIUM.Link({\n \"linkSelector\" : \"a.lia-link-ticket-post-action\"\n});LITHIUM.AjaxSupport.fromLink('#disableAutoComplete_3da54d72623d56', 'disableAutoComplete', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 'dT7juKlvxHVKPrTAgrvAf7pkBH5mBOhn5_-FPdYLQOQ.', 'ajax');","content":"
Turn off suggestions<\/a>"}],"prefixTriggerTextLength":0},"inputSelector":"#noteSearchField_0","redirectToItemLink":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.searchformv32.notesearchfield.notesearchfield:autocomplete?t:ac=board-id/LSCommunityEvents&t:cp=search/contributions/page","resizeImageEvent":"LITHIUM:renderImages"}); LITHIUM.AutoComplete({"options":{"autosuggestionAvailableInstructionText":"Auto-suggestions available. Use Up and Down arrow keys to navigate.","triggerTextLength":2,"autocompleteInstructionsSelector":"#autocompleteInstructionsText_3","updateInputOnSelect":true,"loadingText":"Searching...","emptyText":"No Matches","successText":"Results:","defaultText":"Enter a search word","autosuggestionUnavailableInstructionText":"No suggestions available","disabled":false,"footerContent":[{"scripts":"\n\n(function(b){LITHIUM.Link=function(f){function g(a){var c=b(this),e=c.data(\"lia-action-token\");!0!==c.data(\"lia-ajax\")&&void 0!==e&&!1===a.isPropagationStopped()&&!1===a.isImmediatePropagationStopped()&&!1===a.isDefaultPrevented()&&(a.stop(),a=b(\"\\x3cform\\x3e\",{method:\"POST\",action:c.attr(\"href\"),enctype:\"multipart/form-data\"}),e=b(\"\\x3cinput\\x3e\",{type:\"hidden\",name:\"lia-action-token\",value:e}),a.append(e),b(document.body).append(a),a.submit(),d.trigger(\"click\"))}var d=b(document);void 0===d.data(\"lia-link-action-handler\")&&\n(d.data(\"lia-link-action-handler\",!0),d.on(\"click.link-action\",f.linkSelector,g),b.fn.on=b.wrap(b.fn.on,function(a){var c=a.apply(this,b.makeArray(arguments).slice(1));this.is(document)&&(d.off(\"click.link-action\",f.linkSelector,g),a.call(this,\"click.link-action\",f.linkSelector,g));return c}))}})(LITHIUM.jQuery);\nLITHIUM.Link({\n \"linkSelector\" : \"a.lia-link-ticket-post-action\"\n});LITHIUM.AjaxSupport.fromLink('#disableAutoComplete_3da54d727cb67d', 'disableAutoComplete', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, '0GaDbNse2ezyprZqjiYgStPmXpvcJx7s2Ne0_qAO_oo.', 'ajax');","content":"
Turn off suggestions<\/a>"}],"prefixTriggerTextLength":0},"inputSelector":"#productSearchField","redirectToItemLink":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.searchformv32.productsearchfield.productsearchfield:autocomplete?t:ac=board-id/LSCommunityEvents&t:cp=search/contributions/page","resizeImageEvent":"LITHIUM:renderImages"}); LITHIUM.AjaxSupport.fromLink('#enableAutoComplete', 'enableAutoComplete', '#ajaxfeedback_0', 'LITHIUM:ajaxError', {}, 'Ioz4ieyOUm95EpQfbwQCxYz1FYYMXqKkVrwYAw9hwTo.', 'ajax'); LITHIUM.Tooltip({"bodySelector":"body#lia-body","delay":30,"enableOnClickForTrigger":false,"predelay":10,"triggerSelector":"#link_1","tooltipContentSelector":"#link_2-tooltip-element .content","position":["bottom","left"],"tooltipElementSelector":"#link_2-tooltip-element","events":{"def":"focus mouseover keydown,blur mouseout keydown"},"hideOnLeave":true}); LITHIUM.HelpIcon({"selectors":{"helpIconSelector":".help-icon .lia-img-icon-help"}}); LITHIUM.SearchAutoCompleteToggle({"containerSelector":"#searchautocompletetoggle","enableAutoCompleteSelector":".search-autocomplete-toggle-link","enableAutocompleteSuccessEvent":"LITHIUM:ajaxSuccess:enableAutoComplete","disableAutoCompleteSelector":".lia-autocomplete-toggle-off","disableAutocompleteSuccessEvent":"LITHIUM:ajaxSuccess:disableAutoComplete","autoCompleteSelector":".lia-autocomplete-input"}); LITHIUM.SearchForm({"asSearchActionIdSelector":".lia-as-search-action-id","useAutoComplete":true,"selectSelector":".lia-search-form-granularity","useClearSearchButton":false,"buttonSelector":".lia-button-searchForm-action","asSearchActionIdParamName":"as-search-action-id","formSelector":"#lia-searchformV32","nodesModel":{"tkb|tkb":{"title":"Knowledge base","inputSelector":".lia-search-input-tkb-article"},"user|user":{"title":"Users","inputSelector":".lia-search-input-user"},"CommunityEventsandWebinars|category":{"title":"Search Category: Community Events","inputSelector":".lia-search-input-message"},"bvyfv65494|community":{"title":"Search Community: Community Events","inputSelector":".lia-search-input-message"},"LSCommunityEvents|occasion-board":{"title":"Search Events: Community Events","inputSelector":".lia-search-input-message"}},"asSearchActionIdHeaderKey":"X-LI-AS-Search-Action-Id","inputSelector":"#messageSearchField_0:not(.lia-js-hidden)","clearSearchButtonSelector":null}); LITHIUM.DropDownMenu({"userMessagesFeedOptionsClass":"div.user-messages-feed-options-menu a.lia-js-menu-opener","menuOffsetContainer":".lia-menu-offset-container","hoverLeaveEvent":"LITHIUM:hoverLeave","mouseoverElementSelector":".lia-js-mouseover-menu","userMessagesFeedOptionsAriaLabel":"Show contributions of the user, selected option is Options. You may choose another option from the dropdown menu.","disabledLink":"lia-link-disabled","menuOpenCssClass":"dropdownHover","menuElementSelector":".lia-menu-navigation-wrapper","dialogSelector":".lia-panel-dialog-trigger","messageOptions":"lia-component-message-view-widget-action-menu","menuBarComponent":"lia-component-menu-bar","closeMenuEvent":"LITHIUM:closeMenu","menuOpenedEvent":"LITHIUM:menuOpened","pageOptions":"lia-component-community-widget-page-options","clickElementSelector":".lia-js-click-menu","menuItemsSelector":".lia-menu-dropdown-items","menuClosedEvent":"LITHIUM:menuClosed"}); LITHIUM.DropDownMenuVisibilityHandler({"selectors":{"menuSelector":"#actionMenuDropDown","menuItemsSelector":".lia-menu-dropdown-items"}}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#pageInformation","feedbackSelector":".InfoMessage"}); LITHIUM.searchToggleFieldFilter('#searchtogglefieldfilter', {"filter":"includeUpcoming","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime","include_upcoming":"true"}, 'LITHIUM:searchToggleRequestParameters'); LITHIUM.searchToggleFieldFilter('#searchtogglefieldfilter_0', {"filter":"includeOngoing","include_ongoing":"true","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime"}, 'LITHIUM:searchToggleRequestParameters'); LITHIUM.searchToggleFieldFilter('#searchtogglefieldfilter_1', {"filter":"includeOngoing,includeUpcoming,includePast","include_past":"true","include_ongoing":"true","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime","include_upcoming":"true"}, 'LITHIUM:searchToggleRequestParameters'); LITHIUM.FilterCollapsiblePanel({"isExpanded":true,"toggleCssSelector":"#filtercollapsiblepanel .lia-form-fieldset-toggle","isDropDown":true,"useLazyLoad":false,"dropdownOnToggleEvent":"LITHIUM:dropdown:onToggle","collapsePanelRenderEvent":"LITHIUM:collapsePanelRender","elementSelector":"#filtercollapsiblepanel","searchToggleRequestParametersEvent":"LITHIUM:searchToggleRequestParameters","toggleQueryParameter":"occasionStatusFilterContainerOpen","fieldSetSelector":"#filtercollapsiblepanel .lia-form-fieldset-content-wrapper"}); LITHIUM.FilterCollapsiblePanel({"isExpanded":true,"toggleCssSelector":"#filtercollapsiblepanel_0 .lia-form-fieldset-toggle","isDropDown":true,"useLazyLoad":true,"dropdownOnToggleEvent":"LITHIUM:dropdown:onToggle","collapsePanelRenderEvent":"LITHIUM:collapsePanelRender","elementSelector":"#filtercollapsiblepanel_0","searchToggleRequestParametersEvent":"LITHIUM:searchToggleRequestParameters","toggleQueryParameter":"labelsFilterContainerOpen","fieldSetSelector":"#filtercollapsiblepanel_0 .lia-form-fieldset-content-wrapper"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:collapsePanelRender","parameters":{"componentParams":"{\n \"isDropDown\" : {\n \"value\" : \"true\",\n \"class\" : \"java.lang.Boolean\"\n },\n \"ajaxLazyLoadContextParam\" : {\n \"value\" : \"{\\n \\\"filter\\\" : \\\"includeOngoing,includeUpcoming\\\",\\n \\\"include_ongoing\\\" : \\\"true\\\",\\n \\\"depth\\\" : \\\"0\\\",\\n \\\"byPassHideMessagesFromListFilter\\\" : \\\"true\\\",\\n \\\"sort_by\\\" : \\\"occasionStartTime\\\",\\n \\\"include_upcoming\\\" : \\\"true\\\"\\n}\",\n \"class\" : \"org.apache.tapestry5.json.JSONObject\"\n }\n}","componentId":"occasions.widget.labels-filter","clientId":"filtercollapsiblepanel_0"}},"tokenId":"ajax","elementSelector":"#filtercollapsiblepanel_0","action":"collapsePanelRender","feedbackSelector":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.occasionlabelsfilter.filtercollapsiblepanel:collapsepanelrender?t:ac=board-id/LSCommunityEvents&t:cp=occasions/contributions/contributionpage","ajaxErrorEventName":"LITHIUM:ajaxError","token":"sEqV1SIC6298ECcp7baF61-Oc8LC1_Qyk-pxodGpDzI."}); LITHIUM.InformationBox({"updateFeedbackEvent":"LITHIUM:updateAjaxFeedback","componentSelector":"#informationbox_3","feedbackSelector":".InfoMessage"}); LITHIUM.CustomEvent('.lia-custom-event', 'click'); LITHIUM.AjaxSupport.fromLink('#link_15', 'rsvp-respond-yes-event', 'false', 'LITHIUM:ajaxError', {}, 'Zc98eLVhzj-9y57UwQw1LKGxAN6ymGmS5J8HpCtz1e4.', 'ajax'); LITHIUM.OccasionRsvpResponse({"selectors":{"rsvpButton":".lia-attendance","notGoing":".lia-occasion-rsvp-notgoing","going":".lia-occasion-rsvp-going","mayBe":".lia-occasion-rsvp-maybe","rsvpList":".lia-occasion-rsvp-response-list","rsvpListTabs":".lia-rsvp-tab","rsvpTabLink":".lia-rsvp-tab div a"},"misc":{"hiddenCssClass":"lia-js-hidden","response":-1}}); LITHIUM.AjaxSupport.fromLink('#link_19', 'rsvp-respond-yes-event', 'false', 'LITHIUM:ajaxError', {}, '6Dj7uoPPaHJqJ1KE7VgwN9P_rizjN8a6AutH-JB8q-8.', 'ajax'); LITHIUM.OccasionRsvpResponse({"selectors":{"rsvpButton":".lia-attendance","notGoing":".lia-occasion-rsvp-notgoing","going":".lia-occasion-rsvp-going","mayBe":".lia-occasion-rsvp-maybe","rsvpList":".lia-occasion-rsvp-response-list","rsvpListTabs":".lia-rsvp-tab","rsvpTabLink":".lia-rsvp-tab div a"},"misc":{"hiddenCssClass":"lia-js-hidden","response":-1}}); LITHIUM.Text.set({"ajax.rerender-occasions.loader.feedback.title":"Loading..."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"cacheRequest":false,"runScripts":true,"useLoader":true,"blockUI":"","event":"LITHIUM:rerender-occasions"},"tokenId":"ajax","elementSelector":"#occasionfilters","action":"rerender-occasions","feedbackSelector":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.occasionfilters:rerender-occasions?t:ac=board-id/LSCommunityEvents&t:state:client=gdetcfGHU06ssUzQt+7xscgTKco=:H4sIAAAAAAAAAD2QLU8DQRCG5woNEBSYCgyCILcKhaIkJE0v0KQON7c3vS6Z211m947WEBySP8BP4K8gK9BoUKgqtuHDvW8yed4n8/IB3btNAMiCwMhJpdCjnpGK6ClEWZwoYyOJRVaBpDWagjpnQzaOSYIJMaULQ1xOohOsaFh7PhrR4u2r97T1vnrswEYOu9rV3tl0Oiwj7Oc32GKf0Vb9SRRjq9McdqZryCXWdAv3kOWw7RPtv899hGOnNQbj7NRwUgpJCEXPflohhKWWpi4i9OqGo/FMORbE4axFw1gwRTj4Q4T+1W8aOJRynLbSA/bWYmotpgbOMaF9PZSH5fPqswPZNXRb5IbmHr4BRe6AHTYBAAA=","ajaxErrorEventName":"LITHIUM:ajaxError","token":"P3Y4p7ZVkvAApYfpS0SWzzJQAh2BG4IdmJiol3Mc0tg."}); LITHIUM.OccasionFilters({"selectors":{"element":"#occasionfilters"},"events":{"changePageEvent":"LITHIUM:changePage","searchToggleRequestParametersEvent":"LITHIUM:searchToggleRequestParameters","rerenderOccasions":"LITHIUM:rerender-occasions"},"misc":{"toggleState":{},"stateNotInHistory":{},"currentState":{"filter":"includeOngoing,includeUpcoming","include_ongoing":"true","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime","include_upcoming":"true"}}}); LITHIUM.PartialRenderProxy({"limuirsComponentRenderedEvent":"LITHIUM:limuirsComponentRendered","relayEvent":"LITHIUM:partialRenderProxyRelay","listenerEvent":"LITHIUM:partialRenderProxy"}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:partialRenderProxyRelay","parameters":{"javascript.ignore_combine_and_minify":"true"}},"tokenId":"ajax","elementSelector":document,"action":"partialRenderProxyRelay","feedbackSelector":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage.liabase.basebody.partialrenderproxy:partialrenderproxyrelay?t:ac=board-id/LSCommunityEvents&t:state:client=gdetcfGHU06ssUzQt+7xscgTKco=:H4sIAAAAAAAAAD2QLU8DQRCG5woNEBSYCgyCILcKhaIkJE0v0KQON7c3vS6Z211m947WEBySP8BP4K8gK9BoUKgqtuHDvW8yed4n8/IB3btNAMiCwMhJpdCjnpGK6ClEWZwoYyOJRVaBpDWagjpnQzaOSYIJMaULQ1xOohOsaFh7PhrR4u2r97T1vnrswEYOu9rV3tl0Oiwj7Oc32GKf0Vb9SRRjq9McdqZryCXWdAv3kOWw7RPtv899hGOnNQbj7NRwUgpJCEXPflohhKWWpi4i9OqGo/FMORbE4axFw1gwRTj4Q4T+1W8aOJRynLbSA/bWYmotpgbOMaF9PZSH5fPqswPZNXRb5IbmHr4BRe6AHTYBAAA=","ajaxErrorEventName":"LITHIUM:ajaxError","token":"nMvnIYxY-OI59klcRvySMrsNSqBdMmDlxfoRjNzcMBw."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:change-view","parameters":{"occasions-view":true}},"tokenId":"ajax","elementSelector":"#listView","action":"change-view","feedbackSelector":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage:change-view?t:ac=board-id/LSCommunityEvents&t:state:client=gdetcfGHU06ssUzQt+7xscgTKco=:H4sIAAAAAAAAAD2QLU8DQRCG5woNEBSYCgyCILcKhaIkJE0v0KQON7c3vS6Z211m947WEBySP8BP4K8gK9BoUKgqtuHDvW8yed4n8/IB3btNAMiCwMhJpdCjnpGK6ClEWZwoYyOJRVaBpDWagjpnQzaOSYIJMaULQ1xOohOsaFh7PhrR4u2r97T1vnrswEYOu9rV3tl0Oiwj7Oc32GKf0Vb9SRRjq9McdqZryCXWdAv3kOWw7RPtv899hGOnNQbj7NRwUgpJCEXPflohhKWWpi4i9OqGo/FMORbE4axFw1gwRTj4Q4T+1W8aOJRynLbSA/bWYmotpgbOMaF9PZSH5fPqswPZNXRb5IbmHr4BRe6AHTYBAAA=","ajaxErrorEventName":"LITHIUM:ajaxError","token":"1I5UILXOdfgy-Kp5NYPOOaGh90d76Tw2fYP91cSKHzQ."}); LITHIUM.AjaxSupport({"ajaxOptionsParam":{"event":"LITHIUM:change-view","parameters":{"occasions-view":false}},"tokenId":"ajax","elementSelector":"#calendarView","action":"change-view","feedbackSelector":false,"url":"https://community.lansweeper.com/t5/occasions/occasionboardpage:change-view?t:ac=board-id/LSCommunityEvents&t:state:client=gdetcfGHU06ssUzQt+7xscgTKco=:H4sIAAAAAAAAAD2QLU8DQRCG5woNEBSYCgyCILcKhaIkJE0v0KQON7c3vS6Z211m947WEBySP8BP4K8gK9BoUKgqtuHDvW8yed4n8/IB3btNAMiCwMhJpdCjnpGK6ClEWZwoYyOJRVaBpDWagjpnQzaOSYIJMaULQ1xOohOsaFh7PhrR4u2r97T1vnrswEYOu9rV3tl0Oiwj7Oc32GKf0Vb9SRRjq9McdqZryCXWdAv3kOWw7RPtv899hGOnNQbj7NRwUgpJCEXPflohhKWWpi4i9OqGo/FMORbE4axFw1gwRTj4Q4T+1W8aOJRynLbSA/bWYmotpgbOMaF9PZSH5fPqswPZNXRb5IbmHr4BRe6AHTYBAAA=","ajaxErrorEventName":"LITHIUM:ajaxError","token":"2fU9b2fA4M_EszUoWmKr3212HoTktPxRZcpue8bM63w."}); LITHIUM.OccasionBoardPage({"selectors":{"calendarViewSelector":"#calendarView","listViewSelector":"#listView"},"events":{"updateViewEvent":"LITHIUM:change-view"},"misc":{"activeButtonCss":"lia-active-button"}}); LITHIUM.Auth.API_URL = "/t5/util/authcheckpage"; LITHIUM.Auth.LOGIN_URL_TMPL = "/plugins/common/feature/oidcss/sso_login_redirect/providerid/lansweeper?referer=https%3A%2F%2FREPLACE_TEXT"; LITHIUM.Auth.KEEP_ALIVE_URL = "/t5/status/blankpage?keepalive"; LITHIUM.Auth.KEEP_ALIVE_TIME = 300000; LITHIUM.Auth.CHECK_SESSION_TOKEN = 'rrbmJOaLnIhrC_DXmRR7vMtCv4FrnOwFjq-wTPXjrwg.'; LITHIUM.AjaxSupport.useTickets = false; LITHIUM.Cache.CustomEvent.set([{"elementId":"link_8","stopTriggerEvent":false,"fireEvent":"LITHIUM:searchToggleRequestParameters","triggerEvent":"click","eventContext":{"state":{"filter":"includeOngoing","include_ongoing":"true","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime"}}},{"elementId":"link_9","stopTriggerEvent":false,"fireEvent":"LITHIUM:searchToggleRequestParameters","triggerEvent":"click","eventContext":{"state":{"filter":"includeUpcoming","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime","include_upcoming":"true"}}},{"elementId":"link_10","stopTriggerEvent":false,"fireEvent":"LITHIUM:searchToggleRequestParameters","triggerEvent":"click","eventContext":{"state":{"filter":"includeOngoing,includeUpcoming","include_ongoing":"true","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime","include_upcoming":"true"}}},{"elementId":"link_11","stopTriggerEvent":false,"fireEvent":"LITHIUM:searchToggleRequestParameters","triggerEvent":"click","eventContext":{"state":{"filter":"includeOngoing","include_ongoing":"true","depth":"0","byPassHideMessagesFromListFilter":"true","sort_by":"occasionStartTime"}}},{"elementId":"link_13","stopTriggerEvent":false,"fireEvent":"LITHIUM:selectImage","triggerEvent":"click","eventContext":{"imageId":"5178iA583C5A10ACDF3A3","imageUid":5178,"type":"gallery","title":"Community events 1008X350.png","thumbUrl":"/t5/image/serverpage/image-id/5178iA583C5A10ACDF3A3/image-size/thumb/crop-image/true?v=v2&px=150"}},{"elementId":"link_17","stopTriggerEvent":false,"fireEvent":"LITHIUM:selectImage","triggerEvent":"click","eventContext":{"imageId":"4154i2AF04347471335AE","imageUid":4154,"type":"gallery","title":"Copy of LS-Community-Highlights-Banner.pdf.jpg","thumbUrl":"/t5/image/serverpage/image-id/4154i2AF04347471335AE/image-size/thumb/crop-image/true?v=v2&px=150"}}]); LITHIUM.Loader.runJsAttached(); }); // -->