繁体   English   中英

动态自举模态

[英]Dynamic bootstrap modal

好吧,我想使我的引导程序模态动态,但不知道该怎么做。.我知道我需要使用@PredictioItems.Name但不知道在哪里:(

码:

<div style="margin-top: 55px;" class="col-sm-10 col-sm-offset-1">
        @foreach (var PredictioItems in Model.Content.Children())
        {
            if (PredictioItems.GetPropertyValue("checkboxchecker").Equals(true))
            {
                <h4 style="color: #000;">@PredictioItems.GetPropertyValue("teamvsteam")</h4>
                <strong style="color: #000;">@PredictioItems.GetPropertyValue("predictinfo")</strong><br />
                <img src="@Umbraco.TypedMedia(PredictioItems.GetPropertyValue("matchimage")).Url" />
                <p style="color: #000">@Umbraco.Truncate(PredictioItems.GetPropertyValue("predictdescription").ToString(), 25)</p>
            <button type="button" class="btn btn-info" data-toggle="modal" data-target="#myModal">View full description & Livestream!</button>
                <hr />
            }

            <div id="myModal" class="modal fade" role="dialog">
                <div class="modal-dialog">
                    <div class="modal-content">
                        <div class="modal-header">
                            <button type="button" class="close" data-dismiss="modal">&times;</button>
                            <h4 class="modal-title">@PredictioItems.GetPropertyValue("teamvsteam")</h4>
                        </div>
                        <div class="modal-body">
                            <p>@PredictioItems.GetPropertyValue("predictdescription")</p>
                        </div>
                        <div class="modal-footer">
                            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                        </div>
                    </div>

                </div>
            </div>
        }
    </div>

有人可以告诉我要更换什么才能使其工作? 谢谢 :)

像这样的事情应该做到这一点-如@vel所说,每个可能的模式“实例”必须具有唯一的ID,并且打开它的按钮应引用该ID:

<div style="margin-top: 55px;" class="col-sm-10 col-sm-offset-1">
        @foreach (var PredictioItems in Model.Content.Children())
        {
            if (PredictioItems.GetPropertyValue("checkboxchecker").Equals(true))
            {
                <h4 style="color: #000;">@PredictioItems.GetPropertyValue("teamvsteam")</h4>
                <strong style="color: #000;">@PredictioItems.GetPropertyValue("predictinfo")</strong><br />
                <img src="@Umbraco.TypedMedia(PredictioItems.GetPropertyValue("matchimage")).Url" />
                <p style="color: #000">@Umbraco.Truncate(PredictioItems.GetPropertyValue("predictdescription").ToString(), 25)</p>
            <button type="button" class="btn btn-info" data-toggle="modal" data-target="#myModal@(PredictioItems.Id)">View full description & Livestream!</button>
                <hr />
            }

            <div id="myModal@(PredictioItems.Id)" class="modal fade" role="dialog">
                <div class="modal-dialog">
                    <div class="modal-content">
                        <div class="modal-header">
                            <button type="button" class="close" data-dismiss="modal">&times;</button>
                            <h4 class="modal-title">@PredictioItems.GetPropertyValue("teamvsteam")</h4>
                        </div>
                        <div class="modal-body">
                            <p>@PredictioItems.GetPropertyValue("predictdescription")</p>
                        </div>
                        <div class="modal-footer">
                            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                        </div>
                    </div>

                </div>
            </div>
        }
    </div>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM