- change grid edit mode to not always on making the UI appear more responsive
This commit is contained in:
parent
d541bb4b49
commit
c67dc4bb93
|
@ -0,0 +1,8 @@
|
|||
-- Nov 24, 2009 4:20:31 PM MYT
|
||||
-- https://sourceforge.net/tracker/?func=detail&aid=2902984&group_id=176962&atid=955896 [Make grid edit mode not always on to make the UI appear more responsive]
|
||||
UPDATE AD_SysConfig SET Value='N',Updated=TO_DATE('2009-11-24 16:20:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50019
|
||||
;
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
-- Nov 24, 2009 4:20:31 PM MYT
|
||||
-- https://sourceforge.net/tracker/?func=detail&aid=2902984&group_id=176962&atid=955896 [Make grid edit mode not always on to make the UI appear more responsive]
|
||||
UPDATE AD_SysConfig SET Value='N',Updated=TO_TIMESTAMP('2009-11-24 16:20:31','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50019
|
||||
;
|
||||
|
||||
COMMIT;
|
||||
|
||||
|
|
@ -114,8 +114,8 @@ public class GridPanel extends Borderlayout implements EventListener
|
|||
//default paging size
|
||||
pageSize = MSysConfig.getIntValue(PAGE_SIZE_KEY, 100);
|
||||
|
||||
//default true for backward compatibility
|
||||
modeless = MSysConfig.getBooleanValue(MODE_LESS_KEY, true);
|
||||
//default false for better performance
|
||||
modeless = MSysConfig.getBooleanValue(MODE_LESS_KEY, false);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue