0

これが私の問題です:

検証

<asp:Panel ID="pnlMyAddressBook" runat="server" BackColor="White"  CssClass="roundcorner">
    TEST<table style="width: 100%;">

すべての検証エラーのリストを表示するためにページがスクロールしないことを説明する必要がありますか? モーダルポップアップに表示されているパネルです...パネルの高さプロパティを設定しようとしました...使用できません...また、この(必須の)Jquery関数をHTMLに含めると、パネルが隅に移動します...今のところ、HTMLから削除しました...

 <script type="text/javascript">
    $(function () {
        $("#tabs").tabs();
    });

モーダルを開くボタンの C# コード:

 protected void btnEdit_Click(object sender, EventArgs e)
        {
            ClientScript.RegisterStartupScript(this.GetType(), "key", "launchModalV2();", true);
        //ClearTextBoxes();
        PopUpAddressInLightBox();


        mpeTest.Show();
        hdnfld.Value = "Edit";
    }

HTML

  <asp:Button ID="btnEdit" runat="server" Text="Edit Address pb" OnClick="btnEdit_Click" CssClass="btn"  />
 <asp:Button ID="btnAddNew" runat="server" Text="Add New Address pb" OnClick="btnAddNew_Click" />

これらの2つのボタンを使用してモーダルを呼び出しています....

.modalBackground
{
background-color: Black;
-filter: alpha(opacity=80);
-opacity: 0.6;
z-index: 10000;
 }
4

1 に答える 1

1

In the css of your modal popup, set the width of the modalpop up, then set the overflow:auto. That will give you vertical scrollbar. Example:

.ModalPopupPanel
{
  height:700px;
  overflow:auto;
}

So,when the content height exceed the 700px, the horizontal scrollbar will show up. The same is true for the horizontal scrollbar where you need to set the width of the modalpop.

于 2013-04-04T11:39:06.833 に答える