Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Issue with rowEditorExit on mobile

    SmartClient Version: v13.1p_2026-06-30/AllModules Development Only (built 2026-06-30)

    Safari on iPad (Air 11" M4 iOS 26.5) XCode Simulator

    Hi, I have an issue that only occurs on mobile devices.
    The use case is a grid with modalEditing: true.

    While editing a new row, when a value is selected from the pickList, rowEditorExit is called on the grid.

    Note: This doesn't seem to happen when using editorProperties: { pickListPlacement: "halfScreen" }.


    Code:
    isc.ListGrid.create({
        ID: "aGrid",
        data: [
            {
                test: "Foo Bar"
            }
        ],
        width: "100%", height: "100%",
        canEdit: true,
        fields: [
            {
                name: "test",
                title: "just a test case",
                valueMap: [
                    "First",
                    "Second",
                    "Third",
                    "Fourth"
                ]
            }
        ],
        modalEditing: true,
        rowEditorExit: function (editCompletionEvent, record, newValues, rowNum) {
            isc.logEcho("rowEditorExit")
            return true;
        }
    }).show()
    
    aGrid.startEditingNew()
Working...
X