tijian_tieying/web/Web/Controls/js/centerGrid.js
2025-02-20 12:14:39 +08:00

18 lines
545 B
JavaScript

function BuildGridView(typeID,title,href)
{
this.gridView = new Ext.Panel
({
id: 'PanelArticleViewID' + typeID, layout: 'fit', title: title, collapsible: true, closable: true, //autoHeight:true,//
frame: false,
autoWidth: true,
autoScroll: true,
items:
[
{
html: "<iframe scrolling='true' width='100%' height='100%' frameborder='0' src='"+href+"'></iframe>"
}
]
});
}