Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb5a75c commit 7511023Copy full SHA for 7511023
1 file changed
lib/core/common.py
@@ -3556,7 +3556,7 @@ def geturl(self):
3556
for form in forms:
3557
try:
3558
for control in form.controls:
3559
- if hasattr(control, "items") and not control.disabled:
+ if hasattr(control, "items") and not any((control.disabled, control.readonly)):
3560
# if control has selectable items select first non-disabled
3561
for item in control.items:
3562
if not item.disabled:
0 commit comments