|
POST
|
Do i am the eQuery folder to client\stemapp\widgets directory and add a reference to the widget in the standard Default App configuration located at \client\stemapp\predefined-apps\default\config.json, under the widgetOnScreen section? I am on WAB Dev 2.3. { "uri": "widgets/eQuery/Widget", "visible": false },
... View more
02-16-2017
03:32 PM
|
0
|
0
|
6826
|
|
POST
|
Sorry to bug again but I am still a little off with the Esri World geocoder search. I tried adjusting the Widget Search but no luck, nothing changes. I must be missing something... No matter what i change the "left" to nothing changes. { "uri": "widgets/Search/Widget", "position": { "left": 660, "top": 55, "width": 300, "zIndex": 1, "relativeTo": "map" }, "version": "2.3", "id": "widgets_Search_Widget_38", "name": "Search" },
... View more
02-16-2017
03:07 PM
|
0
|
1
|
3215
|
|
POST
|
I was getting close but you pointed me to the answer, you are the MAN Robert!
... View more
02-16-2017
11:28 AM
|
0
|
0
|
3216
|
|
POST
|
Thanks to both of you. I was able to make the logo bigger and move the zoom, home and locate icons down. I just need to move and center the header with GIS app with Web Appbuilder for ArcGIS and the Esri world geocoder. How can move this? edits i made, .claro .jimu-widget-header .logo {
height: 115px !important;
width: 115px;
min-width: 50px;
background-color: #3b8fc4;
-webkit-border-radius: 50px;
border-radius: 80px !important;
position: relative;
top: -12px !important;
left: -1px !important;
-webkit-box-shadow: 0 1px 0.5px rgba(0,0,0,0.3), 0 2px 2px rgba(0,0,0,0.2);
box-shadow: 0 1px 0.5px rgba(0,0,0,0.3), 0 2px 2px rgba(0,0,0,0.2);
} Thanks.
... View more
02-16-2017
09:10 AM
|
0
|
2
|
3216
|
|
POST
|
After making some applications i noticed that the logo is always small how do you make logo bigger. I would image you would have to move the header and the contents to the right. Can some one show me how to make these changes. please?
... View more
02-15-2017
02:20 PM
|
1
|
16
|
11663
|
|
DOC
|
How do you update versions say from 2.2 to 2.3, do i just replace the eSearch folder in the clien/stemapp/widgets? If you have applications with say 2.2 to update do you just replace the eSearch folder in the App widget folder? my apologies for the question i am sure it's probably been asked but couldn't find anything. I can't find a way to search a post. Thanks.
... View more
02-15-2017
02:03 PM
|
0
|
0
|
9186
|
|
POST
|
Never mind i got it, I forgot to change the "id": "_49" to 50, 51,52. Thanks for the fast reply and help!
... View more
02-14-2017
10:50 AM
|
0
|
0
|
1495
|
|
POST
|
I followed the instructions per the thread but after making the changes when i use WAB to launch/edit the app i just get the loading turning icon the app never opens. I went into the config.json and add the three new placeholders there. Under "widgetsOnScreen" object and its "widgets" array like so. {
"uri": "widgets/Splash/Widget",
"visible": false,
"position": {
"relativeTo": "browser"
},
"version": "2.3",
"id": "widgets_Splash_Widget_46",
"name": "Splash"
},
{
"position": {
"right": 100,
"top": 20,
"relativeTo": "map"
},
"placeholderIndex": 1,
"id": "_47"
},
{
"position": {
"right": 150,
"top": 20,
"relativeTo": "map"
},
"placeholderIndex": 2,
"id": "_48"
},
{
"position": {
"right": 200,
"top": 20,
"relativeTo": "map"
},
"placeholderIndex": 3,
"id": "_49"
},{
"position": {
"right": 100,
"top": 40,
"relativeTo": "map"
},
"placeholderIndex": 4,
"id": "_47"
},{
"position": {
"right": 150,
"top": 40,
"relativeTo": "map"
},
"placeholderIndex": 5,
"id": "_48"
},{
"position": {
"right": 200,
"top": 40,
"relativeTo": "map"
},
"placeholderIndex": 6,
"id": "_49"
},{
"uri": "widgets/ExtentNavigate/Widget",
"visible": false,
"position": {
"top": 255,
"left": 25,
"relativeTo": "map"
},
"version": "2.3",
"id": "widgets_ExtentNavigate_Widget_50",
"name": "ExtentNavigate"
}
... View more
02-14-2017
10:46 AM
|
0
|
1
|
1495
|
|
POST
|
I currently updated to WAB 2.3, i will keep an eye out for the new updates for 2.3. They look awesome! How do you add these to WAB to actually show up?
... View more
02-14-2017
09:52 AM
|
1
|
0
|
6826
|
|
POST
|
Add more Layer Toggle buttons to Launchpad Theme. Currently you can only use 3 button widgets at the top of the Launch pad theme. I would like to add up to 3 to 6 more. Can this be done? anyone willing to help more do this please? Thanks.
... View more
02-14-2017
09:18 AM
|
0
|
3
|
1922
|
|
POST
|
yes some services are secured. The other problem i am having is i can't print any layer if i use the LocalLayer Widget secured or none secured.
... View more
02-08-2017
03:46 PM
|
1
|
3
|
4813
|
|
POST
|
I have a table BuildingTable with building info. There is a field called "Build_num" with characters like B37828 or B2898101 or R29499010C or R29499010C2 that i need to join to a shapefile but the the Shapefile BuildNum has a max of 11 characters like so B3782800000 or B2898101000. so i can't join the table to shapefile. How can update the BuildingTable field "Build_num" to add trailing zeros to that field? I tried the following, i added a new filed to insert the new Build numbers with the trailing zeros but nothing happened. import arcpy fc = "BluidingPermitsTable" fields = ('Build_num', 'BuildNum') with arcpy.da.UpdateCursor(fc, fields) as cursor: for row in cursor: if row[0] <= 11: row[1] = '0' + str(row[0]) cursor.updateRow(row) Thanks.
... View more
02-01-2017
09:21 AM
|
0
|
6
|
3436
|
|
POST
|
Are you referring to the search widget that comes stock with the Web appbuilder Dev? or the eSearch? I have set the Zoom scale(zome scale 1:24000) in the eSearch config but just zooms really close.
... View more
01-31-2017
01:47 PM
|
0
|
0
|
2036
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-27-2022 11:37 AM | |
| 1 | 10-31-2023 10:16 AM | |
| 1 | 02-16-2023 01:50 PM | |
| 1 | 08-11-2021 11:13 AM | |
| 1 | 01-06-2021 10:45 AM |
| Online Status |
Offline
|
| Date Last Visited |
09-10-2024
10:42 AM
|