In v10.0d on iPad2 ios 7.1.1 in landscape layout the treegrid only show a dropdown menu for column headers for frozen tree column, not the other colums when using tap and hold and column's menu button alike. Also the sort arrow on the right of the table when using tap and hold pops up the columns menu above the top of the page and as a result is being cut-off in the middle. This is not a problem in portrait and not a problem in 9.1
Code sample
Code sample
Code:
<!DOCTYPE HTML> <html><head> <script> var isomorphicDir="lib/smartclientSDK_9/isomorphic/", isc_useSimpleNames = false; </script> <script src=lib/smartclientSDK_9/isomorphic/system/modules/ISC_Core.js></script> <script src=lib/smartclientSDK_9/isomorphic/system/modules/ISC_Foundation.js></script> <script src=lib/smartclientSDK_9/isomorphic/system/modules/ISC_Containers.js></script> <script src=lib/smartclientSDK_9/isomorphic/system/modules/ISC_Grids.js></script> <script src=lib/smartclientSDK_9/isomorphic/system/modules/ISC_Forms.js></script> <script src=lib/smartclientSDK_9/isomorphic/system/modules/ISC_DataBinding.js></script> <script src=lib/smartclientSDK_9/isomorphic/skins/Enterprise/load_skin.js></script> </head> <body> <script> isc.TreeGrid.create({ width: "100%", height: "100%", data: isc.Tree.create({ root: {"children":[ { "0":"rootData", "children":[ { "0":"child0", "children":[ {"0":1,"1":1,"2":1}, {"0":1,"1":1,"2":1}, {"0":1,"1":"222222222222222222222","2":1} ] } ] } ]} }), fields: [ { "name":"0", "frozen":true }, { "name":"1" }, { "name":"2" } ] }); </script> </body></html>