Radio
Radio を使用して、相互排他的なオプションセットから選択します。
Radio
コンポーネントをアプリに追加するには、以下のようにします。
import {Radio} from '@stripe/ui-extension-sdk/ui';
<Radio label="This is a Radio." />
Radio プロパティ
プロパティー | タイプ |
---|---|
| オプション
If |
| オプション
Controls whether the input is selected. When you pass this prop, you must also pass an |
| オプション
Specifies the initial value that a user can change. |
| オプション
コントロールのラベルの横にレンダリングされる説明テキスト。 |
| オプション
要素を無効化するかどうかを設定します。選択できなくなります。 |
| オプション
コントロールの下に表示されるエラーテキスト。 |
| オプション
Specifies the |
| オプション
指定した要素を視覚的に非表示にします。非表示の要素は引き続き存在しており、スクリーンリーダーに表示されます。 |
| オプション
要素が無効な状態であるかどうかを設定します。これは、表示専用のプロパティであり、フォーム送信を妨げるものではありません。 |
| オプション
コントロールを説明するテキスト。表示され、クリック可能になります。 |
| オプション
Used to collect multiple Radios into a single, mutually exclusive group, for uncontrolled use cases. |
| オプション
Required for controlled inputs. Fires immediately when the input’s value is changed by the user (for example, it fires on every keystroke). Behaves like the browser input event. |
| オプション
If |
| オプション
If |
| オプション
Overrides the default Tab button behavior. Avoid using values other than |
| オプション
Controls the input’s text. When you pass this prop, you must also pass an |
無効化
Radio
コンポーネントは無効化でき、これにより変更できなくなります。
<Radio name="group" label="Ah ah ah" disabled /> <Radio name="group" disabled defaultChecked label="You didn't say the magic word" />
無効
Radio
を無効にすることができます。
<Radio label="This is an invalid input" invalid />
ステータス管理
Use the Radio
component as an uncontrolled input:
<Radio name="group" label="Have some of Column A" onChange={(e) => { console.log(e.target.checked); }} /> <Radio name="group" label="Try all of Column B" onChange={(e) => { console.log(e.target.checked); }} />