Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

syncfusion-aspnetcore-numerictextbox同步融合 aspnetcore numerictextbox

Agent Skill

syncfusion-aspnetcore-numerictextbox 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:syncfusion-aspnetcore-numerictextbox(同步融合 aspnetcore numerictextbox)
来源仓库:https://github.com/syncfusion/aspnetcore-ui-components-skills
仓库路径:skills/syncfusion-aspnetcore-numerictextbox
安装命令:
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-numerictextbox
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-numerictextbox

简介

同步融合 ASP.NET Core 数值输入框组件,专用于数字精确录入。

  • 适用于价格设置、数量统计、参数配置等数值型数据场景。
  • 通过 GitHub 安装并配置输入验证规则,支持千分位分隔显示。
  • 使用前需定义数值范围和精度要求,避免溢出错误。
  • 金融类应用时应启用防误触机制和二次确认流程。syncfusion-aspnetcore-numerictextbox 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Implementing NumericTextBox in ASP.NET Core

The NumericTextBox is a specialized input component for capturing numeric values with advanced features like currency/percentage formatting, range validation, spinner controls, precision settings, and globalization support. This skill guides you through implementing NumericTextBox in ASP.NET Core applications using Syncfusion's Tag Helper syntax.

When to Use This Skill

Use this skill when you need to:

  • Create numeric input fields with automatic value formatting
  • Build currency and percentage input controls
  • Implement range validation (min/max constraints)
  • Display spinner buttons for increment/decrement operations
  • Control decimal precision and number formatting
  • Support international number formats and currencies
  • Format numbers with locale-specific separators
  • Implement salary, price, quantity, or percentage inputs
  • Validate numeric ranges with visual feedback
  • Create accessible numeric forms following WCAG 2.2 Level AA standards

Key Features

FeatureUse Case
Number FormattingFormat as currency, percentage, or custom formats (c2, p, n)
Range ValidationSet min/max constraints with automatic validation
Precision ControlRestrict decimal places and rounding behavior
Spinner ButtonsIncrement/decrement values with up/down controls
Step ValuesDefine increment step size for spinner operations
Currency SupportDisplay and format multiple currencies (USD, EUR, GBP, etc.)
Percentage InputConvert and display percentage values
GlobalizationSupport 150+ culture-specific number formats
LocalizationTranslate spinner button tooltips to user's language
RTL SupportRight-to-left text direction for Arabic, Hebrew, Persian
Data BindingTwo-way binding with ASP.NET Core models
Event HandlingRespond to Created, Change, Blur, and Focus events

Documentation Navigation Guide

Getting Started

📄 Read: references/getting-started.md

  • Prerequisites and system requirements
  • Installing Syncfusion.EJ2.AspNet.Core NuGet package
  • Adding Tag Helpers to _ViewImports.cshtml
  • Adding stylesheets and script resources via CDN
  • Registering the script manager
  • Creating your first NumericTextBox
  • Binding to ASP.NET Core models
  • Tag Helper syntax and attributes

Number Formats

📄 Read: references/number-formats.md

  • Standard numeric format specifiers (c, p, n, e, f)
  • Currency formatting with symbol and locale
  • Percentage conversion and display
  • Custom number format patterns
  • Locale-specific formatting (en-US, de-DE, fr-FR)
  • Output examples and edge cases
  • Format string best practices

Range Validation

📄 Read: references/range-validation.md

  • Setting minimum and maximum values
  • Decimal precision configuration
  • Step values and increment behavior
  • Automatic value clamping within range
  • Validation error handling
  • Real-world validation patterns (salary, age, discount)
  • Edge cases and boundary conditions

Appearance and Styling

📄 Read: references/appearance-styling.md

  • CSS customization of NumericTextBox wrapper
  • Styling spinner up/down buttons
  • Input height, font size, and color
  • Adding icons and prepend/append templates
  • Theme integration with Syncfusion themes
  • Responsive design patterns
  • Custom CSS classes for validation states

Globalization and Localization

📄 Read: references/globalization-localization.md

  • Culture-based number formatting (CLDR support)
  • Setting locale for specific regions
  • Multi-currency formatting
  • Spinner button tooltip localization
  • RTL (right-to-left) language support
  • Date and number format culture binding
  • Timezone and locale detection

Advanced Patterns

📄 Read: references/advanced-patterns.md

  • Data binding with ASP.NET Core models
  • Programmatic NumericTextBox creation with C# and JavaScript
  • Event handling patterns (Created, Change, Blur, Focus)
  • Composite validation scenarios
  • Integration with Forms and Model Validation
  • Two-way binding with observable models
  • Security: XSS prevention and input sanitization

Quick Start Example

Basic NumericTextBox with Currency Format (Tag Helper)

<!-- Views/Home/Index.cshtml -->
<div class="form-group">
    <ejs-numerictextbox id="salary"
        name="salary"
        placeholder="Enter salary"
        format="c2"
        min="0"
        max="1000000"
        float-label-type="Auto">
    </ejs-numerictextbox>
</div>

In _ViewImports.cshtml (one-time setup)

@addTagHelper *, Syncfusion.EJ2

In _Layout.cshtml (one-time setup)

<head>
    <link rel="stylesheet" href="https://cdn.syncfusion.com/ej2/24.1.48/fluent.css" />
</head>
<body>
    @RenderBody()

    <script src="https://cdn.syncfusion.com/ej2/24.1.48/dist/ej2.min.js"></script>
    <ejs-scripts></ejs-scripts>
</body>

Result

User sees:

  1. NumericTextBox with "$0.00" format
  2. Spinner buttons (↑↓) to increment/decrement values
  3. On entry of "5000", displays as "$5,000.00"
  4. Values outside 0-1000000 range are auto-corrected
  5. When blurred, number formatted to currency with 2 decimal places

Common Patterns

Pattern 1: Employee Salary Form with Validation

<!-- Views/Employee/Create.cshtml -->
<form asp-action="SaveEmployee" asp-controller="Employee" method="post">
    <div class="form-group">
        <label asp-for="Salary"></label>
        <ejs-numerictextbox asp-for="Salary"
            format="c2"
            min="20000"
            max="500000"
            step="1000"
            float-label-type="Auto"
            css-class="e-outline">
        </ejs-numerictextbox>
        <small class="form-text text-muted">Salary range: $20,000 - $500,000</small>
    </div>

    <div class="form-group">
        <label asp-for="Bonus"></label>
        <ejs-numerictextbox asp-for="Bonus"
            format="c2"
            min="0"
            max="50000"
            step="100"
            float-label-type="Auto">
        </ejs-numerictextbox>
    </div>

    <button type="submit" class="btn btn-primary">Save Employee</button>
</form>

Pattern 2: Product Pricing with Percentage Discount

<div class="row">
    <div class="col-md-6">
        <div class="form-group">
            <label asp-for="OriginalPrice"></label>
            <ejs-numerictextbox asp-for="OriginalPrice"
                placeholder="Original price"
                format="c2"
                min="0"
                step="0.01"
                float-label-type="Auto">
            </ejs-numerictextbox>
        </div>
    </div>

    <div class="col-md-6">
        <div class="form-group">
            <label asp-for="DiscountPercent"></label>
            <ejs-numerictextbox asp-for="DiscountPercent"
                placeholder="Discount %"
                format="p2"
                min="0"
                max="100"
                step="5"
                float-label-type="Auto"
                change="onDiscountChange">
            </ejs-numerictextbox>
        </div>
    </div>
</div>

<div class="form-group">
    <label>Final Price</label>
    <ejs-numerictextbox id="finalPrice"
        format="c2"
        read-only="true"
        float-label-type="Auto">
    </ejs-numerictextbox>
</div>

<script>
    function onDiscountChange(args) {
        var originalPrice = document.querySelector('input[id="originalPrice"]').value;
        var discountPercent = args.value;
        var finalPrice = originalPrice * (1 - discountPercent / 100);

        var finalPriceControl = document.querySelector('input[id="finalPrice"]');
        var finalPriceInstance = finalPriceControl.ej2_instances[0];
        finalPriceInstance.value = finalPrice;
    }
</script>

Pattern 3: Quantity Input with Stock Constraint

<div class="form-group">
    <label asp-for="OrderQuantity"></label>
    <ejs-numerictextbox asp-for="OrderQuantity"
        placeholder="Order quantity"
        min="1"
        max="100"
        step="1"
        float-label-type="Auto"
        css-class="e-outline"
        change="checkInventory">
    </ejs-numerictextbox>
    <small>Available stock: 100 units</small>
</div>

<div class="form-group">
    <label>Unit Price: $25.00</label>
    <ejs-numerictextbox id="totalPrice"
        format="c2"
        read-only="true"
        float-label-type="Auto">
    </ejs-numerictextbox>
</div>

<script>
    document.querySelector('input[asp-for="OrderQuantity"]').addEventListener('change', function(e) {
        var quantity = parseInt(e.target.value) || 0;
        var unitPrice = 25;
        var totalPrice = quantity * unitPrice;

        var totalPriceControl = document.querySelector('input[id="totalPrice"]');
        var totalPriceInstance = totalPriceControl.ej2_instances[0];
        totalPriceInstance.value = totalPrice;
    });
</script>

Pattern 4: International Currency Selection with Culture

<div class="row">
    <div class="col-md-6">
        <div class="form-group">
            <label asp-for="Currency"></label>
            <select asp-for="Currency" id="currencySelect" class="form-control">
                <option value="en-US">USD ($)</option>
                <option value="de-DE">EUR (€)</option>
                <option value="fr-FR">GBP (£)</option>
            </select>
        </div>
    </div>

    <div class="col-md-6">
        <div class="form-group">
            <label asp-for="Amount"></label>
            <ejs-numerictextbox asp-for="Amount"
                placeholder="Enter amount"
                format="c2"
                float-label-type="Auto">
            </ejs-numerictextbox>
        </div>
    </div>
</div>

<script>
    document.getElementById('currencySelect').addEventListener('change', function(e) {
        var culture = e.target.value;
        var amountControl = document.querySelector('input[asp-for="Amount"]');
        var amountInstance = amountControl.ej2_instances[0];
        amountInstance.locale = culture;
    });
</script>

Key Properties Reference

PropertyTypeDefaultPurpose
mindecimal-∞Minimum acceptable value
maxdecimal+∞Maximum acceptable value
stepdecimal1Increment/decrement step for spinner
valuedecimalnullInitial numeric value
formatstring"n2"Number format (c, p, n, e, f)
decimalsint2Number of decimal places
placeholderstring-Placeholder text
read-onlyboolfalsePrevent manual input while allowing spinner
disabledboolfalseCompletely disable input
show-spin-buttonbooltrueDisplay up/down spinner buttons
float-label-typeenumNeverLabel animation (Auto, Always, Never)
css-classstring-CSS classes for styling
createdstring-Event handler for NumericTextBox created
changestring-Event handler for value change
blurstring-Event handler for blur event

Common Use Cases

Use Case 1: Financial Forms (Payroll, Invoicing)

Create payroll or invoicing forms with currency formatting and validation:

Use Case 2: International E-Commerce

Build multi-currency shopping carts with locale-aware formatting:

  • When: Creating international sales platforms
  • Reference: globalization-localization.md
  • Key Features: Culture-based formatting, multiple currencies, localized tooltips

Use Case 3: Data Entry Forms with Constraints

Create data entry forms with strict numeric ranges and precision:

  • When: Building inventory, survey, or analytics forms
  • Reference: range-validation.md
  • Key Features: Min/max validation, decimal precision, step values

Use Case 4: Scientific/Engineering Calculations

Implement precision numeric inputs for technical applications:

  • When: Building calculation tools, scientific software
  • Reference: advanced-patterns.md
  • Key Features: High precision decimals, custom formats, event-driven calculations

Next Steps:

  1. Review getting-started.md to set up your first NumericTextBox
  2. Choose your use case and follow the corresponding reference guide
  3. Copy code examples and adapt to your project
  4. Refer to advanced-patterns.md for complex scenarios

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

31.71%
按下载量换算23

Claude

28.38%
按下载量换算21

Cursor

19.97%
按下载量换算15

Gemini CLI

10.01%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills