Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    horizontal scroll bar not appearing for Listgrid

    horizontal scroll bar not appearing for Listgrid

    we have a

    Code:
    isc.TabSet.create({
    	ID:"_itemDetailTabs",
    	tabs:[
    		{title:"View", pane:_itemList, ID:"_viewTab", width:70, icon:"[SKIN]actions/icon_view.png"}		
    
    and this itemDetailTabs are added to pageLayout
    
    	],
    
    isc.HLayout.create({
    	ID:"_pageLayout",
    	width:"100%",
    	height:"100%",
    	members:[
    		isc.SectionStack.create({
    			ID:"_rightSideLayout",
    			visibilityMode:"multiple",
                animateSections:true,
    			sections:[
    				{title:"Search",autoShow:true,height:15, items:[
    					isc.Canvas.create({
    						ID:"_findPane",
    						height:139,
    						overflow:"auto",
                            styleName:"defaultBorder",
    						children:[_searchContainer]
    					})				
    				]},
    				{title:"Details", autoShow:true,height:15, items:[_itemDetailTabs]}
    			]
    		})
    	]
    });
    smartcleint 8.1 version tested in IE
    Please help

    #2
    We can't run this code, as it refers to widgets that aren't shown (_itemList). Making minimal changes to fix it led to not reproducing an issue.

    8.1 is very very old. You should upgrade as soon as possible; 8.1 doesn't support browsers now in common use.

    When you post, remember to include your *full* version (not just 8.1), and be specific about the version of IE as well.

    Comment

    Working...
    X