Skip to content

Commit 5ec586e

Browse files
AmanPrasad43amanpras
andauthored
Bug fix for Environment Application list grid and Java Binding in Image Sikuli Action (#4482)
Co-authored-by: amanpras <amanpras@amdocs.com>
1 parent 5c74812 commit 5ec586e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

Ginger/Ginger/Actions/ActionEditPages/ActSikuliEditPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public ActSikuliEditPage(ActSikuli Act)
6464
ChangeAppScreenSizeComboBox.Init(actSikuli.GetOrCreateInputParam(ActSikuli.Fields.ChangeAppWindowSize,
6565
ActSikuli.eChangeAppWindowSize.None.ToString()), typeof(ActSikuli.eChangeAppWindowSize), false, new SelectionChangedEventHandler(ChangeAppWindowSize_Changed));
6666

67-
JavaPathTextBox.Init(Context.GetAsContext(actSikuli.Context), actSikuli.GetOrCreateInputParam(nameof(ActSikuli.CustomJavaPath)), actSikuli.CustomJavaPath, true, false);
67+
JavaPathTextBox.Init(Context.GetAsContext(actSikuli.Context), actSikuli.GetOrCreateInputParam(nameof(ActSikuli.CustomJavaPath)), true, false);
6868

6969

7070
WeakEventManager<TextBoxBase, TextChangedEventArgs>.RemoveHandler(source: xPatternImageLocationTextBox.ValueTextBox, eventName: nameof(TextBoxBase.TextChanged), handler: ValueTextBox_TextChanged);

Ginger/Ginger/Environments/AppsListPage.xaml.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#region License
1+
#region License
22
/*
33
Copyright © 2014-2026 European Support Limited
44
@@ -129,6 +129,9 @@ private void SetGridView()
129129
new GridColView() { Field = nameof(EnvApplication.Url), WidthWeight = 100, Header = "URL" },
130130
]
131131
};
132+
133+
grdApps.SetAllColumnsDefaultView(view);
134+
grdApps.InitViewItems();
132135
}
133136

134137
private void SetGridData()

0 commit comments

Comments
 (0)