POST
|
I am now seeing the conflicts between bootstrap.css and jimu-ui.css. For example bringing in the bootstrap makes some buttons in the app transparent like a sidepanel collapse button. So how do you get form control styling is the current question I have.
... View more
06-10-2021
02:04 PM
|
0
|
1
|
2773
|
POST
|
Thank you @Anonymous User. I actually just found expected results when pulling in reactstrap components and bootstrap.css simply using the following: import { Button, Form, FormGroup, Label, Input, FormText, Alert} from 'reactstrap'; import 'bootstrap/dist/css/bootstrap.min.css'; I definitely understand the best practice to use jimu-ui first whenever possible though. Even with jimi-ui I did not see default bootstrap styles (for the FormGroup for example) applied until running the css import in the custom widget though.
... View more
06-10-2021
10:52 AM
|
0
|
2
|
2784
|
POST
|
Hi, I have a framework question about ArcGIS ExB. Thanks for any input. As documented Experience Builder uses reactstrap under the hood for widget ui. When creating a custom widget aiming to target specific components in reactstrap such as forms http://reactstrap.github.io/components/form/, what is the proper way to reference these components? I am seeing that if we import the components import in the widget : { Button, Form, FormGroup, Label, Input, FormText } from 'reactstrap'; ...the resulting widget in the experience is not referencing the elements correctly including the bootstrap CSS and the components are basically not styled at all. I am hoping to clarify how and when to target jimi-ui, reactstrap, and direct bootstrap in widget ui creation. Thanks for any information. Sam
... View more
06-10-2021
07:12 AM
|
0
|
6
|
2837
|
POST
|
Hi, another workflow we are working on is how to use git to sync updates to sites being developed with custom configuration and custom widgets between multiple developers. Rather than a process to keep moving updates into the core builder site, we are currently building a repo at the builder root and using gitignore to exclude everything except the following: # include development required files !.gitignore !/client/ !/client/your-extensions !/client/your-extensions/** !/server/ !/server/public !/server/public/** One quirk is that the builder home page does not stay in sync with list of sites but since by convention we are working on site "0" we can launch via https://localhost:3001/builder/?id=0 and this has been working. Hope this helps. Feedback on this process welcome. Sam
... View more
06-09-2021
12:07 PM
|
2
|
1
|
2071
|
POST
|
Hi, is there any workaround for dropping a locking connection to an Azure SQL Geodatabase? I am aware that the Disconnect User command does not work. Is there an Azure Portal workaround perhaps or a SQL function that can be run? "The geodatabase administrator cannot drop client connections from the Geodatabase Administration dialog box in ArcGIS Desktop clients." Functionality differences for geodatabases in Azure SQL Database—ArcGIS Enterprise | ArcGIS Enterprise Thanks for any thoughts. Sam
... View more
12-17-2019
09:52 AM
|
0
|
1
|
648
|
POST
|
Joe Catanzarita, thanks - this documentation looks like it applies to customizing the portal landing page itself. Our use case is instead for custom "site pages"- sorry if that was not clear. Is there support for external style sheets in a site page as well? Thanks for the info. Sam
... View more
12-06-2019
11:11 AM
|
0
|
0
|
1170
|
POST
|
Hello, is it possible to include external css references into a portal site page? An example would be adding font-awesome to be able to include icons for social media links in the footer, ie.: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <li><a href="https://twitter.com/<>" aria-label="Twitter"><i class="fa fa-twitter"></i></a></li> We have tried including the link reference in the header css but it is getting stripped out of the published page.
... View more
12-06-2019
06:37 AM
|
0
|
6
|
1291
|
POST
|
Thank you Tanu. In this case, the client application is an ArcGIS Open Data site so we can't ourselves change the underlying query. I have put in an enhancement request for this item to Esri. Thank for you for the help and for verifying our finding on this. Sam
... View more
03-28-2019
10:53 AM
|
0
|
3
|
2529
|
POST
|
Hi - looking to diagnose very slow query performance against a multi-million row feature class dataset, we observed that an ArcGIS Server Map/Feature Service layer query looking only for record count and including a spatial geometry filter produces an underlying SQL call returning the entire set of OBJECTIDs as a result (taking 1 min+), and does not issue a SQL call using a SELECT COUNT (taking a few seconds directly in SSMS). It appears that ArcGIS Server is requesting fields from all records and doing the count itself. The result is that certain web GIS apps become unresponsive when generating a count of features within the bounding box. A request similar to this: https://gisservice/MapServer/0/query?where=1%3D1&returnCountOnly=true&geometry=-82.706%2C41.315%2C-61.799%2C44.139&geometryType=esriGeometryEnvelope&inSR=4326&spatialRel=esriSpatialRelIntersects ...results in a SQL query similar to this: exec sp_cursorprepexec @p1 output,@p2 output,N'@P1 varbinary(max)',N'select OBJECTID, SHAPE, GDB_GEOMATTR_DATA from GISDATA.TABLE where (1 = 1) AND TABLE.SHAPE.STIntersects (@P1) = 1',@p5 output,@p6 output,@p7 output,0x6A69000001040500000080CE88F2A07326C100FED418B5F42741C04603B86CD72E4100FED418B5F42741C04603B86CD72E41A0C64B27CDA9314180CE88F2A07326C1A0C64B27CDA9314180CE88F2A07326C100FED418B5F4274101000000020000000001000000FFFFFFFF0000000003 Can a basic alternative or workaround be suggested? This is AGS 10.61 and SQL Server 2016. Thank you. Sam
... View more
03-27-2019
06:20 PM
|
0
|
8
|
3194
|
POST
|
When configuring Workforce to Integrate with a Survey123 form, the survey123 questions that are presented to be linked are coming from the layer 1 in the feature service (a feature layer), which unfortunately is not the target layer for the survey, which is layer 0 (a table). Those table fields are not available. We are unable to tie the workforce project to the survey correctly. I hope this makes sense. Thanks for any thoughts on correction or workaround. Sam
... View more
02-25-2019
12:21 PM
|
1
|
1
|
527
|
POST
|
Thanks, James for clarifying the issue. That workaround solves it.
... View more
05-07-2018
05:12 PM
|
0
|
0
|
1046
|
POST
|
Hi, I was hoping someone might be able to provide some insights into dealing with esriFieldTypeGUID fields. I have an esriFieldTypeGUID geodatabase field, exposed by a survey form's bound esriFieldTypeGUID text field...but am getting an error submitting a form with this field populated. Hopefully an easy one - but does this value need to be manipulated in the form before submitting? An applyEdits directly works ok: Thanks for any ideas. Sam
... View more
05-04-2018
11:25 AM
|
0
|
2
|
1410
|
POST
|
Hosting the Web Application on the same GeoEvent server was my workaround for the issue.
... View more
07-17-2017
12:17 PM
|
1
|
0
|
371
|
POST
|
Hi. I have a stream service running which displays fine in AGOL Map Viewer and published templates apps as long as it is in Chrome. In IE there is no error but no display and the stream controls for the layer cannot start the stream. I have tried this with and without SSL and with and without the Web Adapter. The endpoint /subscribe does work in IE for testing off the REST endpoint. I have added 6180 and 6143 to the firewall. I have opened up document mode in IE and ensured it was 10+ and have tried compatibility views as well. I did capture an error in the F12 debugger in IE of "Error connecting to data stream...: Security Error" when using SSL :6443. Grateful for any ideas on diagnosing the problem. Thanks, Sam VHB
... View more
07-06-2017
11:04 AM
|
0
|
1
|
699
|
POST
|
Hi, does anyone know the API for instructing a new layer being added to a JS map, not to be included in the Legend dijit? var featureLayer = new FeatureLayer(op.url, { mode: FeatureLayer.MODE_SELECTION, outFields: ["*"] }); featureLayer.setSelectionSymbol(new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([0, 255, 255]), 4)); this.map.addLayer(featureLayer);//how to avoid having this layer show up in the legend?
... View more
01-30-2017
06:24 PM
|
0
|
3
|
1755
|
Title | Kudos | Posted |
---|---|---|
2 | 06-19-2023 04:20 AM | |
2 | 08-23-2023 07:56 AM | |
1 | 10-26-2023 08:21 AM | |
2 | 01-10-2023 05:31 PM | |
1 | 05-02-2023 02:13 PM |
Online Status |
Offline
|
Date Last Visited |
09-09-2024
06:12 PM
|