@tbettinazziaxioma-it

@tbettinazziaxioma-it

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 73 total)
  • Author
    Posts
  • in reply to: Get back modified data #109397

    No further help ?

    Tks

    in reply to: Get back modified data #109379

    I’m waiting for the renewal of the support (it was approuved for the next year budget).

    Looking a little deeper I saw the editEnd event is executed, in effect, but only after the onClick of the button : if I submit the form in onClick of the button data are sent incorrectly because editEnd was not still fired.

    In small testcase I prepared  You’ll see in  simplest way I found the onClick is fired before the editEnd.

    I simply modified the grid/cell-editing example adding a little code as You can see below.

    Could You help me to solve that issue ?

    Tks

     
    <div><!DOCTYPE html></div>
    <div><html xmlns=”http://www.w3.org/1999/xhtml”></div&gt;
    <div><head></div>
    <div>    <title>Grid Cell Editing Demo</title></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>    <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>    <link rel=”stylesheet” type=”text/css” href=”styles.css” /></div>
    <div></div>
    <div></head></div>
    <div><body class=”viewport” onload=”carrelloInit()”></div>
    <div>    <script></div>
    <div>function carrelloInit() {</div>
    <div>const grid = document.getElementById(‘grid’);</div>
    <div>    console.log(“Fatto 1”);</div>
    <div>    grid.addEventListener(‘endEdit’, function (event) {</div>
    <div>    const detail = event.detail,</div>
    <div>        id = detail.id,</div>
    <div>        dataField = detail.dataField,</div>
    <div>        row = detail.row,</div>
    <div>        column = detail.column,</div>
    <div>        cell = detail.cell,</div>
    <div>        data = detail.data,</div>
    <div>        value = detail.value;</div>
    <div>        console.log(“Modified ” + dataField + ” / ” + id + ” / ” + value);</div>
    <div>});</div>
    <div>}</div>
    <div>function confermaCarrello() {</div>
    <div>    console.log(“Carrello confermato”)</div>
    <div>}</div>
    <div></script></div>
    <div><div class=”demo-description”></div>
    <div><h1>Grid Cells Editing</h1></div>
    <div>Click on any cell to begin edit its value. To confirm the changes, press ‘Enter’ or click on another cell or outside the Grid. To cancel the changes, press ‘Escape’.</div>
    <div></div></div>
    <div>    <smart-grid id=”grid”></smart-grid></div>
    <div>    <button id=”b1001105″ class=”cfg-button cfg-button-floating” type=”button” role=”button” onclick=”confermaCarrello();”><span class=”cfg-button-text”>Annulla</span></button></div>
    <div>    <!– scripts –></div>
    <div><script src=”../../../common/data.js”></script></div>
    <div>    <script src=”../../../source/modules/smart.grid.js”></script></div>
    <div><script src=”../../../source/modules/smart.button.js”></script></div>
    <div><script src=”index.js”></script></div>
    <div></body></div>
    <div></html></div>
     

    in reply to: Get back modified data #109377

    Sorry for the mispelling.

    I added document.activeElement.blur() and it didnt work.

     

    in reply to: Get back modified data #109376

    I added

    <span style=”background-color: #ffffff; padding: 0px 0px 0px 2px;”><span style=”color: #000000; background-color: #ffffff; font-family: ‘Consolas’; font-size: 10pt; white-space: pre;”> <span style=”color: #268bd2;”>document</span>.<span style=”color: #268bd2;”>activeElement</span>.<span style=”color: #268bd2;”>blur</span>();</span></span>

    to the operation done by the button but nothing changed.

    May you help me ?

    Tks

    in reply to: Get back modified data #109372

    I applied the suggestion You posted in the reply #109030 and it works but in a special case : when I modify the field and then I click a button outside the grid, the endEdit doesn’t fire and then data are not saved.

    How can I avoid such problem ?

    Tks

    in reply to: Grid editing numbers #109368

    I added

    smart-grid smart-number-input{
    –smart-editor-addon-width: 0px;
    }

    to my css but it doesn’t seem to work.

    What’s wrong?

    Tks

    in reply to: Grid editing numbers #109366

    Yes  but editing the field I see the up and down button I don’t want because when the field is small they take too much space to see the real number.

    I’d like to have a number editing without buttons which are very often useless.

    Tks

    in reply to: ERROR in datagrid #109357

    I do the operation in page onload event.

    Is the grid rendered at that time ?

    How can I verify if it was already rendered ?

    Tks

    in reply to: Data values #109343

    I knew the visible property but in order to make a column visible or not with that property I need to identify at runtime columns which should be visible or not.

    A custom property, if any,  could be a good solution to identify them.

    Tks

    in reply to: Data values #109327

    Is it possible to use custom data also on grid columns and cells ?

    E.G. can I add a data (say data-visible) as a property to a grid colum and read it with js ?

    And with grid cells ?

    Tks

    in reply to: Data values #109322

    Dataset is not described in API or, at least, I didn’t find it.

    Could you provide a link for the explanation of such property ?

    Tks

    in reply to: Table getting back values #109295

    I need back value of all modified cells with some id to distinguish them.

    In your example I don’t understand where can I get the value on the server : const val is a javascript variable not a server one.

    Tks

    in reply to: DropDownList problem in 17.0 #109248

    I 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&gt;
    <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&gt;
    <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>

    in reply to: DropDownList problem in 17.0 #109247

    No further help ?

    Tks

    in reply to: DropDownList problem in 17.0 #109233

    I 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

Viewing 15 posts - 1 through 15 (of 73 total)