Multi-select: Showing "Multiple values" when all values are the same

Multi-select: Showing "Multiple values" when all values are the same

burncharburnchar Posts: 118Questions: 12Answers: 0

We've found that, when displaying some values, the multi-row edit form shows some identical values as different, with the message "Multiple values. The selected items contain..."
This occurs no matter the number of rows chosen (2+).

See attached screen capture.

The JSON load for those rows is as follows.
"Multiple Values" is shown for the fields with value: 3500000000000000
The values are shown in the table with scientific notation, but they are stored internally as integers.

                        select: {
                            style: 'os',
                            selector: 'td:first-child'
                        },
[
    2242, // PK, not shown
    null,
    null,
    null,
    "AB1",
    "P+FOO",
    17,
    null,
    3500000000000000, // HERE
    {
        "id": 5,
        "name": "BF2"
    }
],
[
    3260, // PK, not shown
    null,
    null,
    null,
    "AB2",
    "P+FOO",
    17,
    null,
    3500000000000000, // HERE
    {
        "id": 5,
        "name": "BF2"
    },
],...

Could this be something I am doing wrong, or a bug perhaps?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,815Questions: 1Answers: 10,517 Site admin
    Answer ✓

    Hi,

    Interesting! I'm afraid I don't have an immediate answer for you here. I'll take a dig through the trace you sent my PM, but could you show me the Editor field configuration, and also the DataTable column configuration, for the data in question here?

    Thanks,
    Allan

  • burncharburnchar Posts: 118Questions: 12Answers: 0

    I have attached the requested data to a PM.

This discussion has been closed.