How do I connect to another widget from within my custom widget?

2332
12
Jump to solution
05-30-2018 09:53 AM
RyanBrenner1
New Contributor II

I am looking to call the Select Widget within my own custom widget. The idea is to use the select widget to get the selected area, then post that collected information and send it to my custom widget where it will be used to query my file server using ASP where it will then be populated into a dgrid in a panel. I do NOT want to have the Select widget added to my WAB and do not want the user to have access to this first and then have to click on my custom widget. I only want the user to click once, on my custom widget, in order to give the search results in a dgrid table based on their selection.

I have been told there is a way to call another widget, activate it as hidden, use it, and then populate my dgrid with the passed over information. There seems to be no documentation that I can find on how to do this in detail, let along an example of calling another widget to use its functionality. Does anyone have an idea on how to do this without building your own code or modifying the Select tool? I find the modification route starting to get very complicated and messy...

Looking forward to everyone's answers!

Thanks in advance,

Ryan

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Ryan,


  The drawBox dijit in the jimu folder is adijit that wraps the draw toolbar for WAB into a nice dijit. And you can set the default activated tool to be the extent tool and have it automatically fire the queryTask on draw complete event and automatically populate your grid. So your desired workflow of click on your widget select map feature and populate grid is absolutely possible.

View solution in original post

12 Replies
RobertScheitlin__GISP
MVP Emeritus

Ryan,

I have been told there is a way to call another widget, activate it as hidden, use it, and then populate my dgrid with the passed over information.

You have been misinformed.

 You will want to build your own select functionality into your custom widget using the jimu drawBox dijit to draw on the map and then run a QueryTask using the geometry from the draw and extract what ever attributes or the ObjectIds you will pass to your ASP app.

RyanBrenner1
New Contributor II

Hi Robert, 

 

Thanks for the response. This is extremely helpful.

 

Do you think the jimu drawBox dijit would be better to use than the jimu selectDigit to make selections from the map?

 

Thanks in advance,

 

Ryan

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Ryan,

   Unless I am missing it, I do not see a jimu/selectDijit. I have always used the drawBox and a Query task.

0 Kudos
RyanBrenner1
New Contributor II

Robert, 

My apologies. What I meant was a comparison using the following:

1. 'jimu/dijit/FeatureSetChooserForMultipleLayers'

this.selectDijit = new FeatureSetChooserForMultipleLayers({
map: this.map,
updateSelection: true,
fullyWithin: 'wholly',
geoTypes: ['EXTENT']
});

This gives me the selection tool which can select multiple layers or so I think... correct me if I am wrong.

VS

2.  "esri/toolbars/draw"

_initToolbar: function() {
   toolBar = new Draw(this.map);
   toolBar.on("draw-end", addGraphic);

   // event delegation so a click handler is not
   // needed for each individual button
   on(dom.byId("info"), "click", function(evt) {
   if (evt.target.id === "info") {
   return;
}

var tool = evt.target.id.toLowerCase();
this.map.disableMapNavigation();
toolBar.activate(tool);
});
},

addGraphic: function(evt){
   //deactivate the toolbar and clear existing graphics
   toolBar.deavtivate();
   this.map.enableMapNavigation();

   

// assigns a symbol to extent or polygon
   var symbol;
   if (evt.geometry.type === "EXTENT" || evt.geometry.type === "polygon") {
   symbol = fillSymbol;
   }

   this.map.graphics.add(new Graphic(evt.geometry, symbol));

}

I will try to build my custom widget using the draw method. I was hoping to get away from clicking for options to draw. I just want to click on my widget, make my selection and have the results populate my table.

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Ryan,


  The drawBox dijit in the jimu folder is adijit that wraps the draw toolbar for WAB into a nice dijit. And you can set the default activated tool to be the extent tool and have it automatically fire the queryTask on draw complete event and automatically populate your grid. So your desired workflow of click on your widget select map feature and populate grid is absolutely possible.

RyanBrenner1
New Contributor II

Hi Robert,

thanks again for the much needed help. I am fairly new to WAB and development of customized widgets. I was trying to track down some documentation on the dijit/drawBox but was unable to find anything. None-the-less, I was able to get the drawBox to work and was able to draw on the screen. One of the issues I am having is being able to default the drawBox to "EXTENT" and where to do this and how to call it appropriately. Additionally, I was wondering where I would activate the tool automatically when the custom widget icon is clicked?
Would I do this in:

1. postCreate?

2. onOpen?

3. onActive?

Also would I hook this to the icon-node from the controller with an event?

Thanks again for the help! It is very appreciated especially the timely responses.

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Ryan,

   There are several OTB widget and many custom widgets that use the drawBox dijit that you can use as code examples.

To auto activate a draw tool in your widget just add this:

//If you only want the DrawBox to have an extent draw tool then
drawBox.geoTypes = ["EXTENT"];
//to automatically activate the extent
drawBox.activate("EXTENT");‍‍‍
//Do this in the widgets startup or a function that gets called from the startup.
RyanBrenner1
New Contributor II

Robert,

Thanks again. This has been a lot of help getting to know WAB.

I actually found an article (Link to other post here) that had some code that was similar to what I need to do and have been modifying that. You have been an invaluable resource on GeoNet. Thank you for taking the time to help me and others out on here. It is greatly appreciated, especially while trying to learn WAB.

Thanks!

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Ryan,


  Glad to help. Be sure to mark this question as answered by clicking on the Mark Correct link on the reply that answered your question.

0 Kudos