|
POST
|
I do not think there is a functional edit widget for https://community.esri.com/community/gis/applications/operations-dashboard-for-arcgis?sr=search&searchId=6b27c6d8-832a-4f45-a427-700c284134b2&searchIndex=0. You could write your own possibly.
... View more
04-04-2017
01:09 PM
|
0
|
0
|
676
|
|
POST
|
Robert, Thank you. I was hoping it was not my widget but something else that could be changed.
... View more
03-23-2017
07:09 AM
|
0
|
3
|
2628
|
|
POST
|
I am not sure if this is what you are looking for but I came across it today GitHub - apfister/sdg-promoter: Review Items in an ArcGIS Online Organization Group and choose to Promote to a public Gr…
... View more
03-22-2017
04:09 PM
|
0
|
0
|
1007
|
|
POST
|
rscheitlin I should also add that it is mostly using the LL widget. It is using my custom LL widget that I made a few years ago. It does not use the config.json. I was able to get the LayerList widget to remove the unwanted labels just not the legend.
... View more
03-22-2017
03:54 PM
|
0
|
5
|
2628
|
|
POST
|
I am using the LocalLayer widget to add the layers so it does not use AGOL.
... View more
03-22-2017
02:22 PM
|
0
|
0
|
580
|
|
POST
|
rscheitlin I should also add that I am adding the layer with the LocalLayer widget. I have uncommitted out that section but it seems to work for the layer list not the legend. Thank you
... View more
03-22-2017
02:22 PM
|
0
|
7
|
2628
|
|
POST
|
How do I change the layer label to be only what the name of the layer is? I am using the Developer edition. I want it to say Building Labels and not Interior_ - Building Labels
... View more
03-22-2017
12:57 PM
|
0
|
11
|
4094
|
|
POST
|
Here are some scripts GitHub - Esri/workforce-scripts: A set of scripts to help administer Workforce projects.
... View more
03-22-2017
12:45 PM
|
0
|
3
|
3960
|
|
POST
|
Tagging https://community.esri.com/community/gis/web-gis/web-appbuilder?sr=search&searchId=f8d74bbb-55f8-4d7f-b7b7-836235a83ca3&searchIndex=1
... View more
03-22-2017
09:27 AM
|
0
|
0
|
5458
|
|
POST
|
Look here: Tutorial: Publishing additional services for printing—Documentation | ArcGIS Enterprise https://community.esri.com/community/gis/web-gis/arcgisonline?sr=search&searchId=3c200908-1b07-499c-b99c-402fe8cae8de&searchIndex=9
... View more
03-21-2017
09:05 AM
|
1
|
0
|
2031
|
|
POST
|
Look at this conversation https://community.esri.com/thread/186297-will-esri-be-looking-to-make-it-so-that-you-can-host-all-your-layers-for-workforce-internally-on-your-own-database
... View more
03-15-2017
09:56 AM
|
1
|
1
|
933
|
|
POST
|
Did you use the option to place the layer on the ground?
... View more
03-14-2017
08:06 AM
|
0
|
0
|
957
|
|
POST
|
I found the solution. The issue was the No title block. Since all my templates have title blocks I just removed the lines from my code and now it works with Roberts edits _handlePrintInfo: function(data) {
var Layout_Template = array.filter(data.parameters, function(param) {
return param.name === "Layout_Template";
});
if (Layout_Template.length === 0) {
console.log("print service parameters name for templates must be \"Layout_Template\"");
return;
}
var layoutParam;
var layoutItems = array.map(Layout_Template[0].choiceList, lang.hitch(this, function(item) {
layoutParam = this.layoutParams[item];
// using Roberts example I was able to adapt this
if(item !== "MAP_ONLY" && item !== "Elevation8x11Portrait" && item !== "Elevation8x11Landscape" && item !== "PreApp_8.5x11Portrait" && item !== "UtilityLocates8x11Portrait" && item !== "UtilityLocates8x11Landscape" && item !== "PreApp_8.5x11Landscape"){
return {
label: item,
value: item
};
}
}));
// Comment out this whole section
/* // Filter out the No Title Block templates
var index;
var noTbLayouts = [];
if (this.noTitleBlockPrefix) {
layoutItems = array.filter(layoutItems, lang.hitch(this, function(item) {
index = item.value.indexOf(this.noTitleBlockPrefix);
if (index === 0) {
noTbLayouts.push(item.value.slice(this.noTitleBlockPrefix.length));
return false;
} else {
return true;
}
return item.label.indexOf(this.noTitleBlockPrefix) !== 0;
}));
}
// Add a property to the layouts that have a corresponding "no title block" layout.
if (noTbLayouts.length) {
array.forEach(layoutItems, function(item) {
item.noTb = array.indexOf(noTbLayouts, item.value) !== -1;
});
}
*/
// Sort the layouts in the order they are listed in layoutParams (config.json). If a layout is not included in layoutParams
// (and has not been eliminated by the noTitleBlockPrefix filter above), put it at the end of the list.
var keys = functional.keys(this.layoutParams);
var bIndex;
layoutItems.sort(function(a, b) {
bIndex = array.indexOf(keys, b.value);
return (bIndex !== -1) ? array.indexOf(keys, a.value) - bIndex : -1;
});
this.layoutDijit.addOption(layoutItems);
this.mapSheetParams.layout = this.defaultLayout ? this.defaultLayout : Layout_Template[0].defaultValue;
this.layoutDijit.set('value', this.mapSheetParams.layout);
this.onStateChange('LAYOUT', this.mapSheetParams.layout);
var Format = array.filter(data.parameters, function(param) {
return param.name === "Format";
});
if (Format.length === 0) {
console.log("print service parameters name for format must be \"Format\"");
return;
}
var formatItems = array.map(Format[0].choiceList, function(item) {
//Remove the EPS, SVG, and SVGZ formats
return {
label: item,
value: item
};
//end my change
// return {
// label: item,
// value: item
// };
});
formatItems.sort(function(a, b) {
return (a.label > b.label) ? 1 : ((b.label > a.label) ? -1 : 0);
});
this.formatDijit.addOption(formatItems);
if (this.defaultFormat) {
this.formatDijit.set('value', this.defaultFormat);
} else {
this.formatDijit.set('value', Format[0].defaultValue);
}
},
... View more
03-02-2017
11:23 AM
|
0
|
0
|
2802
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-28-2025 01:53 PM | |
| 1 | 08-24-2022 09:40 AM | |
| 1 | 07-19-2018 04:41 PM | |
| 1 | 04-05-2024 03:12 PM | |
| 1 | 07-04-2024 11:42 AM |