Subversion Repositories SmartDukaan

Rev

Rev 28164 | Blame | Last modification | View Log | RSS feed

<script type="text/javascript">
        $('.chosen-select').chosen({
                search_contains : true

        });

        $(document).ready(function() {
                $('#partnerType').multiselect({
                        includeSelectAllOption : true,
                        maxHeight : 200,
                        multiple : true,
                        buttonWidth : '180px',
                        numberDisplayed : 1,
                        nonSelectedText : 'Partner Type',
                        nSelectedText : ' - Partner Type Selected',
                        allSelectedText : 'All Type Selected',
                        enableFiltering : true,
                        enableCaseInsensitiveFiltering : true
                });
        });
</script>

<section class="wrapper">
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header">
                                <i class="icon_document_alt"></i>PRICE CIRCULAR
                        </h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a
                                        href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>PRICE CIRCULAR <b>
                                                $date</b></li>

                        </ol>
                </div>
        </div>

        <div class="row">
                <div class="col-lg-12">

                        <div class="col-lg-2">
                                <div class="row col-lg-12 form-group">
                                        <div>
                                                <label>Brand</label>
                                        </div>
                                        <select data-placeholder="Choose brands" multiple="multiple"
                                                class="criteria-item-brands chosen-select">
                                                #foreach($brand in $brands)
                                                <option value="$brand">$brand</option> #end
                                        </select>
                                </div>
                        </div>
                        <div class="col-lg-2" style="padding-top: 20px">
                                <div class="row col-lg-12 form-group">

                                        <select class="form-control input-sm" id="partnerType"
                                                name="partnerType" placeholder="Partner Type">
                                                <option value="" disabled selected>PartnerType</option>
                                                <option value="BRONZE">BRONZE</option>
                                                <option value="SILVER">SILVER</option>
                                                <option value="GOLD">GOLD</option>
                                                <option value="DIAMOND">DIAMOND</option>
                                                <option value="PLATINUM">PLATINUM</option>
                                                <option value="NEW">RISING STAR</option>
                                        </select>

                                </div>
                        </div>

                        <div class="col-lg-2" style="padding-top: 20px">
                                <div class="col-lg-2 form-group">

                                        <button class="btn btn-primary circular-request" type="button">Submit</button>

                                </div>
                        </div>


                </div>

        </div>

        <div class="circular-container"></div>


</section>