我正在做一个考勤计划,我有这个要求能够删除用户,所以我决定为此使用 ext js 网格。
我的应用程序我主要使用 jquery,并且我正在使用淡入淡出方法导航到不同的链接。即我的应用程序在单个 url 上运行。
现在,当我在 ext js 网格上执行此操作时,滚动条不会显示。但通常情况下,如果没有渐变导航,则会显示滚动条这是网格的代码:
editableGrid = new Ext.grid.GridPanel({
frame: true,
id: "employeesGrid",
renderTo: "emps",
cm: colModel,
sm: sm,
store: store,
height: 270,
// inline toolbars
tbar: [{
text: 'Delete',
tooltip: 'Click here to delete schedule billing entries',
iconCls: 'remove',
id: 'btnRemoveRow',
handler: DeleteSelectedRows
}]
});
是的,还有一件事,我会在应用程序启动后立即加载商店。当我使用以下代码时,网格在那里,但 div 被隐藏:
$("#empDetails").fadeOut("slow", function () {
$("#reportsLink").fadeOut();
$("#timeInAndOutLink").fadeOut();
$("#employeeInfoLink").fadeOut();
$("#employeesLink").fadeOut();
$("#allEmpsDetails").fadeIn();
});
滚动条未显示