|
POST
|
As the tile says, I'd like to run the filter out of view in the background and perform a query on an expression without user's action. How can execute in the background the expression defined in the config_Filter.json? Thanks.
... View more
08-22-2016
03:59 PM
|
0
|
5
|
2891
|
|
POST
|
For all web appbuilder developers. How can create a config file for the AT widget where the layers can be filtered based on a preset criteria? Thanks.
... View more
07-01-2016
01:00 PM
|
0
|
0
|
1413
|
|
DOC
|
I cannot make the custom animation selected in UI, to display long enough. After the animation is shown for 2 secs, it proceeds to another animation, the loading_circle.gif that is located under the jimus.js/images folder. Can we have only the custom animation shown until the map is completed loading? Thanks.I followed the instructions and I have this block under the widgetOnScreen: { "uri": "widgets/MapProgress/Widget", "version": "2.0.1", "visible": false, "id": "widgets_MapProgress_Widget_64", "IsController": false, "name": "MapProgress", "label": "MapProgress", "position": { "relativeTo": "map" }, "config": "configs/MapProgress/config_MapProgress.json" }, I checked the content of the configs\MapProgress\connfig_MapProgress.json and it shows: "mapprogressimage": "/webappbuilder/apps/9//configs/MapProgress/mapprogressimage.gif" mapprogressimage.gif is the custom animation that was copied in the configs with the new name.
... View more
06-17-2016
09:36 AM
|
0
|
0
|
25161
|
|
DOC
|
Thanks for the reply. I check periodically the Local Storage and Session Storage and they're both empty. It is bizarre because I get the "quota exceeded.." when they are empty. I am testing the application on my workstation, not on the server, and there are no other apps running. To avoid similar problems with other users, perhaps I modify the script to provide the option to the users to save the session file at a location of their preference. Of course they will have to retrieve every time they open the browser, but it is more trouble-free approach.
... View more
06-06-2016
08:05 AM
|
0
|
0
|
34134
|
|
DOC
|
This a great widget. When you load up at the first the widget runs fine. However, after a couple saves, I get the message: "Widget.js:950 Uncaught QuotaExceededError: Failed to execute 'setItem' on 'Storage': Setting the value of 'sessions' exceeded the quota. even though I already cleared up the cache (F5), and there are no sessions listed on the table. I even used the localStorage.clear() at the console. I am using Chrome, the latest version. Ideas? Thanks.
... View more
06-03-2016
03:23 PM
|
0
|
0
|
34134
|
|
POST
|
Alternatively, you can just read the url parameter and assign it to a variable to be used in a query widget. I have been using this workflow and it works great.
... View more
06-01-2016
03:35 PM
|
0
|
5
|
2798
|
|
POST
|
Hello Robert. It seems that this customization does not apply for the 2.0 version. Position.bottom has no effect on the location of the tools. How can it be resolved? Thank you. UPDATE 5/9 For those of you who want to perform m the same task in the version 2.0, just change the position.top under the _getGroupPanelPosition (don't confuse it with the _getOffPanelPosition). In my case, in line 5, I subtracted 100 px from the position.top. _getGroupPanelPosition: function(dockableItem, widgetBox){
var position = {},
iconBox = domGeometry.position(dockableItem.iconItemNode),
mapBox = domGeometry.getContentBox(jimuConfig.mapId);
position.top = iconBox.y - widgetBox.h - MIN_MARGIN-100;
if (window.isRTL) {
if(iconBox.x < widgetBox.w + MIN_MARGIN){
position.left = MIN_MARGIN;
}else{
position.left = iconBox.x - widgetBox.w + iconBox.w;
}
} else {
if(iconBox.x + widgetBox.w + MIN_MARGIN > mapBox.w){
position.left = mapBox.w - widgetBox.w - MIN_MARGIN;
}else{
position.left = iconBox.x;
}
}
return position;
},
... View more
05-06-2016
01:03 PM
|
0
|
0
|
738
|
|
POST
|
I am using the launchpad and in the panel, I have widget groups. In one of the groups, is the LayerList that I wish to open at Startup. I set the openAtStartup to true, but it doesn't work. I can set the group to open at startup, but still it does not work. I am using the LocalLayer widget to set the layers. Suggestions? Thanks. "widgetPool": {
"panel": {
"uri": "themes/LaunchpadTheme/panels/LaunchpadPanel/Panel",
"position": {
"relativeTo": "map"
}
},
"widgets": [
{
"name": "BasemapGallery",
"label": "Basemap Gallery",
"version": "1.4",
"uri": "widgets/BasemapGallery/Widget",
"config": "configs/BasemapGallery/config_Basemap Gallery.json",
"index": 2,
"id": "widgets_BasemapGallery_Widget_33"
}
],
"groups": [
{
"label": "Project Info",
"widgets": [
{
"uri": "widgets/LayerList/Widget",
"version": "1.4",
"id": "widgets_LayerList_Widget_17",
"name": "LayerList",
"label": "Layer List",
"index": 3,
"openAtStart": true
},
------------
... View more
04-22-2016
11:26 AM
|
0
|
1
|
2578
|
|
POST
|
Thanks for replying Robert. I searched everywhere to see if somehow in the myriad of coding I inserted a infoWindow.resize and forgot about it, but nothing showed up.
... View more
04-22-2016
09:56 AM
|
0
|
0
|
806
|
|
POST
|
Bummer. Nobody has an answer to this or experience it?
... View more
04-22-2016
09:11 AM
|
0
|
2
|
806
|
|
POST
|
Hello folks. I'm using the local layer widget and I configured the popups. I noticed that after the initially the map is drawn and you zoom in and out, when you click on a feature the popup is minimized and cannot get it to its original size. Anybody noticed this behavior? Thank you. Original pop-up Minimized pop-up
... View more
04-11-2016
09:32 AM
|
0
|
3
|
2277
|
|
POST
|
I am trying to use the exportToCSV function to export to csv from a tab that is not clicked on. I used the function tabChanged to change the active tab: this.tabContainer.selectChild(page);
this.tabChanged(); and I verified that the active tab has indeed changed by: var params = this.tabContainer.selectedChildWidget.params;
console.log(params.title); however, when the call is made to table.exportToCSV(params.title); I get the error that on the _FeatureTable.js the } else if (this.grid.store instanceof Memory) { this.grid is null! how can I simulate a click on a tab or update the grid with another tab's grid content? Thanks.
... View more
03-21-2016
01:15 PM
|
0
|
0
|
1261
|
|
POST
|
I wish I knew. By removing the layer from wab and re-inserting it "forced" the wab to pull the colors from the web service. Thank you.
... View more
03-18-2016
11:50 AM
|
0
|
1
|
1577
|
|
POST
|
03-17-2016
04:23 PM
|
0
|
0
|
603
|
|
POST
|
The issue appears after the mxd file is published for the first time. After the service is published and on the wab, try to change the symbology of the layer at the mxd level and then republish to see if the wab will display the new symbology. In my case it was never updated.
... View more
03-17-2016
10:46 AM
|
0
|
0
|
1577
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-09-2026 12:44 PM | |
| 1 | 06-08-2026 12:12 PM | |
| 1 | 06-19-2025 10:13 PM | |
| 3 | 02-06-2026 10:44 AM | |
| 1 | 01-08-2026 12:50 PM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|