-
container
String
|
HTMLElement
inherited
表示包含小部件的 DOM 元素的 ID 或节点。该属性只能设置一次。以下示例都是使用小部件时的有效用例。
例子:
// Create the HTML div element programmatically at runtime and set to the widget's container const basemapGallery = new BasemapGallery({ view: view, container: document.createElement("div") }); // Add the widget to the top-right corner of the view view.ui.add(basemapGallery, { position: "top-right" });
// Specify an already-defined HTML div element in the widget's container const basemapGallery = new BasemapGallery({ view: view, container: basemapGalleryDiv }); // Add the widget to the top-right corner of the view view.ui.add(basemapGallery, { position: "top-right" }); // HTML markup <body> <div id="viewDiv"></div> <div id="basemapGalleryDiv"></div> </body>
// Specify the widget while adding to the view's UI const basemapGallery = new BasemapGallery({ view: view }); // Add the widget to the top-right corner of the view view.ui.add(basemapGallery, { position: "top-right" });
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/widgets/FeatureForm"], (FeatureForm) => { /* code goes here */ });
ESM:
import FeatureForm from "@arcgis/core/widgets/FeatureForm";
类:
esri/widgets/FeatureForm
继承: FeatureForm > Widget > Accessor
自从:用于 JavaScript 4.9 的 ArcGIS API
用法说明
FeatureForm.container
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS FeatureForm.classes用法及代码示例
- JavaScript ArcGIS FeatureForm.when用法及代码示例
- JavaScript ArcGIS FeatureForm.getValues用法及代码示例
- JavaScript ArcGIS FeatureForm.visible用法及代码示例
- JavaScript ArcGIS FeatureForm.submit用法及代码示例
- JavaScript ArcGIS FeatureForm.on用法及代码示例
- JavaScript ArcGIS FeatureForm.formTemplate用法及代码示例
- JavaScript ArcGIS FeatureForm.headingLevel用法及代码示例
- JavaScript ArcGIS FeatureForm.feature用法及代码示例
- JavaScript ArcGIS FeatureForm.layer用法及代码示例
- JavaScript ArcGIS FeatureForm用法及代码示例
- JavaScript ArcGIS FeatureForm submit事件用法及代码示例
- JavaScript ArcGIS FeatureFilter用法及代码示例
- JavaScript ArcGIS FeatureFilter.spatialRelationship用法及代码示例
- JavaScript ArcGIS FeatureFilter.createQuery用法及代码示例
- JavaScript ArcGIS FeatureFilter.where用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryExtent用法及代码示例
- JavaScript ArcGIS FeatureLayer.when用法及代码示例
- JavaScript ArcGIS FeatureLayer refresh事件用法及代码示例
- JavaScript ArcGIS FeatureLayer.getFieldDomain用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryFeatureCount用法及代码示例
- JavaScript ArcGIS Feature.visible用法及代码示例
- JavaScript ArcGIS FeatureLayer.formTemplate用法及代码示例
- JavaScript ArcGIS Feature用法及代码示例
- JavaScript ArcGIS FeatureLayer.relationships用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 FeatureForm.container。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。