SEBSERV-33 should be fixed also for edge browser
This commit is contained in:
parent
36f2bae79a
commit
529e3a84f2
3 changed files with 8 additions and 1 deletions
|
@ -189,6 +189,7 @@ public class LmsSetupForm implements TemplateComposer {
|
|||
.newAction(ActionDefinition.LMS_SETUP_TEST)
|
||||
.withEntityKey(entityKey)
|
||||
.withExec(action -> this.testLmsSetup(action, formHandle))
|
||||
.ignoreMoveAwayFromEdit()
|
||||
.publishIf(() -> modifyGrant && isNotNew.getAsBoolean() && institutionActive)
|
||||
|
||||
.newAction(ActionDefinition.LMS_SETUP_DEACTIVATE)
|
||||
|
|
|
@ -196,7 +196,6 @@ public class QuizDiscoveryList implements TemplateComposer {
|
|||
}
|
||||
|
||||
private void createDetailsForm(final QuizData quizData, final PageContext pc) {
|
||||
this.widgetFactory.labelSeparator(pc.getParent());
|
||||
this.pageService.formBuilder(pc, 4)
|
||||
.readonly(true)
|
||||
.addField(FormBuilder.singleSelection(
|
||||
|
|
|
@ -328,6 +328,13 @@ public class TableFilter<ROW extends Entity> {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
boolean adaptWidth(final int width) {
|
||||
// NOTE: for some unknown reason RWT acts differently on width-property for text inputs and selectors
|
||||
// this is to adjust selection filter criteria to the list column width
|
||||
return super.adaptWidth(width + 25);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue