Back to articles

We visited the South Summit in Madrid

read

26.06.2022

This year we visited the South Summit in Madrid for the first time. It was an interesting and exciting 3 day event.

Lineup’s delegate was Thierry Eugen. He spent time in the company of exciting speakers and representatives of big business from all over the world. The main focus of the event is technology and innovation.

We met with many entrepreneurs and investors to tell them exactly how Lineup can help them in their business.

There was also a lot of talk about upcoming trends and challenges for the global economy and industries.

We hope that the obtained contacts and new acquaintances will be useful and promising in the future.

Looking forward to the new South Summit in 2023!

Share:

Other Articles

Last week the LineUp team discovered a new direction. We traveled to Saudi Arabia where we had several face-to-face meetings. Our clients in Jeddah welcomed us with hospitality.
Last week the LineUp team discovered a new direction. We traveled to Saudi Arabia where we had several face-to-face meetings. Our clients in Jeddah welcomed us with hospitality.
Last week the LineUp team discovered a new direction. We traveled to Saudi Arabia where we had several face-to-face meetings. Our clients in Jeddah welcomed us with hospitality.
Last week the LineUp team discovered a new direction. We traveled to Saudi Arabia where we had several face-to-face meetings. Our clients in Jeddah welcomed us with hospitality.

Transform

your

business

with software

development

Diverse and rich experience in strengthening and developing the structure entails the process of introducing and modernizing progressive development
Learn more
//Hide add file button when 10 files have attached jQuery(document).ready(function ($) { var target = $('#brxe-igpfdf .form-group.file'); if (target.length > 0) { function checkAndToggleButton() { var count = target.find('.file-result.show').length; if (count >= 10) { $('.fabtn').fadeOut(); $('.form-group.file .flimit').fadeIn(); } else { $('.form-group.file .flimit').fadeOut(); } if (count >= 1 && count <= 9) { $('.fabtn').fadeIn(); } if (count >= 1) { $('.form-group.file label').fadeOut(); $('.form-group.file').addClass('nopadding'); } else { $('.form-group.file label').fadeIn(); $('.form-group.file').removeClass('nopadding'); } } var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.type === 'childList') { checkAndToggleButton(); } }); }); var config = { childList: true, subtree: true }; observer.observe(target[0], config); //10 files limit message $('.form-group.file').append(''); } }); //Form files validation jQuery(document).ready(function ($) { $('#brxe-igpfdf .form-group.file input[type="file"]').on('change', function(e) { var files = e.target.files; var validTypes = ['image/jpeg', 'image/gif', 'image/png', 'application/pdf', 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.ms-excel', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/vnd.ms-powerpoint', 'application/vnd.openxmlformats-officedocument.presentationml.presentation']; var file = this.files[0]; for (var i = 0; i < files.length; i++) { if (validTypes.indexOf(files[i].type) === -1) { alert('Invalid file type: ' + files[i].name); $('.form-group.file .file-result.show .bricks-button.remove').first().click(); return; } } //File size limit alert var file = this.files[0]; if (file) { var fileSize = file.size / 1024 / 1024; if (fileSize > 1.5) { alert('The file size limit is 1.5 MB. Please select a smaller file size.'); $('.form-group.file .file-result.show .bricks-button.remove').first().click(); } } }); });