SmartClient Version: SNAPSHOT_v13.1d_2024-10-18/AllModules Development Only (built 2024-10-18)
Safari on iOS (both in XCode simulator and on physical device)
happens also on iOS and Android emulator in Chrome
Hello, please try this test case:
you may see that drag on the grid works on desktop, but handset drag won't start *unless* you remove fixedRecordHeights: false.
Is it expected?
Safari on iOS (both in XCode simulator and on physical device)
happens also on iOS and Android emulator in Chrome
Hello, please try this test case:
Code:
isc.HLayout.create({
width: "100%", height: "100%",
canDrag: true,
dragStart: function () {
isc.logEcho(isc.EventHandler.getTarget().getID(), "drag start")
return this.Super('dragStart', arguments);
},
members: [
isc.ListGrid.create({
ID: "dsListGrid",
width: "100%",
height: "100%",
fixedRecordHeights: false,
autoFetchData: true,
dataSource: "supplyItem"
})
]
})
Is it expected?
Comment