Error or Notifications area Set Focus + save and close in child dialogue form header

Hello @gkhadra,

Please see this community post to know how to duplicate the error message near the submit button.

And to fix the command bar position in the dialog window, please paste the below CSS to the CSS Editor.

#ms-notdlgautosize .ms-CommandBar.fd-form.fd-form-toolbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 99;
}
​
#ms-notdlgautosize .container-fluid{
  padding-top: 40px;
  padding-bottom: 10px
}
1 Like