cancel
Showing results for 
Search instead for 
Did you mean: 

MDK Grid table converting into Object page on iPad Air 11 inch when used inside a tab/bottom control

age0110_
Explorer
0 Kudos
81

Hi Experts,

I have implemented a Grid Table for 3 columns but this gets converted into Object table on my new iPad air 11inch when I use it inside a tab control or bottom tab page, when used alone in segmented page it does work fine. I understand that Grid table will be converted into Object table for phones however having that converted to object  table because it is inside a tab it doesn't makes sense to me? Am I doing something wrong or is this a bug?

Here is the simplest code I tried:

{
    "Controls": [
        {
            "_Type": "Control.Type.SectionedTable",
            "_Name": "SectionedTable0",
            "Sections": [
                {
                    "_Type": "Section.Type.GridTable",
                    "Target": {
                        "Service": "/Test/Services/Mobile_Test.service",
                        "EntitySet": "ZC_Test_REFERENCE_SOURCE"
                    },
                    "_Name": "SectionGridTable0",
                    "Visible": true,
                    "EmptySection": {
                        "FooterVisible": false
                    },
                    "Separators": {
                        "TopSectionSeparator": false,
                        "BottomSectionSeparator": true,
                        "HeaderSeparator": true,
                        "FooterSeparator": true,
                        "ControlSeparator": true
                    },
                    "Row": {
                        "Items": [
                            {
                                "NumberOfLines": 1,
                                "Text": "Item",
                                "TextAlignment": "Left"
                            },
                            {
                                "NumberOfLines": 1,
                                "Text": "Item",
                                "TextAlignment": "Left"
                            },
                            {
                                "NumberOfLines": 1,
                                "Text": "Item",
                                "TextAlignment": "Left"
                            }
                        ],
                        "Layout": {
                            "ColumnWidthPercentage": [
                                0.33,
                                0.33,
                                0.33
                            ]
                        },
                        "AccessoryType": "None"
                    },
                    "DataPaging": {
                        "ShowLoadingIndicator": false,
                        "PageSize": 50
                    }
                }
            ],
            "FilterFeedbackBar": {
                "ShowAllFilters": false,
                "_Type": "Control.Type.FilterFeedbackBar"
            }
        }
    ],
    "_Type": "Page",
    "_Name": "test2",
    "ActionBar": {
        "Items": [],
        "_Name": "ActionBar1",
        "_Type": "Control.Type.ActionBar"
    }
}

Accepted Solutions (0)

Answers (0)