CSM B2024-087 Fix RO Editor Inconsistencies
Refresh issue in RO Definitions. Modify an In Use field item that is not one of the Standard items, choose Continue, choose OK in the Text Definition Field. when prompted if want to Update Local or Generic definitions: 1. Prompt should contain table name (previously was not for Setpoint items) 2. If Select "Yes", Should refresh to new field name when return to previous screen / click ok to go back to RO Definition.
This commit is contained in:
parent
13edc9c9ff
commit
f0493e60d8
@ -377,6 +377,7 @@ namespace ROEditor
|
|||||||
this.btnOK.TabIndex = 3;
|
this.btnOK.TabIndex = 3;
|
||||||
this.btnOK.Text = "OK";
|
this.btnOK.Text = "OK";
|
||||||
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||||||
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
//
|
//
|
||||||
// btnCancel
|
// btnCancel
|
||||||
//
|
//
|
||||||
@ -553,6 +554,7 @@ namespace ROEditor
|
|||||||
// update the local/internal copy of the schema.
|
// update the local/internal copy of the schema.
|
||||||
if (success != true)
|
if (success != true)
|
||||||
{
|
{
|
||||||
|
this.DialogResult = DialogResult.Cancel;
|
||||||
return; // DO YET process an error.
|
return; // DO YET process an error.
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -266,6 +266,7 @@ namespace ROEditor
|
|||||||
|
|
||||||
if (success != true)
|
if (success != true)
|
||||||
{
|
{
|
||||||
|
this.DialogResult = DialogResult.Cancel;
|
||||||
return; // DO YET process an error.
|
return; // DO YET process an error.
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -367,6 +368,7 @@ namespace ROEditor
|
|||||||
//
|
//
|
||||||
// btnOK
|
// btnOK
|
||||||
//
|
//
|
||||||
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
this.btnOK.Location = new System.Drawing.Point(216, 72);
|
this.btnOK.Location = new System.Drawing.Point(216, 72);
|
||||||
this.btnOK.Name = "btnOK";
|
this.btnOK.Name = "btnOK";
|
||||||
this.btnOK.Size = new System.Drawing.Size(88, 24);
|
this.btnOK.Size = new System.Drawing.Size(88, 24);
|
||||||
|
@ -248,6 +248,7 @@ namespace ROEditor
|
|||||||
|
|
||||||
if (success != true)
|
if (success != true)
|
||||||
{
|
{
|
||||||
|
this.DialogResult = DialogResult.Cancel;
|
||||||
return; // DO YET process an error.
|
return; // DO YET process an error.
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -433,6 +433,7 @@ namespace ROEditor
|
|||||||
//
|
//
|
||||||
// btnOK
|
// btnOK
|
||||||
//
|
//
|
||||||
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||||
this.btnOK.Location = new System.Drawing.Point(24, 248);
|
this.btnOK.Location = new System.Drawing.Point(24, 248);
|
||||||
this.btnOK.Name = "btnOK";
|
this.btnOK.Name = "btnOK";
|
||||||
this.btnOK.Size = new System.Drawing.Size(144, 24);
|
this.btnOK.Size = new System.Drawing.Size(144, 24);
|
||||||
|
@ -2796,7 +2796,7 @@ namespace RODBInterface
|
|||||||
nodetocheck = (VlnXmlElement) nodetocheck.ParentNode;
|
nodetocheck = (VlnXmlElement) nodetocheck.ParentNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
return nodetocheck.GetAttribute("MenuTitle");
|
return nodetocheck.FirstChild.InnerText;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override XmlSchema RODB_GetGroupSchema(VlnXmlElement elem)
|
public override XmlSchema RODB_GetGroupSchema(VlnXmlElement elem)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user