New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

CopipeGrid

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

CopipeGrid

Excel-like copy-paste functionality for MudBlazor DataGrid. Supports cell selection, clipboard operations, and undo/redo.

nugetNuGet
Version
0.1.1-alpha
Version published
Maintainers
1
Created
Source

CopipeGrid

Excel-like copy-paste functionality for MudBlazor DataGrid.

Features

  • 📋 Cell Selection: Click and drag to select multiple cells
  • ✂️ Copy/Cut/Paste: Full clipboard operations support (Ctrl+C/X/V)
  • ↩️ Undo/Redo: Command pattern implementation for operation history
  • 🎨 Visual Feedback: Clear selection highlighting
  • ⌨️ Keyboard Navigation: Arrow keys for cell navigation
  • 🔄 Auto-scroll: Automatic scrolling during selection

Installation

dotnet add package CopipeGrid --version 0.1.0-alpha

Quick Start

@using CopipeGrid

<CopipeDataGrid Items="@items" T="Person">
    <PropertyColumn Property="@(x => x.Name)" Title="Name" />
    <PropertyColumn Property="@(x => x.Age)" Title="Age" />
    <PropertyColumn Property="@(x => x.Email)" Title="Email" />
</CopipeDataGrid>

@code {
    private List<Person> items = new()
    {
        new Person { Name = "John Doe", Age = 30, Email = "john@example.com" },
        new Person { Name = "Jane Smith", Age = 25, Email = "jane@example.com" }
    };

    public class Person
    {
        public string Name { get; set; }
        public int Age { get; set; }
        public string Email { get; set; }
    }
}

Requirements

  • .NET 8.0 or later
  • MudBlazor 8.9.0 or later

Documentation

For detailed documentation and examples, visit GitHub Repository.

License

This project is licensed under the MIT License.

Keywords

blazor

FAQs

Package last updated on 30 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts