12345678910111213141516171819202122232425262728293031323334353637383940 |
- function RedrawAction() {
- this.m_specUpdated = false;
- }
- RedrawAction.prototype = new ModifyReportAction();
- RedrawAction.prototype.reuseQuery = function() { return true; };
- RedrawAction.prototype.keepRAPCache = function() { return false; };
- RedrawAction.prototype.setSpecUpdated = function(flag)
- {
- this.m_specUpdated = flag;
- };
- RedrawAction.prototype.getUndoHint = function()
- {
- return RV_RES.IDS_JS_ADVANCED_EDITING;
- };
- RedrawAction.prototype.addActionContext = function()
- {
- if (this.m_specUpdated) {
- return "<reportActions><GetInfo><specUpdatedInBUA/></GetInfo></reportActions>";
- }
- return "<reportActions><GetInfo/></reportActions>";
- };
|