JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › DropDownList › DropDownList problem in 17.0
Tagged: dropdownlist change event
- This topic has 9 replies, 2 voices, and was last updated 11 months, 3 weeks ago by tbettinazzi@axioma.it.
-
AuthorPosts
-
November 27, 2023 at 5:19 pm #109211tbettinazzi@axioma.itParticipant
Hi
I suspect I found a problem in version 17.0 with dropdown lists.
As You can see in the in the code I show below I’ve a dropdown list which has an on-change event listener which sumbits the form containing the dropdown.
I found that the selected value is lost and the value passed back is the original selected value.
If I remove the on-change code it works.
I tried to get back to the last 16 version but the problem still reproduces.
I was forced to get back to a v14.4.2 I had in a previous version to solve the problem.
Could You suggest where the problem could be ?
Tks
Tullio
<div class=”colonnaElemento”>
<smart-drop-down-list drop-down-append-to=”formElementi” item-height=”22″ filterable=”true” filter-mode=”startsWithIgnoreCase” id=”e1670002241″ min-length=”1″ selectionMode=”zeroOrOne” class=”elemento_combobox_valore” name=”e1670002241″ selected-indexes=”[0]” onChange=”mostraAlertMsgOption(this); eseguiRefresh(this);” onfocus=”on_focus(this)”></smart-drop-down-list>
<script>
document.querySelector(‘#e1670002241’).dataSource = [{label: “‘Famiglie porte interne'”, value: “99”, class: “bg-0”},
{label: “‘New Twin Set'”, value: “NEW TWIN SET”, class: “bg-0″},
];
document.querySelector(‘#e1670002241’).addEventListener(‘wheel’, function(e){ e.stopImmediatePropagation();})
</script><span aria-hidden=”true” class=”fa fa-refresh color-of-text inline-icon cfg-free-font-icon”></span><span aria-hidden=”true” class=”fa fa-check color-of-text inline-icon cfg-free-font-icon”></span><span class=”colorCircle
bg-0″></span>
</div>- This topic was modified 12 months ago by tbettinazzi@axioma.it.
November 27, 2023 at 5:28 pm #109213tbettinazzi@axioma.itParticipantTested with 15.0.0 and it works.
Tks
November 28, 2023 at 9:12 am #109223MarkovKeymasterHi,
When the change event occurs, the event.detail.value returns the value of the selected item.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/November 28, 2023 at 9:45 am #109224tbettinazzi@axioma.itParticipantSorry but I didn’t understand the answer.
In the onChange event I simply submit the form where the dropdown is included.
Until version 15 the server receives the correct selected value for the dropdown from 16 it receives (in my environment) the value whidh was selected when the dropdown is built.
Tks
November 28, 2023 at 3:04 pm #109225MarkovKeymasterHi,
When the dropdownlist’s change event occurs, the hidden input’s value is with the correct selected value. If you would like our team to test your use-case, please share a codepen example which demonstrates an issue and we will test it.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/November 28, 2023 at 5:24 pm #109226tbettinazzi@axioma.itParticipantI wasn’t able to find a way to create a small server in order to look the data sent back.
Could you suggest a way to investigate such values ?
Tks
P.S. : I tested to get value before launch the submit with
const dropdownlist = document.getElementById(‘dropdownlist’);
console.log(“Value :” + dropdownlist.value);but dropdown list seems to be an object and it shows Value :[object Object] on the console
- This reply was modified 12 months ago by tbettinazzi@axioma.it.
November 29, 2023 at 9:55 am #109230MarkovKeymasterHi,
There’s no such property. The Dropdownlist supports multiple selection and its value can be retrieved from the selectedValues property.
Best regards,
MarkovSmart UI Team
https://www.htmlelements.com/November 29, 2023 at 5:39 pm #109233tbettinazzi@axioma.itParticipantI investigate a little bit and the value of the selectedValue is correct before and after the form submit.
However in the server I receive the wrong value (the original one).
Could You suggest where can I look to see the value of the real sent value tp the server ?
Getting back to 15 version, same code, same data it works.
I wasn’t able to reproduce in a simple test case till now.
Tks
- This reply was modified 11 months, 4 weeks ago by tbettinazzi@axioma.it.
- This reply was modified 11 months, 4 weeks ago by tbettinazzi@axioma.it.
December 4, 2023 at 10:52 am #109247tbettinazzi@axioma.itParticipantNo further help ?
Tks
December 4, 2023 at 2:14 pm #109248tbettinazzi@axioma.itParticipantI reproduced.
Using the html code below and running it in the server You usually use, You’ll see the following effect : changing the value it try to start an url (http://localhost:8080/web-rubik/Test8 which doesn’t exist) but waiting the timeout You’ll see in the url area of the browser the name of the dropdown list (“dropdownlist”) 2 times with different values. and this is wrong and produces the error.
Doing the same with version 15 it does’t happen.
<div><!DOCTYPE html></div>
<div><html xmlns=”http://www.w3.org/1999/xhtml”></div>
<div><head></div>
<div> <title>DropDownList Overview</title></div>
<div></div>
<div> <meta charset=”utf-8″ /></div>
<div> <meta http-equiv=”X-UA-Compatible” content=”IE=edge” /></div>
<div> <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ /></div>
<div> <meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0″ /></div>
<div></div>
<div> <link rel=”stylesheet” type=”text/css” href=”../../../source/styles/smart.default.css” /></div>
<div> <link rel=”stylesheet” type=”text/css” href=”../../styles/demos.css” /></div>
<div></div>
<div> <link rel=”stylesheet” type=”text/css” href=”styles.css” /></div>
<div> <script src=”index.js”></script></div>
<div></div>
<div></head></div>
<div><body class=”viewport”></div>
<div><script></div>
<div>function Avanti() {</div>
<div>var myPage = document.getElementById(“test”);</div>
<div> myPage.submit();</div>
<div>}</div>
<div></script></div>
<div><form id=”test” name=”pagina” action=”http://localhost:8080/web-rubik/Test8″></div>
<div><smart-drop-down-list drop-down-append-to=”test” item-height=”22″ filterable=”true” filter-mode=”startsWithIgnoreCase” id=”dropdownlist” min-length=”1″ selectionMode=”zeroOrOne” class=”elemento_combobox_valore” name=”dropdownlist” selected-indexes=”[155]” style=”flex:none; width:60%;” onChange=”Avanti()”></div>
<div><script></div>
<div>document.querySelector(‘#dropdownlist’).dataSource = [{label: “”, value: “EMPTY”, class: “bg-0”},</div>
<div>{label: “13S – Kit soffitto scaricatore telescopico”, value: “13S”, class: “bg-0”},</div>
<div>{label: “AC – Feeder for vertical screw coveyors”, value: “AC”, class: “bg-0”},</div>
<div>{label: “ACS – Feeder for vertical screw coveyors SAC Version “, value: “ACS”, class: “bg-0”},</div>
<div>{label: “AT ATEX – Feeder for vertical screw coveyors ATEX Version “, value: “AT_ATEX”, class: “bg-0”},</div>
<div>{label: “AT – Feeder for vertical screw coveyors”, value: “AT”, class: “bg-0”},</div>
<div>{label: “AX – Alimentatore per coclea verticale in acciaio inox”, value: “AX”, class: “bg-0”},</div>
<div>{label: “AXS – Stainless steel feeder for vertical screw coveyors SAC Version”, value: “AXS”, class: “bg-0”},</div>
<div>{label: “BA – Fondo vibrante”, value: “BA”, class: “bg-0”},</div>
<div>{label: “BAF – Fondo vibrante food”, value: “BAF”, class: “bg-0”},</div>
<div>{label: “BSN – Rotary bin discharger (BINSWEEP)”, value: “BSN”, class: “bg-0”},</div>
<div>{label: “CAE ATEX – Extra duty though screw conveyor ATEX Version “, value: “CAE_ATEX”, class: “bg-0”},</div>
<div>{label: “CAE – Extra duty though screw conveyor”, value: “CAE”, class: “bg-0”},</div>
<div>{label: “CAES ATEX – Extra duty though screw conveyor SAC ATEX Version “, value: “CAES_ATEX”, class: “bg-0”},</div>
<div>{label: “CAES – Extra duty though screw conveyor SAC Version “, value: “CAES”, class: “bg-0”},</div>
<div>{label: “CAL ATEX – Light duty trough screw conveyor ATEX Version”, value: “CA_ATEX”, class: “bg-0”},</div>
<div>{label: “CAL – Light duty trough screw conveyor”, value: “CA”, class: “bg-0”},</div>
<div>{label: “CAOL ATEX – Light duty tubular screw ATEX Version “, value: “CAOL_ATEX”, class: “bg-0”},</div>
<div>{label: “CAOL – Light duty tubular screw”, value: “CAOL”, class: “bg-0”},</div>
<div>{label: “CAOP ATEX – Heavy duty tubular screw ATEX Version “, value: “CAOP_ATEX”, class: “bg-0”},</div>
<div>{label: “CAOP – Heavy duty tubular screw”, value: “CAOP”, class: “bg-0”},</div>
<div>{label: “CAP ATEX – Heavy duty trough screw conveyor ATEX Version “, value: “CAP_ATEX”, class: “bg-0”},</div>
<div>{label: “CAP – Heavy duty trough screw conveyor”, value: “CAP”, class: “bg-0”},</div>
<div>{label: “CAPS ATEX – Heavy duty trough screw conveyor SAC ATEX Version “, value: “CAPS_ATEX”, class: “bg-0”},</div>
<div>{label: “CAPS – Heavy duty trough screw conveyor SAC Version “, value: “CAPS”, class: “bg-0”},</div>
<div>{label: “CAS ATEX – Trough screw conveyor SAC ATEX Version “, value: “CAS_ATEX”, class: “bg-0”},</div>
<div>{label: “CAS – Trough screw conveyor SAC Version”, value: “CAS”, class: “bg-0”},</div>
<div>{label: “CEOL ATEX – Light duty tubular screw ATEX Version”, value: “CEOL_ATEX”, class: “bg-0”},</div>
<div>{label: “CEOL – Light duty tubular screw”, value: “CEOL”, class: “bg-0”},</div>
<div>{label: “CEOP ATEX – Heavy duty tubular screw ATEX Version “, value: “CEOP_ATEX”, class: “bg-0”},</div>
<div>{label: “CEOP – Heavy duty tubular screw”, value: “CEOP”, class: “bg-0”},</div>
<div>{label: “CLSW – Lavaggio sabbia”, value: “CLSW”, class: “bg-0”},</div>
<div>{label: “COM – Bag Compactor”, value: “COM”, class: “bg-0”},</div>
<div>{label: “CPS – Screw compactors”, value: “CPS”, class: “bg-0”},</div>
<div>{label: “CSOL ATEX – Light duty tubular screw ATEX Version “, value: “CSOL_ATEX”, class: “bg-0”},</div>
<div>{label: “CSOL – Light duty tubular screw”, value: “CSOL”, class: “bg-0”},</div>
<div>{label: “CSOP ATEX – Heavy duty tubular screw SAC ATEX Version “, value: “CSOP_ATEX”, class: “bg-0”},</div>
<div>{label: “CSOP – Heavy duty tubular screw”, value: “CSOP”, class: “bg-0”},</div>
<div>{label: “CX ATEX – Stainless steel trough screw conveyor ATEX Version “, value: “CX_ATEX”, class: “bg-0”},</div>
<div>{label: “CX – Stainless steel trough screw conveyor”, value: “CX”, class: “bg-0”},</div>
<div>{label: “CXS ATEX – Stainless steel trough screw conveyor SAC ATEX Version “, value: “CXS_ATEX”, class: “bg-0”},</div>
<div>{label: “CXS – Stainless steel trough screw conveyor SAC”, value: “CXS”, class: “bg-0”},</div>
<div>{label: “DCC – Sistema di dosaggio a perdita di peso”, value: “DCC”, class: “bg-0”},</div>
<div>{label: “DK – Tramoggia per filtro tondo”, value: “DK”, class: “bg-0”},</div>
<div>{label: “DK200 – Tramoggia per filtro tondo”, value: “DK200”, class: “bg-0”},</div>
<div>{label: “DLP – Lump breaker”, value: “DLP”, class: “bg-0”},</div>
<div>{label: “DS – Gritsep grit separators DS”, value: “DS”, class: “bg-0”},</div>
<div>{label: “DSF – Areated grit chamber (DFS 2-3)”, value: “DSF”, class: “bg-0”},</div>
<div>{label: “DSP – Sand collector”, value: “DSP”, class: “bg-0”},</div>
<div>{label: “DVC – Sistema di dosaggio volumetrico”, value: “DVC”, class: “bg-0”},</div>
<div>{label: “EASYC ATEX – Minimun residue tubular screw conveyors and feeders ATEX Version “, value: “EASYC_ATEX”, class: “bg-0”},</div>
<div>{label: “EASYC – Minimun residue tubular screw conveyors and feeders”, value: “EASYC”, class: “bg-0”},</div>
<div>{label: “EC Bucket Elevator”, value: “EC”, class: “bg-0”},</div>
<div>{label: “ECX Bucket Elevator”, value: “ECX”, class: “bg-0”},</div>
<div>{label: “EF Bucket Elevator”, value: “EF”, class: “bg-0”},</div>
<div>{label: “EFX Bucket Elevator”, value: “EFX”, class: “bg-0”},</div>
<div>{label: “EHN Bucket Elevator”, value: “EHN”, class: “bg-0”},</div>
<div>{label: “EHNX Bucket Elevator”, value: “EHNX”, class: “bg-0”},</div>
<div>{label: “EI Bucket Elevator”, value: “EI”, class: “bg-0”},</div>
<div>{label: “EIS Bucket Elevator”, value: “EIS”, class: “bg-0”},</div>
<div>{label: “EIX Bucket Elevator”, value: “EIX”, class: “bg-0”},</div>
<div>{label: “ES – PORTING”, value: “ES_PORTING”, class: “bg-0”},</div>
<div>{label: “ES – Cement Screw conveyors & feeders”, value: “ES”, class: “bg-0”},</div>
<div>{label: “FGC – Fluid dynamic grit classifier”, value: “FGC”, class: “bg-0”},</div>
<div>{label: “FN – Filtro tondo (WAMFLO)”, value: “FN”, class: “bg-0”},</div>
<div>{label: “FN200 – Rounds dust collectors (WAMFLO FOOD)”, value: “FN200”, class: “bg-0”},</div>
<div>{label: “FNX – Filtro tondo (WAMFLO) ATEX”, value: “FNX”, class: “bg-0”},</div>
<div>{label: “FP – Poligonal filters (WAMAIR)”, value: “FP”, class: “bg-0”},</div>
<div>{label: “FPN – Poligonal filters WAMAIR (WACUUM)”, value: “FPN”, class: “bg-0”},</div>
<div>{label: “FPX – Poligonal filters (WAMAIR) ATEX”, value: “FPX”, class: “bg-0”},</div>
<div>{label: “FTR – Rotary drum screens”, value: “FTR”, class: “bg-0”},</div>
<div>{label: “GCE – Screw screens (GCE)”, value: “GCE”, class: “bg-0”},</div>
<div>{label: “GCEC – In-Piping Screw screen (GCEC)”, value: “GCEC”, class: “bg-0”},</div>
<div>{label: “GCEV – In-channel vertical screw screen (GCEV)”, value: “GCEV”, class: “bg-0”},</div>
<div>{label: “GCP – Screw screens (GCP)”, value: “GCP”, class: “bg-0”},</div>
<div>{label: “GCPC – In-piping Screw screen (GCPC)”, value: “GCPC”, class: “bg-0”},</div>
<div>{label: “GCV – Vertical screw screens”, value: “GCV”, class: “bg-0”},</div>
<div>{label: “GVB – Mechanical bar screen”, value: “GVB”, class: “bg-0”},</div>
<div>{label: “GVF – Fine mechanical bar screen”, value: “GVF”, class: “bg-0”},</div>
<div>{label: “GVL – Light duty mechanical bar screen”, value: “GVL”, class: “bg-0”},</div>
<div>{label: “GVS – Mechanical brushes bar screen”, value: “GVS”, class: “bg-0”},</div>
<div>{label: “ILS indicatore di livello continuo”, value: “ILS”, class: “bg-0”},</div>
<div>{label: “ILV indicatore di livello a vibrazione”, value: “ILV”, class: “bg-0”},</div>
<div>{label: “ISP – Ispessitore fanghi”, value: “ISP”, class: “bg-0”},</div>
<div>{label: “M4 – Riduttore (M4)”, value: “M4”, class: “bg-0”},</div>
<div>{label: “MBF – Microdosatore volumetrico”, value: “MBF”, class: “bg-0”},</div>
<div>{label: “MBF310 – Volumetric micro-batch feeders for plastic processing”, value: “MBF310”, class: “bg-0”},</div>
<div>{label: “MBFX”, value: “MBFX”, class: “bg-0”},</div>
<div>{label: “MBFX310”, value: “MBFX310”, class: “bg-0”},</div>
<div>{label: “MBW – Flexflo micro-batch feeder”, value: “MBW”, class: “bg-0”},</div>
<div>{label: “MIT – Waste Water Mini-Treatment Plant”, value: “MIT”, class: “bg-0”},</div>
<div>{label: “MODULO_ES”, value: “MODULO_ES”, class: “bg-0”},</div>
<div>{label: “MODULO_TU”, value: “MODULO_TU”, class: “bg-0”},</div>
<div>{label: “MSC ATEX – Trough screw conveyors for flour mills ATEX Version “, value: “MSC_ATEX”, class: “bg-0”},</div>
<div>{label: “MSC – Trough screw conveyors for flour mills”, value: “MSC”, class: “bg-0”},</div>
<div>{label: “MSX – Stainless steel trough screw conveyors for flour mills”, value: “MSX”, class: “bg-0”},</div>
<div>{label: “PR”, value: “PR”, class: “bg-0”},</div>
<div>{label: “PT – Tramoggia poligonale”, value: “PT”, class: “bg-0”},</div>
<div>{label: “PTC – Central Traction Clarifiers”, value: “PTC”, class: “bg-0”},</div>
<div>{label: “PTP – Ponte a trazione periferica”, value: “PTP”, class: “bg-0”},</div>
<div>{label: “PTS – Pnumatic conveying system for dry”, value: “PTS”, class: “bg-0”},</div>
<div>{label: “PVA – Traveling bridge scraper”, value: “PVA”, class: “bg-0”},</div>
<div>{label: “PVS – Traveling bridge scraper”, value: “PVS”, class: “bg-0”},</div>
<div>{label: “PVD – Traveling bridge scraper”, value: “PVD”, class: “bg-0”},</div>
<div>{label: “PVV – Traveling bridge scraper”, value: “PVV”, class: “bg-0”},</div>
<div>{label: “RBB – Fibc filler”, value: “RBB”, class: “bg-0”},</div>
<div>{label: “RSA – Automatic bag splitter (RSA)”, value: “RSA”, class: “bg-0”},</div>
<div>{label: “RSM03 – Manual bag breaker (RSM)”, value: “RSM03”, class: “bg-0”},</div>
<div>{label: “RSMX03 – Manual bag breaker (RSM)ATEX”, value: “RSMX03”, class: “bg-0”},</div>
<div>{label: “RTV – Filtrococlea a tamburo”, value: “RTV”, class: “bg-0”},</div>
<div>{label: “RVC RVS – rotovalvolve – NEW”, value: “RVCS_NEW”, class: “bg-0”},</div>
<div>{label: “RVC-RVS – rotary valve”, value: “RVCS”, class: “bg-0”},</div>
<div>{label: “RV-RVR – rotary valve”, value: “SCR”, class: “bg-0”},</div>
<div>{label: “RWN – rotary valve”, value: “RWN”, class: “bg-0”},</div>
<div>{label: “S4 – Gear reduction (S4)”, value: “S4”, class: “bg-0”},</div>
<div>{label: “SBB HFF – Bulk container unloader (SBB HFF)”, value: “SBB_HFF”, class: “bg-0”},</div>
<div>{label: “SBB – Svuota Big bag (SBB)”, value: “SBB”, class: “bg-0”},</div>
<div>{label: “SEP – Screw-Press Separators”, value: “SEP”, class: “bg-0”},</div>
<div>{label: “SGR – Rotating filtering drum”, value: “SGR”, class: “bg-0”},</div>
<div>{label: “SPG35 – Bolted silos”, value: “SPG35”, class: “bg-0”},</div>
<div>{label: “SSC – Shaftless spiral conveyor”, value: “SSC”, class: “bg-0”},</div>
<div>{label: “SSX – Stainless steel shaftless spiral conveyor”, value: “SSX”, class: “bg-0”},</div>
<div>{label: “SU ATEX – Single screw feeders ATEX Version “, value: “SU_ATEX”, class: “bg-0”},</div>
<div>{label: “SU – Single screw feeders”, value: “SU”, class: “bg-0”},</div>
<div>{label: “SUP ATEX – Heavy duty single screw feeders ATEX Version “, value: “SUP_ATEX”, class: “bg-0”},</div>
<div>{label: “SUP – Heavy duty single screw feeders”, value: “SUP”, class: “bg-0”},</div>
<div>{label: “SUPS ATEX – Heavy duty single screw feeders SAC ATEX Version “, value: “SUPS_ATEX”, class: “bg-0”},</div>
<div>{label: “SUPS – Heavy duty single screw feeders SAC Version “, value: “SUPS”, class: “bg-0”},</div>
<div>{label: “SUR”, value: “SUR”, class: “bg-0”},</div>
<div>{label: “SUS ATEX – Single screw feeders SAC ATEX Version “, value: “SUS_ATEX”, class: “bg-0”},</div>
<div>{label: “SUS – Single screw feeders sac SAC Version “, value: “SUS”, class: “bg-0”},</div>
<div>{label: “SX ATEX – Single screw feeders ATEX Version “, value: “SX_ATEX”, class: “bg-0”},</div>
<div>{label: “SX – Stainless steel single screw feeders”, value: “SX”, class: “bg-0”},</div>
<div>{label: “SXS ATEX – Stainless steel single screw feeders SAC ATEX Version “, value: “SXS_ATEX”, class: “bg-0”},</div>
<div>{label: “SXS – Stainless steel single screw feeders SAC Version “, value: “SXS”, class: “bg-0”},</div>
<div>{label: “TCF – PORTING”, value: “TCF_PORTING”, class: “bg-0”},</div>
<div>{label: “TCF – Screew feeders and conveyors for bituminous mix plants (cold filler)”, value: “TCF”, class: “bg-0”},</div>
<div>{label: “TE ATEX – Tubular screw conveyor and feeders ATEX Version “, value: “TE_ATEX”, class: “bg-0”},</div>
<div>{label: “TE – Tubular screw conveyor and feeders”, value: “TE”, class: “bg-0”},</div>
<div>{label: “TES ATEX – Tubular screw conveyor and feeders SAC ATEX Version “, value: “TES_ATEX”, class: “bg-0”},</div>
<div>{label: “TES – Tubular screw conveyor and feeders SAC Version “, value: “TES”, class: “bg-0”},</div>
<div>{label: “THF – PORTING”, value: “THF_PORTING”, class: “bg-0”},</div>
<div>{label: “THF – Screew feeders and conveyors for bituminous mix plants (hot filler)”, value: “THF”, class: “bg-0”},</div>
<div>{label: “TM ATEX – Tubular screw conveyor and feeders ATEX Version “, value: “TM_ATEX”, class: “bg-0”},</div>
<div>{label: “TM – Tubular screw conveyor and feeders”, value: “TM”, class: “bg-0”},</div>
<div>{label: “TMS ATEX – Tubular screw conveyor and feeders SAC ATEX Version “, value: “TMS_ATEX”, class: “bg-0”},</div>
<div>{label: “TMS – Tubular screw conveyor and feeders SAC Version “, value: “TMS”, class: “bg-0”},</div>
<div>{label: “TP ATEX – Tubular screw conveyor and feeders ATEX Version “, value: “TP_ATEX”, class: “bg-0”},</div>
<div>{label: “TP – Tubular screw conveyor and feeders”, value: “TP”, class: “bg-0”},</div>
<div>{label: “TPS ATEX – Tubular screw conveyor and feeders SAC ATEX Version “, value: “TPS_ATEX”, class: “bg-0”},</div>
<div>{label: “TPS – Tubular screw conveyor and feeders SAC Version “, value: “TPS”, class: “bg-0”},</div>
<div>{label: “TS ATEX – Tubular screw conveyor and feeders SAC ATEX Version “, value: “TS_ATEX”, class: “bg-0”},</div>
<div>{label: “TS – Tubular screw conveyor and feeders SAC Version “, value: “TS”, class: “bg-0”},</div>
<div>{label: “TSB”, value: “TSB”, class: “bg-0”},</div>
<div>{label: “TSB1”, value: “TSB1”, class: “bg-0”},</div>
<div>{label: “TSF”, value: “TSF”, class: “bg-0”},</div>
<div>{label: “TSF1”, value: “TSF1”, class: “bg-0”},</div>
<div>{label: “TU ATEX – Tubular screw conveyor and feeders ATEX Version “, value: “TU_ATEX”, class: “bg-0”},</div>
<div>{label: “TU – Tubular screw conveyor and feeders”, value: “TU”, class: “bg-0”},</div>
<div>{label: “TX ATEX – Stainless steel tubular screw conveyor ATEX Version “, value: “TX_ATEX”, class: “bg-0”},</div>
<div>{label: “TX – Stainless steel tubular screw conveyor”, value: “TX”, class: “bg-0”},</div>
<div>{label: “TXF – Stainless steel tubular screw conveyors for food application”, value: “TXF”, class: “bg-0”},</div>
<div>{label: “TXS ATEX – Stainless steel tubular screw conveyors SAC ATEX Version “, value: “TXS_ATEX”, class: “bg-0”},</div>
<div>{label: “TXS – Stainless steel tubular screw conveyors SAC Version “, value: “TXS”, class: “bg-0”},</div>
<div>{label: “VAB – valvola deviatrice”, value: “VAB”, class: “bg-0”},</div>
<div>{label: “VAD – valvola deviatrice”, value: “VAD”, class: “bg-0”},</div>
<div>{label: “VAR – deviatore a tamburo”, value: “VAR”, class: “bg-0”},</div>
<div>{label: “VAS – valvola deviatrice”, value: “VAS”, class: “bg-0”},</div>
<div>{label: “VDC – valvola a doppio flap”, value: “VDC”, class: “bg-0”},</div>
<div>{label: “VE – Vertical screw conveyors and feeders”, value: “VE”, class: “bg-0”},</div>
<div>{label: “VEC – Vertical screw conveyors and feeders”, value: “VEC”, class: “bg-0”},</div>
<div>{label: “VECS – Vertical screw conveyors and feeders SAC Version “, value: “VECS”, class: “bg-0”},</div>
<div>{label: “VES – Vertical screw conveyors and feeders SAC Version “, value: “VES”, class: “bg-0”},</div>
<div>{label: “VEX – Stainless steel vertical screw conveyors and feeders”, value: “VEX”, class: “bg-0”},</div>
<div>{label: “VEXS – Stainless steel vertical screw conveyors and feeders SAC Version “, value: “VEXS”, class: “bg-0”},</div>
<div>{label: “VFA – Impianto di accettazione bottini”, value: “VFA”, class: “bg-0”},</div>
<div>{label: “VFP”, value: “VFP”, class: “bg-0”},</div>
<div>{label: “VM – valvola a manicotto”, value: “VM”, class: “bg-0”},</div>
<div>{label: “VMM – VALVOLA A MANICOTTO MECCANICA”, value: “VMM”, class: “bg-0”},</div>
<div>{label: “VSA – Fine drum screen”, value: “VSA”, class: “bg-0”},</div>
<div>{label: “VSE – Overflow spillway”, value: “VSE”, class: “bg-0”},</div>
<div>{label: “VWP – Compattatore a vite”, value: “VWP”, class: “bg-0”},</div>
<div>{label: “WAH – Mixer”, value: “WAH”, class: “bg-0”},</div>
<div>{label: “WBH – Mixer”, value: “WBH”, class: “bg-0”},</div>
<div>{label: “WBHT – Mixer”, value: “WBHT”, class: “bg-0”},</div>
<div>{label: “WBN – Mixer”, value: “WBN”, class: “bg-0”},</div>
<div>{label: “WML”, value: “WML”, class: “bg-0”},</div>
<div>{label: “WMPC”, value: “WMPC”, class: “bg-0”},</div>
<div>{label: “XBG – Flange joints”, value: “XBG”, class: “bg-0”},</div>
<div>{label: “Z – scaricatore telescopico”, value: “SS”, class: “bg-0”},</div>
<div>{label: “ZM – MINIFILL – scaricatore telescopico”, value: “ZM”, class: “bg-0”},</div>
<div>{label: “ZN – EMO – scaricatore telescopico”, value: “ZN”, class: “bg-0”},</div>
<div>{label: “ZSB”, value: “ZSB”, class: “bg-0”},</div>
<div>{label: “Outsourcing product”, value: “OUTSOURCING_PRODUCT”, class: “bg-0”},</div>
<div>{label: “XEPA – Spira”, value: “XEPA”, class: “bg-0″},</div>
<div>];</div>
<div></script></div>
<div></smart-drop-down-list></div>
<div></form></div>
<div> <!– scripts –></div>
<div> <script src=”../../../source/smart.elements.js”></script></div>
<div> <script src=”index.js”></script></div>
<div></body></div>
<div></html></div> -
AuthorPosts
- You must be logged in to reply to this topic.