Found 14 packages
Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. The default Admin theme of OrchardCore CMS
Having trouble testing tables on your frontend? This package will make it easier.
Having trouble testing tables on your frontend? This package will make it easier.
tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.
tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.
Admin Theme for Orchard Core
Distributed Output Cache Middleware with Redis + Local Cache + Busting for ASP.NET Core
Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with TheAdmin theme but without any front-end Themes.
Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with following themes. - TheAdmin Theme - SafeMode Theme - TheAgency Theme - TheBlog Theme - TheComingSoon Theme - TheTheme theme
Beinhaltet unterschiedliche jQuery Plugins: 1. quickSearch -> Filtert Tabellen Zeile für Zeile nach einem eingegebenen Suchbegriff und zeigt nur die Zeilen an die dem Suchbegriff entsprechen --> z.B. aufzurufen mit: $('.tableClass').quickSearch(); --> Für Parameter die übergeben werden können bitte direkt im Plugin schauen "defaultOptions" --> Die Tabelle / Tabellen die gefiltert werden sollen müssen einen "thead" und "tbody" enthalten, sonst funktioniert die Suche nicht. 2. clearInputText -> Erstellt bei jedem input feld welches über den Selector beim Aufrufen des Plugins übergeben wird ein "X", mit dem man den Inhalt des Input feldes löschen kann. --> z..B. aufzurufen mit: $('input').clearInputText(); --> Für Parameter die übergeben werden können bitte direkt im Plugin schauen "defaultOptions"
@*Delivery Address Table Section*@ <h3 class="display-6">Customer Address Information</h3> <div class="d-flex justify-content-center"> <div class="col-10"> <table class="table table-bordered table-sm text-center"> <thead> <tr> <th>Delivery Address</th> <th>Contact Person</th> <th>Phone</th> <th>Action</th> </tr> </thead> <tbody id="deliveryAddressContainer"> <tr class="deliveryAddressRow" id="deliveryAddressRow_0"> <td> <input type="text" name="DeliveryAddresses[0].Address" class="form-control form-control-sm" required /> </td> <td> <input type="text" name="DeliveryAddresses[0].ContactPerson" class="form-control form-control-sm" required /> </td> <td> <input type="text" name="DeliveryAddresses[0].Phone" class="form-control form-control-sm" required /> </td> <td> <button type="button" class="btn btn-danger btn-sm" id="btnRemoveDeliveryAddress">Delete</button> <button type="button" class="btn btn-success btn-sm" id="btnAddDeliveryAddress">Add</button> </td> </tr> </tbody> </table> </div> </div> </div> </form> <h3 class="display-6">Customer List</h3> <div class="d-flex justify-content-center"> <table class="table table-bordered table-striped table-sm"> <thead> <tr> <th>Customer Id</th> <th>Name</th> <th>Address</th> <th>Customer Type</th> <th>Bus. Start</th> <th>Credit Limit</th> </tr> </thead> <tbody> @foreach (var customer in Model) { <tr onclick="editCustomer(@customer.CustomerId)"> <td>@customer.CustomerId</td> <td>@customer.Name</td> <td>@customer.Address</td> <td>@customer.CustomerType</td> <td>@customer.BusinessStart</td> <td>@customer.CreditDetails</td> </tr> } </tbody> </table> </div> @section Scripts { <script> function previewImage(event) { const input = event.target; const preview = document.getElementById('photoPreview'); if (input.files && input.files[0]) { const reader = new FileReader(); reader.onload = function (e) { preview.src = e.target.result; preview.classList.remove('d-none'); } reader.readAsDataURL(input.files[0]); } }
_Index @model IEnumerable<Evidance.Models.Product> @{ ViewBag.Title = "Index"; } <div class="d-flex justify-content-end"> @Html.ActionLink("Add New Product", "Create", null, new { @class = "btn btn-primary btn-sm crBtn my-3 px-4" }) </div> <div> @foreach (var product in Model) { <div class="card mb-2"> <div class="card-header d-flex justify-content-between"> <div> <img src="@product.Image" width="32" style="border-radius:6px;" /> <label class="me-2">Product Name: <strong>@Html.DisplayFor(x => product.PName)</strong></label> <label class="me-2">Price: <strong>@Html.DisplayFor(x => product.Price)</strong></label> <label class="me-2">P Date: <strong>@Html.DisplayFor(x => product.Pdate)</strong></label> <label class="me-2">Available: <strong>@Html.DisplayFor(x => product.IsAviable)</strong></label> </div> <div> <button class="btn btn-success btn-sm edBtn" type="button" data-id="@product.PId">Edit</button> @Html.ActionLink("Delete", "Delete", null, new { id = product.PId }, new { @class = "btn btn-danger btn-sm" }) </div> </div> <div class="card-body"> <table class="table table-bordered text-center"> <thead class="table-primary"> <tr> <th>Color Id</th> <th>Color Name</th> </tr> </thead> <tbody> @foreach (var i in product.Details) { <tr> <td>@i.Color.CId</td> <td>@i.Color.CName</td> </tr> } </tbody> </table> </div> </div> } </div> <section class="mcon" style="display:none;"> <div class="mbod p-5"> <div class="macon"></div> <hr /> <div class="modal-footer"> <button class="btn btn-danger clbtn">Close</button> </div> </div> </section>
Alterations to the TheAdmin theme.
An OrchardCore admin theme. This theme is an extension from TheAdmin theme but changes the views