' + '
' + '
' + '
' + '
' + '
' + '
', titleSrc: function (item) { return item.el.attr('title'); } }, gallery: { enabled: true }, delegate: '.int-el-product-photo-browser-item', callbacks: { open: function () { var $iframe = this.content.find('iframe'); if ($iframe.attr('src') === '') { var src = $iframe.attr('data-src'); $iframe.attr('src', src); } /* Tylko, jeżeli jest powyżej 1 elementu w paginacji */ if (this.items.length > 1) { /* Pobranie uchwytu na pager, którego html zostanie przeniesiony do mfp */ var $mfpPagerContainer = $(this.ev[0]) .closest('.int-el-product-photo-browser') .find('.mfp-pager-container'); if ($mfpPagerContainer.length === 1) { /* Utworzenie docelowego elementu pagera */ var $mfpPager = $('
'); $mfpPager.append($mfpPagerContainer.html()); /* Wstawienie pagera go do docelowego miejsca mfp.*/ $(this.contentContainer).append($mfpPager); markMfpPagerItemActive($mfpPager, this.index); mfpPagerItemBindEvents($mfpPager); } } }, change: function () { var $iframe = this.content.find('iframe'); var src = $iframe.attr('data-src'); $iframe.attr('src', src); var $mfpPager = $(this.contentContainer).find('.mfp-pager'); if ($mfpPager.length === 1) { markMfpPagerItemActive($mfpPager, this.index); } }, buildControls: function () { if (this.arrowLeft) { /* re-appends controls inside the main container */ this.contentContainer.append(this.arrowLeft.add(this.arrowRight)); } } } }); var markMfpPagerItemActive = function ($mfpPager, index) { $mfpPager.find('.pager-item').removeClass('active').eq(index).addClass('active'); }; /* Obsłużenie kliknięcia w element pagera*/ var mfpPagerItemBindEvents = function ($mfpPager) { $mfpPager.on('click', '.pager-item', function (e) { e.stopPropagation(); var $clicked = $(this); var slideIndex = Number($clicked.attr('data-slide-index')); $.magnificPopup.instance.goTo(slideIndex); }); }; /* Tworzymy instancje karuzel aby mieć do nich handlery */ var owlItems = {}; /* Uchwyt na kontenery zdjęcia głównego / nawigacji z miniaturami i nawigacji przeznaczonej dla wersji desktop po lewej stronie od zdjęcia na warstwie magnificPopup. Html_id jest użyte, ponieważ na karcie produktu ten element jest includowany 2 razy, a id powinien być unikalny, ponadto przy zmianie wariantu należy operować na aktualnie widocznym. */ $photoBrowserWrappers = $('#387bd767-b808-46c9-851a-d0f1f73ec82b.int-el-product-photo-browser-wrapper'); $photoBrowserWrappers.each(function (i, photoBrowserWrapper) { /* Uchwyt na całą zawartość zdjęcia głównego, miniatur, pagera do nawigacji graficznej magnific. */ var $photoBrowserWrapper = $(photoBrowserWrapper); /* Uchwyt na zdjęcie główne. */ var $productPhotoBrowserBrowser = $photoBrowserWrapper.find('.int-el-product-photo-browser-browser'); $productPhotoBrowserBrowser.css({'display': 'block'}); var $pager = $photoBrowserWrapper.find('.int-el-product-photo-browser-pager'); owlItems['carousel' + $productPhotoBrowserBrowser.data['appDataProductId']] = $productPhotoBrowserBrowser; owlItems['carousel' + $productPhotoBrowserBrowser.data['appDataProductId']].owlCarousel({ singleItem: true, pagination: false, addClassActive: true, navigation: true, navigationText: false, lazyLoad: true, afterInit: function () { $('body').trigger('int-e-product-photo-browser-loaded'); if ($productPhotoBrowserBrowser.parentsUntil('.int-el-product-photo-browser').parent().data('appModifiableByProductVariantSwitcher') !== undefined) { var activeVariantId = $('.int-el-product-variant-switcher-input').val(); $pager.filter('[data-app-product-variant-id="' + activeVariantId + '"]').removeClass('hide').removeClass('int-display-none'); } else { $pager.removeClass('hide').removeClass('int-display-none'); } function initPagerActions($pager) { $pager.find('.grid-item a').on('click', function (e) { e.stopPropagation; $(this).closest('.owl-wrapper').find('.grid-item a').removeClass('active'); $(this).addClass('active'); var owl = $(this).closest('.int-el-product-photo-browser-pager-wrapper').prev('.int-el-product-photo-browser').find('.owl-carousel').data('owlCarousel'); owl.goTo($(this).data('slideIndex')); }); } initPagerActions($pager); if ($('.ins-it-prd-var-pht-ls-photo').length > 0) { $('.ins-it-prd-var-pht-ls-photo.active').trigger('click'); } else if ($('.int-el-product-variant-switcher-input').length > 0) { $('.int-el-product-variant-switcher-input').trigger('change'); } }, afterMove: function (el) { this.$userItems.each(function (index, item) { var $item = $(item); if ($item.hasClass('h-multimedia')) { var $iframe = $item.find('iframe'); $iframe.attr('src', ''); } }); var $currentItem = this.$userItems.eq(this.currentItem); var $currentIframe = $currentItem.find('iframe'); var currentSrc = $currentIframe.attr('data-src'); $currentIframe.attr('src', currentSrc); $productPhotoBrowserBrowser.find('.owl-item').each(function (i, elem) { if ($(elem).hasClass('active')) { $(elem).closest('.int-el-product-photo-browser').next('.int-el-product-photo-browser-pager-wrapper').find('.grid-item a').removeClass('active'); var $activePagerElem = $(elem).closest('.int-el-product-photo-browser').next('.int-el-product-photo-browser-pager-wrapper').find('.grid-item a[data-slide-index=' + i + ']').addClass('active'); var $pagerOwl = $pager.data('owlCarousel'); if (typeof $pagerOwl !== 'undefined' && $.inArray(i, $pagerOwl.visibleItems) === -1) { $pagerOwl.goTo(i); } } }); }, }); }); $('#387bd767-b808-46c9-851a-d0f1f73ec82b .int-el-product-photo-browser .carousel-item').tooltip(); });
Code: 707-001
' + '
' + '
' + '
' + '
' + '
' + '
'); $mfpPager.append($mfpPagerContainer.html()); /* Wstawienie pagera go do docelowego miejsca mfp.*/ $(this.contentContainer).append($mfpPager); markMfpPagerItemActive($mfpPager, this.index); mfpPagerItemBindEvents($mfpPager); } } }, change: function () { var $iframe = this.content.find('iframe'); var src = $iframe.attr('data-src'); $iframe.attr('src', src); var $mfpPager = $(this.contentContainer).find('.mfp-pager'); if ($mfpPager.length === 1) { markMfpPagerItemActive($mfpPager, this.index); } }, buildControls: function () { if (this.arrowLeft) { /* re-appends controls inside the main container */ this.contentContainer.append(this.arrowLeft.add(this.arrowRight)); } } } }); var markMfpPagerItemActive = function ($mfpPager, index) { $mfpPager.find('.pager-item').removeClass('active').eq(index).addClass('active'); }; /* Obsłużenie kliknięcia w element pagera*/ var mfpPagerItemBindEvents = function ($mfpPager) { $mfpPager.on('click', '.pager-item', function (e) { e.stopPropagation(); var $clicked = $(this); var slideIndex = Number($clicked.attr('data-slide-index')); $.magnificPopup.instance.goTo(slideIndex); }); }; /* Tworzymy instancje karuzel aby mieć do nich handlery */ var owlItems = {}; /* Uchwyt na kontenery zdjęcia głównego / nawigacji z miniaturami i nawigacji przeznaczonej dla wersji desktop po lewej stronie od zdjęcia na warstwie magnificPopup. Html_id jest użyte, ponieważ na karcie produktu ten element jest includowany 2 razy, a id powinien być unikalny, ponadto przy zmianie wariantu należy operować na aktualnie widocznym. */ $photoBrowserWrappers = $('#1054d60b-e702-4cf8-8da2-fe123a909713.int-el-product-photo-browser-wrapper'); $photoBrowserWrappers.each(function (i, photoBrowserWrapper) { /* Uchwyt na całą zawartość zdjęcia głównego, miniatur, pagera do nawigacji graficznej magnific. */ var $photoBrowserWrapper = $(photoBrowserWrapper); /* Uchwyt na zdjęcie główne. */ var $productPhotoBrowserBrowser = $photoBrowserWrapper.find('.int-el-product-photo-browser-browser'); $productPhotoBrowserBrowser.css({'display': 'block'}); var $pager = $photoBrowserWrapper.find('.int-el-product-photo-browser-pager'); owlItems['carousel' + $productPhotoBrowserBrowser.data['appDataProductId']] = $productPhotoBrowserBrowser; owlItems['carousel' + $productPhotoBrowserBrowser.data['appDataProductId']].owlCarousel({ singleItem: true, pagination: false, addClassActive: true, navigation: true, navigationText: false, lazyLoad: true, afterInit: function () { $('body').trigger('int-e-product-photo-browser-loaded'); if ($productPhotoBrowserBrowser.parentsUntil('.int-el-product-photo-browser').parent().data('appModifiableByProductVariantSwitcher') !== undefined) { var activeVariantId = $('.int-el-product-variant-switcher-input').val(); $pager.filter('[data-app-product-variant-id="' + activeVariantId + '"]').removeClass('hide').removeClass('int-display-none'); } else { $pager.removeClass('hide').removeClass('int-display-none'); } function initPagerActions($pager) { $pager.find('.grid-item a').on('click', function (e) { e.stopPropagation; $(this).closest('.owl-wrapper').find('.grid-item a').removeClass('active'); $(this).addClass('active'); var owl = $(this).closest('.int-el-product-photo-browser-pager-wrapper').prev('.int-el-product-photo-browser').find('.owl-carousel').data('owlCarousel'); owl.goTo($(this).data('slideIndex')); }); } initPagerActions($pager); if ($('.ins-it-prd-var-pht-ls-photo').length > 0) { $('.ins-it-prd-var-pht-ls-photo.active').trigger('click'); } else if ($('.int-el-product-variant-switcher-input').length > 0) { $('.int-el-product-variant-switcher-input').trigger('change'); } }, afterMove: function (el) { this.$userItems.each(function (index, item) { var $item = $(item); if ($item.hasClass('h-multimedia')) { var $iframe = $item.find('iframe'); $iframe.attr('src', ''); } }); var $currentItem = this.$userItems.eq(this.currentItem); var $currentIframe = $currentItem.find('iframe'); var currentSrc = $currentIframe.attr('data-src'); $currentIframe.attr('src', currentSrc); $productPhotoBrowserBrowser.find('.owl-item').each(function (i, elem) { if ($(elem).hasClass('active')) { $(elem).closest('.int-el-product-photo-browser').next('.int-el-product-photo-browser-pager-wrapper').find('.grid-item a').removeClass('active'); var $activePagerElem = $(elem).closest('.int-el-product-photo-browser').next('.int-el-product-photo-browser-pager-wrapper').find('.grid-item a[data-slide-index=' + i + ']').addClass('active'); var $pagerOwl = $pager.data('owlCarousel'); if (typeof $pagerOwl !== 'undefined' && $.inArray(i, $pagerOwl.visibleItems) === -1) { $pagerOwl.goTo(i); } } }); }, }); }); $('#1054d60b-e702-4cf8-8da2-fe123a909713 .int-el-product-photo-browser .carousel-item').tooltip(); });
Reviews:
Price:
159,00zł
pcs:
- +
Add to cart
×
Confirmation
Are you sure you want to add the product
which expected delivery date
to Kolba's warehouse is 2023-09-18?
This date is only a suggested delivery,
it is not confirmed and IT COULD BE CHANGED.
Go to the cart
{{/if}}
{% endif %}
Not available
Inform when available
×
Expected delivery
This is expected delivery,
it is not confirmed
and it COULD BE CHANGED.
{{ 'Zamów do salonu'|trans }}
{{ 'view.productAvailability.delivery'|trans }}
×
{{ 'Spodziewana dostawa'|trans }}
{{ 'view.productAvailability.expectedDelivery'|trans }}
Save me
Information about availability has been subscribed.
An error occurred while adding.
Free delivery for this product
Lowest price guarantee
More
Less
Your satisfaction is our priority, which is why our prices are always the lowest. Read more
Buy now, pay later! More
×
New! Buy now, pay later!
How does it work?
Do order and as payment option choose: Buy now, pay later.
Collect the parcel and enjoy your purchase!
You have 21 days to pay! You will receive the instructions by email.
Free for 21 days!
No registration and providing data!
Security! We work with Twisto which is supported by the ING bank.
What after 21 days?
After 21 days, statutory interest will be charged -14% per annum. Twisto will keep you informed about the upcoming repayment date.
Do you have any questions?
Read more here or contact with us +48322652200.
Compare
{% endif %}
Product expert
-
Email: -
Phone:
-Product doesn't have any compatible products.
Technical data
Basic data
Knife type
fixed wedge
Type of steel
stainless
A group of steels with special physical and chemical properties, resistant to corrosion from, for example: atmospheric agents (gas corrosion), dilute acids, alkaline solutions (corrosion in liquids). Rust resistance is achieved by introducing suitable alloying additives into the steel. In the case of chromium stainless steel, this is chromium, and the American AISI standard sets its minimum content at 11%.
Additional data
Handle material
wood
Dimensions
Blade thickness [mm]
2,5
Manufacturer information
EAN
8718719305799
Supplier symbol
ZakmLeerZebrano
Description
An elegant pocket knife from the Laguiole Style de Vie brand inspired by classic designs created in Provence since the first half of the 19th century. Laguiole knives take their cues from slightly older Spanish navaja-type models, including the shape of the head and the half-lock used. This traditional tool will be perfect in the hands of any person who appreciates elegant design, and thanks to its decorative accessory box will serve perfectly as a gift.
The Laguiole Style de Vie folding knife offers the user:
- The traditional design of a Provençal folding knife from the early 19th century
- A stainless steel head polished to a mirror shine
- Handle facings of precious rosewood decorated with rivets
- Classic half lock characteristic for this type of construction
- Traditional fingernail undercut at the top of the blade for easy opening of the knife
- Leather sheath for everyday carry with a hidden miniature whetstone
The Laguiole Style de Vie brand hails from a city considered the French cradle of knife making. The designs created by the manufacturer refer to the traditional Provençal aesthetic, which makes them extremely elegant and will perfectly fit the taste of people who appreciate classic design. The use of high-quality wood for the knives makes them not only make a great impression, but also highly comfortable and pleasant to use.
- User manual [PL]
Was the description helpful to you?
Average rate: 0 Reviews: 0
{{ 'Imię'|trans({}, 'b2c') }}: {{ review.userName }}
{{ review.date }}
{% if review.confirmedByPurchase %}{{ 'Opinia potwierdzona zakupem'|trans({}, 'b2c') }}
{{ review.text }}
{% if review.replyText|trim|length %} {{ 'Odpowiedź sklepu'|trans({}, 'b2c') }} Kolba.pl
{{ review.replyDate }}
{{ review.replyText }}
{{ 'Więcej opinii'|trans({}, 'b2c') }} ({{ reviews|length - displayLimit }})
{% endif %} {% if reviews|length < 1 %}