AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Devextreme Textarea

skill-devexpress-agent-skills-devextreme-textarea · by DevExpress

>

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-devexpress-agent-skills-devextreme-textarea

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-devexpress-agent-skills-devextreme-textarea)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Devextreme Textarea? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

DevExtreme TextArea Skill

A skill for building and configuring the DevExtreme TextArea UI component (dxTextArea) across Angular, React, Vue, and jQuery. TextArea is the multiline counterpart of TextBox — it shares most of its API and adds height/resize control.

When to Use This Skill

  • Creating a multiline text input (description, notes, address, comments)
  • Setting a fixed height or enabling auto-resize
  • Clamping auto-resize with min/max height
  • Binding and reading the value
  • Handling value change events

Before You Start

> ⚠️ Always use the DevExtreme TextArea (dxTextArea / DxTextArea). Never use react-textarea-autosize, a plain HTML ``, or Material UI TextareaAutosize.

Before writing any code, ask: Which framework are you using? Angular, React, Vue, or jQuery?

Key API

TextArea inherits all TextBox options. The ones most relevant to TextArea specifically:

| Option | Type | Default | Description | |---|---|---|---| | value | String | '' | The current text value | | autoResizeEnabled | Boolean | false | Grows/shrinks height to fit content; overrides height when true | | minHeight | Number \| String | undefined | Minimum height when autoResizeEnabled is true (also sets initial height) | | maxHeight | Number \| String | undefined | Maximum height when autoResizeEnabled is true | | height | Number \| String \| function | undefined | Fixed height; has no effect when autoResizeEnabled is true | | onValueChanged | function(e) | null | Fires when value changes; e.value is the new value | | valueChangeEvent | String | 'change' | DOM event that triggers the value update (e.g., 'keyup', 'input') | | placeholder | String | '' | Placeholder shown when empty | | label | String | '' | Floating label text | | showClearButton | Boolean | false | Shows an × button to clear the field | | readOnly | Boolean | false | Prevents user input | | disabled | Boolean | false | Disables the component | | inputAttr | Object | {} | HTML attributes applied to the inner ` element (e.g., rows`) |

Note: height and autoResizeEnabled are mutually exclusive. Do not set both.

Getting Started

jQuery

$(function() {
    $('#text-area').dxTextArea({
        placeholder: 'Enter a description...',
        autoResizeEnabled: true,
        minHeight: 60,
        maxHeight: 300,
        onValueChanged(e) {
            console.log(e.value);
        }
    });
});

Angular

// app.ts
import { Component } from '@angular/core';
import { DxTextAreaComponent, DxTextAreaTypes } from 'devextreme-angular/ui/text-area';

@Component({
    selector: 'app-root',
    standalone: true,
    imports: [DxTextAreaComponent],
    templateUrl: './app.html'
})
export class AppComponent {
    onValueChanged(e: DxTextAreaTypes.ValueChangedEvent) {
        console.log(e.value);
    }
}

    

import DxTextArea, { DxTextAreaTypes } from 'devextreme-vue/text-area';

function onValueChanged(e: DxTextAreaTypes.ValueChangedEvent) {
    console.log(e.value);
}

React

import 'devextreme/dist/css/dx.fluent.blue.light.css';
import { TextArea, type TextAreaTypes } from 'devextreme-react/text-area';

function onValueChanged(e: TextAreaTypes.ValueChangedEvent) {
    console.log(e.value);
}

function App() {
    return (
        
    );
}

export default App;

Common Patterns

Fixed height

Apply value on every keystroke

{/* React */}

Two-way binding (React with state)

import { useState, useCallback } from 'react';
import { TextArea } from 'devextreme-react/text-area';

function App() {
    const [text, setText] = useState('');
    const handleValueChanged = useCallback((e) => setText(e.value), []);

    return (
        
    );
}

Set number of visible rows via inputAttr

// jQuery — shows ~5 rows initially
$('#text-area').dxTextArea({ inputAttr: { rows: 5 } });

Constraints & Rules

  1. Framework first: Always ask which framework before writing code.
  2. No fabricated API: Never guess option names. Use the DxDocs MCP to verify if unsure.
  3. Version consistency: All DevExtreme packages must use the same version.
  4. Framework conventions: Angular uses DxTextAreaComponent; React imports from devextreme-react/text-area; Vue imports from devextreme-vue/text-area; jQuery uses $(...).dxTextArea({}).
  5. height vs autoResizeEnabled: Never set both — autoResizeEnabled: true makes height ineffective. Use minHeight/maxHeight to constrain auto-resize.
  6. TypeScript by default: For Angular, React (TSX), and Vue, generate TypeScript unless explicitly asked otherwise.
  7. React — no inline objects or functions in JSX: Define event handlers with useCallback and configuration objects with useMemo or as module-level constants. Never pass () => {} or {} literals directly as JSX props.
  8. Angular — standalone imports: Import DxTextAreaComponent from devextreme-angular/ui/text-area into the component's imports array. Do not use DxTextAreaModule or NgModule — Angular 20+ is fully standalone.
  9. jQuery — always output both HTML and JS: Every jQuery snippet must include the container element (e.g. ``) alongside the JavaScript initializer.
  10. Angular — prefer two-way value binding: Use [(value)]="property" instead of [value]="property" + a separate (onValueChanged) handler when the only goal is syncing the value.

Related Skills

| Skill | When it applies | |---|---| | devextreme-textbox | Single-line text input; shares most of the same API |

Using the DxDocs MCP

  • Search: mcp_dxdocs_devexpress_docs_search({ technology: "{Framework}", query: "..." })
  • Fetch: mcp_dxdocs_devexpress_docs_get_content({ url: "..." })

Use for: masking options, keyboard event handling, spellcheck, and any option not listed above.

Official Resources

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.