* [ 1661548 ] WAN: tab loading should be improved
- Improve loading of field meta data for wan profile - Added optional background loading of field meta data ( default to off )
This commit is contained in:
parent
3e6ec3410c
commit
39affc8aa1
|
|
@ -298,6 +298,12 @@ public class GridController extends CPanel
|
||||||
|
|
||||||
if (!lazy)
|
if (!lazy)
|
||||||
init();
|
init();
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (Boolean.valueOf(Ini.getProperty(Ini.P_LOAD_TAB_META_DATA_BG)).booleanValue())
|
||||||
|
m_mTab.initTab(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// log.config( "GridController.dynInit (" + mTab.toString() + ") - fini");
|
// log.config( "GridController.dynInit (" + mTab.toString() + ") - fini");
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue