123456789101112131415161718192021222324252627282930313233343536 |
- function CRedo()
- {
- };
- CRedo.prototype = new AFeatureObject();
- CRedo.prototype.setup = function (aFeatureParams)
- {
- var repMgr = null;
- if (goApplicationManager)
- {
- repMgr = goApplicationManager.getReportManager();
- }
- if (repMgr !== null)
- {
- repMgr.getUndoManager().redo(repMgr.get("sMiniQueryMarkup"));
- }
- };
|