SharePoint - Administration (2023)

Krefeld

SharePoint - Administration (1)

22.06. - 23.06.2023

  • Live Online

    SharePoint - Administration (2)

    20.07. - 21.07.2023

  • Krefeld

    SharePoint - Administration (3)

    20.07. - 21.07.2023

  • Live Online

    SharePoint - Administration (4)

    24.08. - 25.08.2023

  • Krefeld

    SharePoint - Administration (5)

    24.08. - 25.08.2023

  • Live Online

    SharePoint - Administration (6)

    14.09. - 15.09.2023

  • SharePoint - Administration (7)

    Details zu

    SharePoint - Administration (8)

    Lade dir ein PDF mit allen Infos zur Schulung herunter

    Unterrichtszeiten

    Schulungsort

    Live Online Schulung

    Technische Voraussetzungen

    Hinweise zur Anreise

    Hinweise zum Schulungsort

    Leistungspaket

    Delivery Partner

    SharePoint - Administration (9)

    Schulung

    Preis zzgl. MwSt.

    Alle Orte und Termine

    SharePoint - Administration (11)

    SharePoint - Administration (12) SharePoint - Administration (13) SharePoint - Administration (14) SharePoint - Administration (15) SharePoint - Administration (16)

    4.9

    (146)

    SharePoint – Administration

    SharePoint effizient im Unternehmen einsetzen und konfigurieren

    Termine filtern

    SharePoint - Administration (17)

    SharePoint - Administration (18)

    Datum

    Merkmale

    Ort

    Preis

    `; let popup2 = new mapboxgl.Popup({ closeOnClick: true, offset: popupOffsets, className: 'mapbox-popup' }) .setHTML(popupHTML) var marker = new mapboxgl.Marker({ draggable: false, color: '#cccccc', }) .setLngLat(mapCoordinates) .setPopup(popup2) .addTo(trainingsMap); // Create DIv with name of city const cityDiv = document.createElement('div'); cityDiv.classList.add('marker-city'); cityDiv.innerHTML = 'Krefeld'; // Add city div to marker marker.getElement().appendChild(cityDiv); const markerDiv = marker.getElement(); markerDiv.addEventListener('mouseenter', () => { // add hover class to this element markerDiv.classList.add('hover'); // SHow city name cityDiv.classList.add('show'); }) markerDiv.addEventListener('mouseleave', () => { // Hide city name cityDiv.classList.remove('show'); markerDiv.classList.remove('hover'); }) popup2.on('open', () => { if (document.querySelector('#loading') != null) { document.querySelector('#loading').style.display = 'block'; } // Get the venue ID from the popup with the venueID attribute let venueID = document.querySelector('#popup2').getAttribute('data-venueid'); // Click on single-venue in venue-container jQuery('.venue-container').find('.single-venue[data-venueid="' + venueID + '"]').click(); jQuery('#sidebarfilter').click(); // Get dates for this venue via AJAX get_filtered_map_events(11667, 22405).done(function(result) { let nextDates = JSON.parse(result) || []; let hasDFG = false; // Remove all existing buttons if (document.querySelector('.singledate') != null) { document.querySelectorAll('.singledate').forEach(e => e.remove()); } // Add first Date as button let dateHeadline = "Nächster Termin"; let dfg = "Durchführungsgarantie"; let fullyBooked = "Ausgebucht"; let nextGuaranteDate = "Nächster Garantie-Termin"; let nextDate = "Nachfolgender Termin"; if (lang != 'de') { dateHeadline = "Next date"; dfg = "Guaranteed date"; fullyBooked = "Fully booked"; nextGuaranteDate = "Next guaranteed date"; nextDate = "Next date"; }; if (nextDates[0]["dfg"] > 0) { dateHeadline = dfg; } if (nextDates[0]["dfg"] == 3) { dateHeadline = fullyBooked; } const firstButton = createButtonHTML(nextDates[0]["venue"], dateHeadline, nextDates[0]["start"]); document.querySelector('#popup2').insertAdjacentHTML('beforeend', firstButton); // iterate through all dates to find a date with DFG nextDates.every(function(date, index) { // Skip first entry if (index == 0) { return true; } if (date["dfg"] == 3) { return true; } // Show next DFG Date if (date["dfg"] > 0) { // Add DFG Date as Button const secondButton = createButtonHTML(date["venue"], nextGuaranteDate, date["start"]); document.querySelector('#popup2').insertAdjacentHTML('beforeend', secondButton); hasDFG = true; return false; } }); // Show second Date if no DFG Date was found if (!hasDFG) { const secondButton = createButtonHTML(nextDates[1]["venue"], nextDate, nextDates[1]["start"]); document.querySelector('#popup2').insertAdjacentHTML('beforeend', secondButton); } // Third Date should be Live Online get_filtered_map_events(11667, 22410).done(function(result) { let nextDates = JSON.parse(result) || []; // test if nexDates is not empty if (nextDates.length > 0) { // SHow first Live online Training let dateHeadline = "Nächster Termin"; let dfg = "Durchführungsgarantie"; let fullyBooked = "Ausgebucht"; let nextGuaranteDate = "Nächster Garantie-Termin"; let nextDate = "Nachfolgender Termin"; if (lang != 'de') { dateHeadline = "Next date"; dfg = "Guaranteed date"; fullyBooked = "Fully booked"; nextGuaranteDate = "Next guaranteed date"; nextDate = "Next date"; }; if (nextDates[0]["dfg"] > 0) { dateHeadline = dfg; } if (nextDates[0]["dfg"] == 3) { dateHeadline = fullyBooked; } const thirdButton = createButtonHTML(nextDates[0]["venue"], dateHeadline, nextDates[0]["start"], true); document.querySelector('#popup2').insertAdjacentHTML('beforeend', thirdButton); } // Remove div with loading text if (document.querySelector('#loading') != null) { document.querySelector('#loading').style.display = 'none'; } }) }); }); popup2.on('close', () => { // Remove Filters in Sidebar jQuery('#all-locations').click(); jQuery('#all-locations').click(); jQuery('#sidebarfilter').click(); if (document.querySelector('#loading') != null) { document.querySelector('#loading').style.display = 'block'; } }); } }); }); // Function to create button html function createButtonHTML(venue, dateHeadline, date_start, isLiveOnline = false, length = 0) { let lang = document.querySelector('html').getAttribute('lang'); if (lang == 'de-DE') { lang = 'de'; } else { lang = 'en'; }; let bookNow = "anmelden"; if (lang != 'de') { bookNow = "book now"; }; // Convert date to dd.mm.yyyy let newDate = new Date(date_start); let headline = ''; let fullyBooked = ''; if (dateHeadline == "Ausgebucht") { fullyBooked = "btn-disabled-v2" } let startdate = newDate.toLocaleDateString('de-DE', { day: '2-digit', month: '2-digit', year: 'numeric' }); if (isLiveOnline) { headline = `

    Live Online

    `; } const popupHTML = `

    ` + headline + `

    ` + dateHeadline + `

    ` + startdate + `

    `; // end of popupHTML return popupHTML; }

    25.05. - 26.05.23

    Dauer: 2 Tage

    Krefeld

    1.190 €

    SharePoint - Administration (21)

    Unterrichtszeiten

    09:00 – 16:00 Uhr


    Schulungsort

    Europark Fichtenhain A 15

    47807Krefeld

    Deutschland

    Live Online Schulung

    Technische Voraussetzungen

    Hinweise zur Anreise

    Hinweise zum Schulungsort

    Leistungspaket

    Delivery Partner

    SharePoint - Administration (22)

  • 22.06. - 23.06.23

    Dauer: 2 Tage

    Live Online

    1.190 €

    SharePoint - Administration (23)

    Schulungsort

    Live Online Schulung

    Technische Voraussetzungen

    Hinweise zur Anreise

    Hinweise zum Schulungsort

    Leistungspaket

    Delivery Partner

    SharePoint - Administration (24)

  • `; let popup4 = new mapboxgl.Popup({ closeOnClick: true, offset: popupOffsets, className: 'mapbox-popup' }) .setHTML(popupHTML) var marker = new mapboxgl.Marker({ draggable: false, color: '#cccccc', }) .setLngLat(mapCoordinates) .setPopup(popup4) .addTo(trainingsMap); // Create DIv with name of city const cityDiv = document.createElement('div'); cityDiv.classList.add('marker-city'); cityDiv.innerHTML = 'Krefeld'; // Add city div to marker marker.getElement().appendChild(cityDiv); const markerDiv = marker.getElement(); markerDiv.addEventListener('mouseenter', () => { // add hover class to this element markerDiv.classList.add('hover'); // SHow city name cityDiv.classList.add('show'); }) markerDiv.addEventListener('mouseleave', () => { // Hide city name cityDiv.classList.remove('show'); markerDiv.classList.remove('hover'); }) popup4.on('open', () => { if (document.querySelector('#loading') != null) { document.querySelector('#loading').style.display = 'block'; } // Get the venue ID from the popup with the venueID attribute let venueID = document.querySelector('#popup4').getAttribute('data-venueid'); // Click on single-venue in venue-container jQuery('.venue-container').find('.single-venue[data-venueid="' + venueID + '"]').click(); jQuery('#sidebarfilter').click(); // Get dates for this venue via AJAX get_filtered_map_events(11667, 22405).done(function(result) { let nextDates = JSON.parse(result) || []; let hasDFG = false; // Remove all existing buttons if (document.querySelector('.singledate') != null) { document.querySelectorAll('.singledate').forEach(e => e.remove()); } // Add first Date as button let dateHeadline = "Nächster Termin"; let dfg = "Durchführungsgarantie"; let fullyBooked = "Ausgebucht"; let nextGuaranteDate = "Nächster Garantie-Termin"; let nextDate = "Nachfolgender Termin"; if (lang != 'de') { dateHeadline = "Next date"; dfg = "Guaranteed date"; fullyBooked = "Fully booked"; nextGuaranteDate = "Next guaranteed date"; nextDate = "Next date"; }; if (nextDates[0]["dfg"] > 0) { dateHeadline = dfg; } if (nextDates[0]["dfg"] == 3) { dateHeadline = fullyBooked; } const firstButton = createButtonHTML(nextDates[0]["venue"], dateHeadline, nextDates[0]["start"]); document.querySelector('#popup4').insertAdjacentHTML('beforeend', firstButton); // iterate through all dates to find a date with DFG nextDates.every(function(date, index) { // Skip first entry if (index == 0) { return true; } if (date["dfg"] == 3) { return true; } // Show next DFG Date if (date["dfg"] > 0) { // Add DFG Date as Button const secondButton = createButtonHTML(date["venue"], nextGuaranteDate, date["start"]); document.querySelector('#popup4').insertAdjacentHTML('beforeend', secondButton); hasDFG = true; return false; } }); // Show second Date if no DFG Date was found if (!hasDFG) { const secondButton = createButtonHTML(nextDates[1]["venue"], nextDate, nextDates[1]["start"]); document.querySelector('#popup4').insertAdjacentHTML('beforeend', secondButton); } // Third Date should be Live Online get_filtered_map_events(11667, 22410).done(function(result) { let nextDates = JSON.parse(result) || []; // test if nexDates is not empty if (nextDates.length > 0) { // SHow first Live online Training let dateHeadline = "Nächster Termin"; let dfg = "Durchführungsgarantie"; let fullyBooked = "Ausgebucht"; let nextGuaranteDate = "Nächster Garantie-Termin"; let nextDate = "Nachfolgender Termin"; if (lang != 'de') { dateHeadline = "Next date"; dfg = "Guaranteed date"; fullyBooked = "Fully booked"; nextGuaranteDate = "Next guaranteed date"; nextDate = "Next date"; }; if (nextDates[0]["dfg"] > 0) { dateHeadline = dfg; } if (nextDates[0]["dfg"] == 3) { dateHeadline = fullyBooked; } const thirdButton = createButtonHTML(nextDates[0]["venue"], dateHeadline, nextDates[0]["start"], true); document.querySelector('#popup4').insertAdjacentHTML('beforeend', thirdButton); } // Remove div with loading text if (document.querySelector('#loading') != null) { document.querySelector('#loading').style.display = 'none'; } }) }); }); popup4.on('close', () => { // Remove Filters in Sidebar jQuery('#all-locations').click(); jQuery('#all-locations').click(); jQuery('#sidebarfilter').click(); if (document.querySelector('#loading') != null) { document.querySelector('#loading').style.display = 'block'; } }); } }); }); // Function to create button html function createButtonHTML(venue, dateHeadline, date_start, isLiveOnline = false, length = 0) { let lang = document.querySelector('html').getAttribute('lang'); if (lang == 'de-DE') { lang = 'de'; } else { lang = 'en'; }; let bookNow = "anmelden"; if (lang != 'de') { bookNow = "book now"; }; // Convert date to dd.mm.yyyy let newDate = new Date(date_start); let headline = ''; let fullyBooked = ''; if (dateHeadline == "Ausgebucht") { fullyBooked = "btn-disabled-v2" } let startdate = newDate.toLocaleDateString('de-DE', { day: '2-digit', month: '2-digit', year: 'numeric' }); if (isLiveOnline) { headline = `

    Live Online

    `; } const popupHTML = `

    ` + headline + `

    ` + dateHeadline + `

    ` + startdate + `

    `; // end of popupHTML return popupHTML; }

    22.06. - 23.06.23

    Dauer: 2 Tage

    Krefeld

    1.190 €

    SharePoint - Administration (25)

    Unterrichtszeiten

    09:00 – 16:00 Uhr


    Schulungsort

    Europark Fichtenhain A 15

    47807Krefeld

    Deutschland

    Live Online Schulung

    Technische Voraussetzungen

    Hinweise zur Anreise

    Hinweise zum Schulungsort

    Leistungspaket

    Delivery Partner

    SharePoint - Administration (26)

    Top Articles
    100 + YouTube Video Ideas For New Channels - Budget Equestrian
    65 YouTube video ideas: The ultimate list | Biteable
    Biochemistry (BSC HONS) C700 | Courses | Queen's University Belfast
    3.0 Research methodology
    Tuition Costs & Financial Aid | Admissions
    Formic and acetic acid: Valence threshold photoelectron and photoionisation total ion yield studies
    28 Which Compound Is An Electrolyte? (1) CCl4 (3) C6H12O 6 (2) CH3OH (4) Ca(OH)2
    Latest Posts
    Addo Elephant Park Südafrika: Unsere Erfahrung mit Tipps
    What is JD Edwards Software and What is It Used For? | Corning Data
    Die 15 besten Sehenswürdigkeiten in Berlin
    Er Will Immer Fotos Von Mir
    ≫ 13 grandes recorridos a pie en Berlín (actualizado en 2023)
    Article information

    Author: Rev. Porsche Oberbrunner

    Last Updated: 17/03/2023

    Views: 6425

    Rating: 4.2 / 5 (73 voted)

    Reviews: 80% of readers found this page helpful

    Author information

    Name: Rev. Porsche Oberbrunner

    Birthday: 1994-06-25

    Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

    Phone: +128413562823324

    Job: IT Strategist

    Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

    Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.