1

我正在使用 Angular 7,并且我已将 formio 表单管理器集成到我们的应用程序中。在该表单管理器上有 4 个按钮 1. 创建表单 2. 查看表单 3. 编辑表单 4. 删除表单

这是我的html代码...

 <div class="m-portlet m-portlet--mobile">
          <div class="m-portlet__body">
            <formio-grid *ngIf="auth.authenticated" 
              [formio]="service.formio" 
              [gridType]="'form'" 
              [query]="{tags: config.tag, type: 'form'}"
              (rowAction)="onAction($event)" 
              (rowSelect)="onSelect($event)" 
              [createText]="'Create Form'" 
              (createItem)="onCreateItem()">
            </formio-grid>
          </div>
      </div>

布局看起来像“ https://formio.github.io/angular-demo/#/manager

在这个我使用像“m-portlet__body”这样的div类在一个布局中显示列表表单,它在一个单独的布局中显示得很好。但是当我点击进入或查看或编辑或创建表单时我面临一个问题表格超出了我页面的边界。所以,如何在一个单独的布局中制作这些表格......

4

0 回答 0