Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
DNN-8485: Modified the drop down select code to make it can select co…
Browse files Browse the repository at this point in the history
…rrect item
  • Loading branch information
Kan Ma committed Dec 21, 2016
1 parent 130f543 commit 748cb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controls/UrlControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public void BindData()
if (Files.Items.FindByText(fileName) != null)
{
Files.ClearSelection();
Files.Items.FindByText(fileName).Selected = true;
Files.SelectedIndex = Files.Items.IndexOf(Files.Items.FindByText(fileName));
}
}
}
Expand Down

0 comments on commit 748cb9f

Please sign in to comment.