Subversion Repositories SmartDukaan

Rev

Rev 33890 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<script>
    $(document).ready(function () {
        $('#show-brands').multiselect({
            includeSelectAllOption: true,
            maxHeight: 200,
            multiple: true,
            buttonWidth: '180px',
            numberDisplayed: 1,
            nonSelectedText: 'Users',
            nSelectedText: ' - Users Selected',
            allSelectedText: 'All Users 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> Catalog Categorization</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>Catalogs</li>
            </ol>
        </div>
    </div>


    <div class="row">
        <div class="col-lg-2 form-group">
            <select class="form-control input-sm" id="catalog-brand" name="catalog-brand" placeholder="All brands">

                <option value="" disabled selected>Brands</option>
                #foreach($brand in $brands)
                    <option value="$brand">$brand</option>
                #end
            </select>

        </div>
        <button type="button" class="btn btn-primary fetch-cataogrised-catalog">submit</button>
        <button type="button" class="btn btn-primary create-catalog-movement-status" data-toggle="modal"
                data-target="#createUpdateStatus">Create Catalog Movement
        </button>
    </div>

    <div id="categoriesed-catalog-list-mk">

    </div>


</section>