DOC
|
@RobertScheitlin__GISP Thanks for the clue. I remember it wrong, we placed the Enhanced Widget in the lower left corner in the Jewelry Box theme. It is not in the Header controller. I test to place the widget into the Header Controller, the collapse/un-collapse button shows.
... View more
08-09-2021
09:20 AM
|
0
|
0
|
7325
|
DOC
|
@RobertScheitlin__GISP Thank you for such quick reply. I haven't check the app's and widgets' configuration for a while. We use Jewelry Box Theme. It is likely in HeaderController. "version": "2.16", "id": "themes_JewelryBoxTheme_widgets_HeaderController_Widget_21", "name": "HeaderController" ...... { "position": { "left": 57, "bottom": 70, "relativeTo": "map" }, "placeholderIndex": 1, "id": "_47", "uri": "widgets/eSearch/Widget", "openAtStart": false, "name": "eSearch", "closeable": true, "config": "configs/eSearch/config__47.json", "version": "2.5" },
... View more
08-09-2021
07:33 AM
|
0
|
0
|
7338
|
DOC
|
Hi Robert, We have been using the enhanced search widget (older version) on several web app for many years. Recently, one user ask how to minimize the enhanced search widget window. Does the newer version include the icon to maximize and minimize the window? Many thanks.
... View more
08-09-2021
06:58 AM
|
0
|
0
|
7366
|
POST
|
User likes the convenience to copy multiple rows of parcel number from excel. Microsoft should update their IE for the IE lovers.
... View more
11-07-2019
10:06 AM
|
0
|
0
|
1540
|
POST
|
I poke around. Brandon Pugh post a solution and code in his blog https://www.brandonpugh.com/blog/2011/10/allow-pasting-multiple-lines-in-ie-textbox/ if (window.clipboardData) { $('#textboxId').bind('paste', function (e) { var clipped = window.clipboardData.getData('Text'); clipped = clipped.replace(/(\r\n|\n|\r)/gm, " "); //replace newlines with spaces $(this).val(clipped); return false; //cancel the pasting event }); } Time to digest the Enhanced Search Widget and inject the code above.
... View more
11-07-2019
08:54 AM
|
0
|
2
|
1540
|
POST
|
You are right. Sometime it is better to convince the users to give up IE.
... View more
11-07-2019
08:50 AM
|
2
|
1
|
1540
|
POST
|
When to copy a multiple lines of value from Notepad or Excel and paste them to to the text box in Enhanced Search Widget, Chrome, Edge and Firefox all can handle it well and work charmingly. However the user prefers IE and IE can only take the first line of values. Any suggestion to fix this? Many thanks.
... View more
11-06-2019
10:27 AM
|
0
|
6
|
1773
|
POST
|
Here is a brutal way. At the line 71 in the report.js (server/apps/your app folder/jimu.js/dijit/Report.js), change the default table columns to 4 or any number you need. the default is 3. 71 maxNoOfCols: 4 // to store table columns or digest the function _formatAndRenderTables starting at line 551 in the Report.js and figure out how to overwrite the table cols. 551 _formatAndRenderTables: function (tableParentNode, reportData) { var tableInfo = reportData.data; var i, j, colsTempArray, rowsTempArray, chunk = this.maxNoOfCols; //table cols can be overridden by setting in the table data properties if (tableInfo.maxNoOfCols) { chunk = tableInfo.maxNoOfCols; } .... So, the good way is to add the maxNoOfCols in the table data setting data: { maxNoOfCols: 4, showRowIndex: false, rows: [], cols: [], }
... View more
07-26-2018
04:09 PM
|
1
|
1
|
804
|
POST
|
Hi Travis Does "registering database with portal" save the need to update the service every day at last? Based upon the answers above, it should be. I just want to ensure from your hands on experience in real practice. Thanks
... View more
12-20-2017
01:58 PM
|
0
|
1
|
1534
|
DOC
|
Robert, Thank you for the instant reply. Will that function be included in future version? What is the road block in developing that capability, just curious? By the way, I am so grateful that you develop and share so many wonderful widgets. Our team uses your widgets a lot, eSearch, Popup, Layer Toggle Button, to name a few.
... View more
11-20-2017
03:11 PM
|
0
|
0
|
5071
|
DOC
|
Caleb, in your app, do three layer toggle buttons work independently or interactively to each other? I mean when you click the toggle button to turn on one group layer, for example water group, do the other two group layers, the electrical group layer and gas group layer, turn off automatically responsively if they are turned on before?
... View more
11-20-2017
02:50 PM
|
0
|
0
|
5071
|
POST
|
Thanks Paul. The folder is in the same domain shared to all domain users. The Portal administrator is checking with the IT people on the permission of the folder
... View more
11-07-2017
11:26 AM
|
0
|
0
|
761
|
POST
|
Good Morning, <update 1> This may be a problem of the unsupported extension LocalLinks on Chrome. The hyperlink in Web App works in IE. <update 2> the similar almost identical issue has been thoroughly discussed in comments of the blog post https://blogs.esri.com/esri/arcgis/2016/08/24/url-parameters-in-pop-ups/. <update 3> find another extension which solve the problem. Enable local file links - Chrome Web Store The other one "LocalLinks" doesn't work: https://chrome.google.com/webstore/detail/locallinks/jllpkdkcdjndhggodimiphkghogcpida Can anyone help shed some light on the following issue on hyperlink to file in a shared folder? The hyperlink works in Web Map but failed in Web App. Is there special formatting to enable the hyperlink acts the same in Web App as in Web Map. I configure the Popup with a link to a file in a shared folder. It works in web map. However inside the App, no reaction when click the link. <tr><td style="padding: 2px; width: 100px;"><b>Attachments</b></td><td style="padding: 2px;"><a href="{URL_Attachment}" target="_blank">Open Valuation Attachment <br /></a></td></tr> The input in URL_Attachment field, is the full file path and name as below. file://rcant7\data\report\AG\Sales\2017\Desert\753100013-4_9036388_09 02 2016.pdf Because App doesn't respond, I tried to specify the link. In popup configuration, I typed in <a href="file://///rcant7\data\report\AG\Sales\2017\Temecula\Pardee CH Maps (00000002).pdf" target="_blank">testLink</a><br /> the TestLink works and the PDF attachment is open in a new tab in Chrome. After save the web map and reload the App, mouse over the testLink, the status bar shows as below. Instead of the attachment PDF, the App is open in a new tab. https://#####.*******.org:3344/webappbuilder/apps/15/#///rcant7datareportAGSales2017TemeculaPardee CH Maps (00000002).pdf Many Thanks.
... View more
11-07-2017
09:54 AM
|
0
|
2
|
1491
|
Title | Kudos | Posted |
---|---|---|
1 | 07-26-2018 04:09 PM | |
2 | 11-07-2019 08:50 AM |
Online Status |
Offline
|
Date Last Visited |
09-05-2024
01:10 AM
|