Components and accessories for paint spraying and fluid handling.
Search by product name
document.addEventListener("DOMContentLoaded", function () {
const input = document.getElementById("webx-product-search-input");
const resultsContainer = document.getElementById("webx-search-results");
if (!input || !resultsContainer) return;
input.addEventListener("input", function () {
const query = input.value.trim();
if (query.length > 2) {
fetch("https://www.finishline.si/wp-admin/admin-ajax.php", {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
action: "webx_product_search",
search_query: query,
}),
})
.then(response => response.text())
.then(html => {
resultsContainer.innerHTML = html;
resultsContainer.style.display = "block";
});
} else {
resultsContainer.style.display = "none";
}
});
document.addEventListener("click", function (event) {
if (!input.contains(event.target) && !resultsContainer.contains(event.target)) {
resultsContainer.style.display = "none";
}
});
});
#webx-product-search-form {
position: relative;
width: 100%;
max-width: 400px;
margin: 0 auto;
}
#webx-product-search-input {
border: 1px solid #797979;
border-radius: 4px;
background: #fff;
padding: 15px;
width: 100%;
font-size: 100%;
line-height: 1;
}
#webx-search-results {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-height: 250px;
overflow-y: auto;
z-index: 1000;
}
.webx-search-result {
display: flex;
align-items: center;
padding: 10px;
gap: 10px;
border-bottom: 1px solid #f1f1f1;
transition: background 0.2s ease-in-out;
}
.webx-search-result:hover {
background: #f7f7f7;
}
.webx-search-img img {
width: 50px;
height: auto;
max-height: 45px;
border-radius: 4px;
}
.webx-search-text {
flex-grow: 1;
width: 100%;
}
.webx-search-link {
text-decoration: none;
color: #333;
font-size: 14px;
font-weight: 600;
}
.webx-search-link:hover {
color: #0071a1;
}
.webx-no-results {
padding: 10px;
text-align: center;
color: #888;
}
Search by SKU
document.addEventListener("DOMContentLoaded", function () {
const input = document.getElementById("webx-sku-search-input");
const resultsContainer = document.getElementById("webx-sku-search-results");
if (!input || !resultsContainer) return;
input.addEventListener("input", function () {
const query = input.value.trim();
if (query.length > 2) {
fetch("https://www.finishline.si/wp-admin/admin-ajax.php", {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: new URLSearchParams({
action: "webx_sku_search",
search_query: query,
}),
})
.then(response => response.text())
.then(html => {
resultsContainer.innerHTML = html;
resultsContainer.style.display = "block";
});
} else {
resultsContainer.style.display = "none";
}
});
document.addEventListener("click", function (event) {
if (!input.contains(event.target) && !resultsContainer.contains(event.target)) {
resultsContainer.style.display = "none";
}
});
});
#webx-sku-search-form {
position: relative;
width: 100%;
max-width: 400px;
margin: 0 auto;
}
#webx-sku-search-input {
border: 1px solid #797979;
border-radius: 4px;
background: #fff;
padding: 15px;
width: 100%;
font-size: 100%;
line-height: 1;
}
#webx-sku-search-results {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-height: 250px;
overflow-y: auto;
z-index: 1000;
}
.webx-sku-result {
display: flex;
align-items: center;
padding: 10px;
gap: 10px;
border-bottom: 1px solid #f1f1f1;
transition: background 0.2s ease-in-out;
}
.webx-sku-result:hover {
background: #f7f7f7;
}
.webx-sku-img img {
width: 50px;
height: auto;
max-height: 45px;
border-radius: 4px;
}
.webx-sku-text {
flex-grow: 1;
display: flex;
width: 100%;
flex-direction: column;
}
.webx-sku-link {
text-decoration: none;
color: #333;
font-size: 14px;
font-weight: 600;
}
.webx-sku-link:hover {
color: #0071a1;
}
.webx-sku-code {
font-size: 12px;
color: #666;
}
.webx-no-results, .webx-fuzzy-heading {
padding: 10px;
text-align: center;
color: #888;
}
Search by brand compatibility
document.addEventListener("DOMContentLoaded", function () {
const input = document.getElementById("webx-compatibility-search-input");
const resultsContainer = document.getElementById("webx-compatibility-search-results");
if (!input || !resultsContainer) return;
// Populate list on click
input.addEventListener("click", function () {
resultsContainer.innerHTML = "";
resultsContainer.style.display = "block";
const options = [{"name":"Anest-iwata","slug":"anest-iwata"},{"name":"Bettella","slug":"bettella"},{"name":"Binks","slug":"binks"},{"name":"Bu00f6llhof","slug":"bollhof"},{"name":"Colora","slug":"colora"},{"name":"Delon","slug":"delon"},{"name":"Devilbiss","slug":"devilbiss"},{"name":"Graco","slug":"graco"},{"name":"Iwata","slug":"iwata"},{"name":"Nordson","slug":"nordson"},{"name":"Optima","slug":"optima"},{"name":"Samesu00a0Kremlin","slug":"sames-kremlin"},{"name":"Sata","slug":"sata"},{"name":"Titan","slug":"titan"},{"name":"Wagner","slug":"wagner"},{"name":"Wiwa","slug":"wiwa"}];
if (options.length === 0) {
resultsContainer.innerHTML = "<div class='webx-no-results'>No compatibility options available
“; return; } options.forEach(function(option) { let item = document.createElement(“div”); item.classList.add(“webx-compatibility-result”); item.textContent = option.name; item.addEventListener(“click”, function () { // Redirect to the compatibility term page using the term slug window.location.href = “https://www.finishline.si/compatibility/” + option.slug; }); resultsContainer.appendChild(item); }); }); // Hide results when clicking outside document.addEventListener(“click”, function (event) { if (!input.contains(event.target) && !resultsContainer.contains(event.target)) { resultsContainer.style.display = “none”; } }); });
#webx-compatibility-search-form {
position: relative;
width: 100%;
max-width: 400px;
margin: 0 auto;
}
#webx-compatibility-search-input {
border: 1px solid #797979;
border-radius: 4px;
background: #fff;
padding: 15px;
width: 100%;
font-size: 100%;
line-height: 1;
cursor: pointer;
}
#webx-compatibility-search-results {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-height: 250px;
overflow-y: auto;
z-index: 1000;
}
.webx-compatibility-result {
padding: 10px;
border-bottom: 1px solid #f1f1f1;
cursor: pointer;
transition: background 0.2s ease-in-out;
color: var(--bde-links-color);
}
.webx-compatibility-result:hover {
background: #f7f7f7;
}
.webx-no-results {
padding: 10px;
text-align: center;
color: #888;
}
[ℹ
##### Paint Spraying Pumps ](https://www.finishline.si/en/paint-spraying-pumps/)
[ℹ
##### Paint Spraying Guns ](https://www.finishline.si/en/paint-spraying-guns/)
[ℹ
##### Pressure vessels ](https://www.finishline.si/en/pressure-vessels/)
[79
##### Spray gun spare parts ](https://www.finishline.si/en/accessories/spray-gun-spare-parts/)
[41
##### Pumps spare parts ](https://www.finishline.si/en/accessories/pumps-spare-parts/)
[29
##### Spray guns nozzles ](https://www.finishline.si/en/accessories/spray-guns-nozzles/)
[78
##### Paint spraying filters ](https://www.finishline.si/en/accessories/paint-spraying-filters/)
[13
##### Gravity tanks ](https://www.finishline.si/en/accessories/gravity-tanks/)
[8
##### Pump filter housings ](https://www.finishline.si/en/accessories/pump-filter-housings/)
[15
##### Gun filter housings ](https://www.finishline.si/en/accessories/gun-filter-housings/)
[8
##### Fluid regulators ](https://www.finishline.si/en/accessories/fluid-regulators/)
[ℹ
##### Hoses ](https://www.finishline.si/en/accessories/hoses/)
[ℹ
##### Fittings ](https://www.finishline.si/en/accessories/fittings/)
[ ##### Nozzle type Optima 2100
From 59,54€
48,80€ (without VAT) ](https://www.finishline.si/en/nozzle-type-optima-2100/) [ ##### Gaskets repair kit compatible with Graco
From 82,23€
67,40€ (without VAT) ](https://www.finishline.si/en/gaskets-repair-kit-compatible-with-graco/) [ ##### Lamellar tip filter
From 15,25€
12,50€ (without VAT) ](https://www.finishline.si/en/lamellar-tip-filter/) [ ##### Inline strainer compatible with Sames Kremlin Ø27h115mm
From 13,91€
11,40€ (without VAT) ](https://www.finishline.si/en/inline-strainer-compatible-with-sames-kremlin-o27h115mm/) [ ##### Inline strainer compatible wiith Graco Ø26,5 h144mm
From 10,37€
8,50€ (without VAT) ](https://www.finishline.si/en/inline-strainer-compatible-wiith-graco-o265-h144mm/) [ ##### Gun filters compatible with Optima – Dürr – Wagner
From 3,05€
2,50€ (without VAT) ](https://www.finishline.si/en/gun-filters-compatible-with-optima-durr-wagner/)
.aba83980-3cd3-402e-bc40-85cb91eaf8bb {
fill: #2d2a26;
}
.afa6d7b9-e2ae-46ce-a1b5-c4528b0cd254 {
fill: #008d6c;
}
.f860e007-07a2-4dab-9434-5ab069ffb552 {
fill: #ec2727;
}
fav only
FINISHLINE d.o.o. is a specialized company in the sale of replacement parts for painting and coating. Our products are compatible with renowned brands such as SAMES KREMLIN, GRACO, WAGNER, WIWA, SATA, DURR, OPTIMA, IBK, and others. All replacement parts are manufactured in Italy, ensuring high-quality craftsmanship and very short delivery times.
2067
28
21
[
B2B portal ](https://www.finishline.si/en/b2b-portal/) [
The launch – we’re live ](https://www.finishline.si/en/the-launch-were-live/)
Finishline d.o.o. is already reviewing your submission. We'll let you know about your B2B account in the shortest possible time.