@tullio0106live-it

@tullio0106live-it

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: datePicker error in grid #102994
    tullio0106@live.it
    Participant

    Unfortunately it doesn’t seem to be solved.

    I still set the date format to dd/MM/yyyy  and set the value to 01/06/1954 (I mean first of june) but it’s represented as 06/01/1954 (six of january) and when the date picker opens it’s still on 6 january.

    Tks

     

    in reply to: datePicker error in grid #102991
    tullio0106@live.it
    Participant

    No further help ?

    in reply to: Problems with dropdownlist editor #102990
    tullio0106@live.it
    Participant

    No further help ?

    in reply to: Problems with dropdownlist editor #102944
    tullio0106@live.it
    Participant

    Sorry but I dont understand the point.

    the file, named beverages.json shoult contain :

    [{
    “C1”: “1”,
    “C2”: “Hot Chocolate”,
    “C4”: “SEAVISION”,
    “C6”: “01/06/1954”,
    “C5”: “true”,
    “C3”: “14g”
    }]

    as indicated before .

    Using theese data, I tested it again, I see the grid with a row of  data as expected.

    Tks

     

    in reply to: datePicker error in grid #102943
    tullio0106@live.it
    Participant

    Sorry but I don’t understand.

    the provided data are :

    [{
    “C1”: “1”,
    “C2”: “Hot Chocolate”,
    “C4”: “SEAVISION”,
    “C6”: “01/06/1954”,
    “C5”: “true”,
    “C3”: “14g”
    }]

     

    where C2 field is included as well as C6 (the date) in the european format dd/MM/yyyy, as stated by definition.

    What’s wrong ?

    Tks

    in reply to: Problems with dropdownlist editor #102938
    tullio0106@live.it
    Participant

    May be you looked to a wrong codpen address

    This is the html content

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Grid Cell Editing Confirm Dialog Demo</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
    <link rel="stylesheet" type="text/css" href="../../../source/styles/smart.default.css" />
    <link rel="stylesheet" type="text/css" href="../../../styles/demos.css" />
    <link rel="stylesheet" type="text/css" href="styles.css" />
    <script src="../../../../common/data.js"></script>
    </head>
    <body class="viewport">
    <div class="demo-description">
    <h1>Grid Cells Editing Confirm Tullio</h1>
    We implement the 'onCellUpdate' Grid function. When a cell value is edited, 'onCellUpdate' is called. That callback can be used for Client-Server validation of the Cell Editing. The function is implemented for the 'Quantity' column and we simulate Ajax call to a Web Server by using setTimeout and
    confirm the changes by calling the 4th argument of 'onCellUpdate', which is a function. When we call it with 'true', changes are confirmed. Otherwise, they are canceled. In this example, when the 'Quantity' is > 10, changes are confirmed.
    </div>
    <smart-grid id="grid"></smart-grid>

    <!-- scripts -->
    <script src="../../../common/data.js"></script>
    <script type="module" src="../../../source/modules/smart.grid.js">
    </script>
    <script type="module" src="../../../source/modules/smart.button.js">
    </script>
    <script type="module" src="index.js">
    </script>
    </body>
    </html>

    and the grid is there.

    Tks

    in reply to: datePicker error in grid #102937
    tullio0106@live.it
    Participant

    May be you looked to a wrong codpen address

    This is the html content

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Grid Cell Editing Confirm Dialog Demo</title>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
    <link rel="stylesheet" type="text/css" href="../../../source/styles/smart.default.css" />
    <link rel="stylesheet" type="text/css" href="../../../styles/demos.css" />
    <link rel="stylesheet" type="text/css" href="styles.css" />
    <script src="../../../../common/data.js"></script>
    </head>
    <body class="viewport">
    <div class="demo-description">
    <h1>Grid Cells Editing Confirm Tullio</h1>
    We implement the 'onCellUpdate' Grid function. When a cell value is edited, 'onCellUpdate' is called. That callback can be used for Client-Server validation of the Cell Editing. The function is implemented for the 'Quantity' column and we simulate Ajax call to a Web Server by using setTimeout and
    confirm the changes by calling the 4th argument of 'onCellUpdate', which is a function. When we call it with 'true', changes are confirmed. Otherwise, they are canceled. In this example, when the 'Quantity' is > 10, changes are confirmed.
    </div>
    <smart-grid id="grid"></smart-grid>

    <!-- scripts -->
    <script src="../../../common/data.js"></script>
    <script type="module" src="../../../source/modules/smart.grid.js">
    </script>
    <script type="module" src="../../../source/modules/smart.button.js">
    </script>
    <script type="module" src="index.js">
    </script>
    </body>
    </html>

    and the grid is there.

    Tks

    in reply to: Problems with dropdownlist editor #102933
    tullio0106@live.it
    Participant

    Nobody can help about this topic ?

    Tks

    in reply to: datePicker error in grid #102932
    tullio0106@live.it
    Participant

    Nobody can help about this topic ?

    Tks

    in reply to: datePicker error in grid #102921
    tullio0106@live.it
    Participant

    Here the codpen link : https://codepen.io/tullio0106/pen/JjOebye

     

    This is the beverage.json data I used

    [{
    “C1”: “1”,
    “C2”: “Hot Chocolate”,
    “C4”: “SEAVISION”,
    “C6”: “01/06/1954”,
    “C5”: “true”,
    “C3”: “14g”
    }]

    Tks

     

    P.S. : is the same of the other post

    in reply to: Problems with dropdownlist editor #102920
    tullio0106@live.it
    Participant

    Here the codpen link : https://codepen.io/tullio0106/pen/JjOebye

     

    This is the beverage.json data I used

    [{
    “C1”: “1”,
    “C2”: “Hot Chocolate”,
    “C4”: “SEAVISION”,
    “C6”: “01/06/1954”,
    “C5”: “true”,
    “C3”: “14g”
    }]

    Tks

     

    in reply to: Problems with dropdownlist editor #102916
    tullio0106@live.it
    Participant

    The topic is reproduced by an example.

    How can I upload it to you ?

    Tks

    in reply to: datePicker error in grid #102915
    tullio0106@live.it
    Participant

    The topic is reproduced by an example.

    How can I upload it to you ?

    Tks

    in reply to: datePicker error in grid #102914
    tullio0106@live.it
    Participant

    As a further information my PC language setting is italian.

    As well for the server (same machine).

    Tks

    in reply to: Problems with numberInput editor #102913
    tullio0106@live.it
    Participant

    Solved.

    Tks

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