當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS RadioButtonsInput用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

AMD: require(["esri/form/elements/inputs/RadioButtonsInput"], (RadioButtonsInput) => { /* code goes here */ });

ESM: import RadioButtonsInput from "@arcgis/core/form/elements/inputs/RadioButtonsInput";

類: esri/form/elements/inputs/RadioButtonsInput

繼承: RadioButtonsInput > Accessor

自從:用於 JavaScript 4.19 的 ArcGIS API

用法說明

RadioButtonsInput 類定義單選按鈕組所需的用戶接口。

使用此輸入類型時需要Coded-value 域。以前,包含與其關聯的coded-value 域不兼容的值的字段會顯示該選項,並會在用戶更新值後將其刪除。 RadioButtonsInput 現在將保留該值,但不會在用戶接口中顯示選項。

form field element radio buttons input

例子:

// Creates a new Radio buttons input for a field element within a form
const radioButtonsInput = new RadioButtonsInput({
  noValueOptionLabel: "Unknown",
  showNoValueOption: true
});

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 RadioButtonsInput。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。