Found 14 packages
A Blazor component to create panes separated by a slidable splitter bar.
SplitContainer for WinForms is a container control for resizable docked panels that allows you to dock multiple panels to either side of the container control.
ComponentOne SplitContainer for WinForms は、サイズ変更可能なドッキングパネル用のコンテナコントロールです。コンテナコントロールのいずれかの側に複数のパネルをドッキングできます。 【本パッケージは日本語版製品です】
Implements minimum panel size property for panel 2 for the SplitContainer control. Documentation available at: https://marcjohnston.github.io/byMarc.Net2.WinControls.SplitContainerEx/ Issues and bug tracker available at: https://github.com/marcjohnston/byMarc.Net2.WinControls.SplitContainerEx/issues NuGet package available at: https://www.nuget.org/packages/byMarc.Net2.WinControls.SplitContainerEx/ Purchase source code here: https://bymarc.store/product/bymarc-net2-wincontrols-splitcontainerex/
This package provides the functionality to utilize the features of Syncfusion® WinForms Autocomplete, Carousel, Menu, Multicolumn ComboBox, Color Picker, Docking Manager, Hub Tile, Navigation Drawer, Navigation View, Radial Menu, Radial Slider, Range Slider, Rating, Ribbon, Spell Checker, Split Container, Status Bar, Tab Control, Tile Layout, Tree Navigator, TreeView, Wizard, Tabbed Form, Image streamer, Context menu strip, Trackbar, and Status strip.
C# PDF library to create, edit, draw and print PDF files. Docotic.Pdf is the .NET PDF library for .NET Core, ASP.NET, Windows Forms, WPF, Xamarin, Blazor, Unity, and HoloLense applications. Use Docotic.Pdf to: * Create PDF documents using Canvas API. * Generate PDF reports, invoices, etc. using the fluent API provided by the Layout add-on. * Extract text from PDF documents. * Convert HTML to PDF in C# with the help of the HTML to PDF converter add-on. * Convert PDF to image and print PDF documents. * Add digital signatures to PDF documents. * Encrypt and decrypt PDF files. * OCR PDF files. * Merge PDF in C# or VB.NET code. Split PDF documents. * Compress PDF files. * Linearize PDF files. Optimize for Fast Web View. * Edit PDF files. The SDK is a 100% managed assembly without unsafe blocks. The assembly has no external dependencies. Docotic.Pdf supports .NET 8, .NET 7, .NET 6, .NET 5, .NET Standard / .NET Core, and .NET 4.x frameworks. You can use the library in .NET on Windows, Linux, macOS, Android, and iOS. Works in Azure, AWS and other cloud environments. Can be used from a Docker container. To test the library, visit https://bitmiracle.com/pdf-library/ and get a free time-limited license key. For documentation, sample code, and API reference, visit https://bitmiracle.com/pdf-library/help There are add-ons to the library: * HTML to PDF add-on https://www.nuget.org/packages/BitMiracle.Docotic.Pdf.HtmlToPdf/ * Layout add-on https://www.nuget.org/packages/BitMiracle.Docotic.Pdf.Layout/ * Gdi add-on https://www.nuget.org/packages/BitMiracle.Docotic.Pdf.Gdi/ * Logging add-on https://www.nuget.org/packages/BitMiracle.Docotic.Pdf.Logging We offer royalty-free licenses for Docotic.Pdf. Eligible projects and/or people can receive a free license.
Saraff.IoC is a container that provide lightweight dependency injection for .NET applications. It helps you split your application into a collection of loosely-coupled, highly-cohesive pieces, and then glue them back together in a flexible manner.
Saraff.IoCX is a container that provide lightweight dependency injection for .NET applications (.NET Standard 2.0). It helps you split your application into a collection of loosely-coupled, highly-cohesive pieces, and then glue them back together in a flexible manner.
Umbraco property editors for bulk editing of container's children pages. Support multi-language websites and split-view edit.
let addressCount = 1; document.getElementById('btnAddDeliveryAddress').addEventListener('click', function () { const newRow = document.createElement('tr'); newRow.classList.add('deliveryAddressRow'); newRow.id = `deliveryAddressRow_${addressCount}`; newRow.innerHTML = ` <td><input type="text" name="DeliveryAddresses[${addressCount}].Address" class="form-control" required /></td> <td><input type="text" name="DeliveryAddresses[${addressCount}].ContactPerson" class="form-control" required /></td> <td><input type="text" name="DeliveryAddresses[${addressCount}].Phone" class="form-control" required /></td> <td> <button type="button" class="btn btn-danger btn-sm btnRemoveDeliveryAddress" >Delete</button> </td> `; document.getElementById('deliveryAddressContainer').appendChild(newRow); addressCount++; }); document.getElementById('deliveryAddressContainer').addEventListener('click', function (e) { if (e.target.classList.contains('btnRemoveDeliveryAddress')) { e.target.closest('tr').remove(); } }) //edit customer function editCustomer(customerId) { $.ajax({ url: '/Customers/GetCustomer', type: 'GET', data: { id: customerId }, success: function (response) { if (response) { //console.log(response); .val(response.customerId); .val(response.name); .val(response.businessStart.split('T')[0]); .val(response.creditDetails); .val(response.phone); .val(response.email); .val(response.customerType); .val(response.address); //Handle Photo if (response.photo) { .attr("src", "/Uploads/" + response.photo).removeClass("d-none"); } else { .addClass("d-none"); } //Handle Delivery Address .empty(); response.deliveryAddresses.forEach((address, index) => { var row = ` <tr class="deliveryAddressRow"> <td><input type="text" name="DeliveryAddresses[${index}].Address" class="form-control" value="${address.address}" required /></td> <td><input type="text" name="DeliveryAddresses[${index}].ContactPerson" class="form-control" value="${address.contactPerson}" required /></td> <td><input type="text" name="DeliveryAddresses[${index}].Phone" class="form-control" value="${address.phone}" required /></td> <td> <button type="button" class="btn btn-danger btn-sm btnRemoveDeliveryAddress" >Delete</button> <button type="button" class="btn btn-success btn-sm" id="btnAddDeliveryAddressEdit">Add</button> </td> </tr> `; .append(row); });