SmartClient Version: SNAPSHOT_v13.1d_2024-08-07/AllModules Development Only (built 2024-08-07)
Safari on iPhone 8 (physical device)
Hello, I've reproduced a bug that I first saw in my application, within the showcase https://www-demos.smartclient.com/sm...izeIncrease=10
Please modify the test case as follows:
As you may see I've added a special value (which actually exists in the ResultSet) and enabled separateSpecialValues.
Firstly, there might be a small visual glitch in Shiva: I'm not sure if the shadow style below the special values is intended.
The actual bug (which sometimes takes several tries to manifest) occurs as follows:
- tap to open the comboBox
- Scroll down through a significant number of records (not sure if this is necessary).
- close the pickList
- Reopen it: If you're (un)lucky, you'll only see the special value and an empty pickList. However, scrolling the list will reveal the records.
You can see a video where this bug occurred three times:
https://www.youtube.com/shorts/XsOu74KXxvI
Here is a screenshot of the web inspector when the pickList records are not visible:
And this is after scrolling, where the records become visible:
Safari on iPhone 8 (physical device)
Hello, I've reproduced a bug that I first saw in my application, within the showcase https://www-demos.smartclient.com/sm...izeIncrease=10
Please modify the test case as follows:
Code:
isc.DynamicForm.create({ ID: "testForm", linearOnMobile: true, wrapItemTitles: false, fields: [ { name: "filteredCombo", title: "Choose an item (ComboBox)", editorType: "ComboBoxItem", addUnknownValues: false, pickListPlacement: "fillScreen", optionDataSource: "supplyItem", displayField: "itemName", valueField: "itemID", specialValues: {"1661": "Punch 4 Hole Open Drill D-4"}, separateSpecialValues: true } ] });
Firstly, there might be a small visual glitch in Shiva: I'm not sure if the shadow style below the special values is intended.
The actual bug (which sometimes takes several tries to manifest) occurs as follows:
- tap to open the comboBox
- Scroll down through a significant number of records (not sure if this is necessary).
- close the pickList
- Reopen it: If you're (un)lucky, you'll only see the special value and an empty pickList. However, scrolling the list will reveal the records.
You can see a video where this bug occurred three times:
https://www.youtube.com/shorts/XsOu74KXxvI
Here is a screenshot of the web inspector when the pickList records are not visible:
And this is after scrolling, where the records become visible:
Comment