【问题标题】:IFRAME in acumatica formacumatica 形式的 IFRAME
【发布时间】:2020-09-23 14:56:27
【问题描述】:

我正在尝试使用 iframe 从 Acumatica 调用外部 URL。

我试过了,还是不行

<asp:Content ID="cont2" ContentPlaceHolderID="phF" runat="Server">
<px:PXFormView ID="form" runat="server" DataSourceID="ds" DataMember="Document"
    AllowCollapse="False" Width="100%" Height="100%" TabIndex="100">
    <Template>
        <div>
            <iframe src="Site Url"></iframe>
        </div>
    </Template>
    <AutoSize Container="Window" Enabled="True" MinHeight="200" />
</px:PXFormView>

内容>

【问题讨论】:

    标签: acumatica


    【解决方案1】:

    我已经尝试过 in table,它对我有用

    <asp:Content ID="cont2" ContentPlaceHolderID="phF" runat="Server">
    <px:PXFormView ID="form" runat="server" DataSourceID="ds" DataMember="Document" 
        AllowCollapse="False" Width="100%" Height="100%" TabIndex="100" CaptionVisible="false">
        <Template>
            <table runat="server" style="width: 100%;height=1000px">
                <tr>
                    <td style="height=800px;width=100%">
                       
          
                <iframe id="myform" src="My Url" width="100%" height="800px" scrolling="no" ></iframe>
            
                        </td>
                    </tr>
                </table>
        </Template>
        <AutoSize Container="Window" Enabled="True" MinHeight="200" />
    </px:PXFormView>
    

    内容>

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-01-03
      • 2019-03-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多