Skip to content

Commit

Permalink
forgot something to include...
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDoe committed Feb 1, 2024
1 parent debaebf commit 3f1c1e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Binary file modified src/backend/SCM_API.sdp
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function GetXMLProperties(control, sIndentation = "")
// skip id in brackets
if(sPropertyName === "(Id)")
{
control.Id = value;
control.Id = control.itemId = value;
continue;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Description.. : HTML Forms Designer
Author....... : DC
Date......... : 2623-07-11
*/
#include "FormDesigner.ContextMenu"
#include "FormDesigner.GUIFunctions"
#include "FormDesigner.TreeView"
#include "FormDesigner.ReadXML"
#include "FormDesigner.SaveXML"
//#include "FormDesigner.ContextMenu"
//#include "FormDesigner.GUIFunctions"
//#include "FormDesigner.TreeView"
//#include "FormDesigner.ReadXML"
//#include "FormDesigner.SaveXML"

//BEGIN_GLOBAL_DECLARATIONS (place global declarations inside this section)

Expand Down Expand Up @@ -56,6 +56,9 @@ async function dgdProperties_OnUpdatingCell(sender, eventArgs)

switch (sPropertyName)
{
case "(Id)":
selectedControl.itemId = value;
return;
case "Visible":
// change opacity
if (value === "True")
Expand Down

0 comments on commit 3f1c1e3

Please sign in to comment.