Skip to content

Commit

Permalink
Lookup condition handls valueof better
Browse files Browse the repository at this point in the history
  • Loading branch information
rappen committed Apr 10, 2024
1 parent 41df84a commit 6d9a877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FetchXmlBuilder/Controls/conditionControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ protected override Dictionary<string, string> GetAttributesCollection()

private void EnableValueFields()
{
panValueOf.Enabled = string.IsNullOrEmpty(cmbValue.Text);
panValueOf.Enabled = string.IsNullOrEmpty(cmbValue.Text) || cmbValue.Text == Guid.Empty.ToString();
if (!panValueOf.Enabled)
{
cmbValueOf.Text = null;
Expand Down

0 comments on commit 6d9a877

Please sign in to comment.