Forums

Forums / Developing Portals / Check box Template edit

Check box Template edit

Thread is closed for posting
2 posts, 1 answered
  1. Krishna Hari
    Krishna Hari avatar
    65 posts
    Registered:
    05 Dec 2019
    14 Feb 2020
    Link to this post
    <div class="col-xs-6">
                        <div class="checkbox noMarginT" >
                            <input type="checkbox" id='@Html.GetUniqueId(Model.Name)' data-tpc-role="boolean-display"
                                   value="@Model.Value" @Model.ValueAttribute() class="k-checkbox" />
                            <label class="k-checkbox-label" for="@Html.GetUniqueId(Model.Name)" @MvcHtmlString.Create(Model.ToolTipAttributes)>
                                @Model.BooleanLabels[1]
                            </label>
                        </div>
                    </div>

    How can I remove the Yes from Showing up , Just need to show the Box
  2. Krishna Hari
    Krishna Hari avatar
    65 posts
    Registered:
    05 Dec 2019
    Answered
    14 Feb 2020
    Link to this post
    figured it out
2 posts, 1 answered