Using SmartClient Version: v8.2p_2013-03-04,
and running with data from isomorphic/system/reference/SmartClient_Explorer.html#treesEditing
Run the testcase. Start expanding the tree. The vertical scrollbar shows but horizontally, there is no scrollbar. I would like to at the very minimum, have a scrollbar grow depending on the data that is being shown on the tree horizontally. Ultimately, I want to be able to autofit the data horizontally when expanded up the 500px. Once the 500px is reached, then the scrollbar will show. Right now I only see this happening if I resize the column manually.
Is there any way to do this?
and running with data from isomorphic/system/reference/SmartClient_Explorer.html#treesEditing
Run the testcase. Start expanding the tree. The vertical scrollbar shows but horizontally, there is no scrollbar. I would like to at the very minimum, have a scrollbar grow depending on the data that is being shown on the tree horizontally. Ultimately, I want to be able to autofit the data horizontally when expanded up the 500px. Once the 500px is reached, then the scrollbar will show. Right now I only see this happening if I resize the column manually.
Is there any way to do this?
Code:
isc.TreeGrid.create({ ID: "employeeTree", width:150, height: 250, dataSource: "employees", autoFetchData: true,autoFitMaxWidth:500,autoFitMinWidth: 200, autoFitData: "horizontal",overflow:"scroll", canEdit: true, canReorderRecords: true, canAcceptDroppedRecords: true, nodeIcon: "icons/16/person.png", folderIcon: "icons/16/person.png", showOpenIcons: false, showDropIcons: false, closedIconSuffix: "", fields: [ {name: "Name"} ] });
Comment