SEBSERV-33 should be fixed also for edge browser

This commit is contained in:
anhefti 2019-04-01 14:13:09 +02:00
parent 36f2bae79a
commit 529e3a84f2
3 changed files with 8 additions and 1 deletions

View file

@ -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)

View file

@ -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(

View file

@ -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);
}
}
}