1、EXT表格数据只显示一条问题?
2、如何让新保存的数据,在前台第一行显示。
(1)SQL语句中,让ID倒序查询。。
select * from tablename order by id desc
(2)JS效果:
最简单的就是window.location='#'+tr.id
Table显示,tr.id,需要为tr定义一定ID号
3、取消panel中的水平滚动条?
在属性中,添加下面样式。
autoScroll:true,
bodyStyle:'overflow-y:auto;overflow-x:hidden;'
4、前台页面中ifarme嵌套,如何取得父窗体中的参数?
window.parent.xx父窗口的变量
window.parent.RuId
5、工具栏数据右移效果
var tbar = new Ext.Toolbar({
height : 25,
items : [{
text : '确认表',
iconCls:Ext.ux.icons.icon_gd_go,
disabled:true
}, '->', {
text : '11',
iconCls : Ext.ux.icons.icon_edit
}]
});