|
POST
|
A scroll pane? Something I need to install? Reference? Any examples or sites...
... View more
04-25-2014
09:11 AM
|
0
|
0
|
1095
|
|
POST
|
I am looking to place a bunch of Grids inside a container....having issues I want an external container with a width of Auto which will fit inside a centralized container in the middle of my page. Inside this external container I want another container that will allow the user to scroll left and right to see all the info that is inside it. There will be more inside this container that can be viewed...SO I am looking how to make a horizontal slider in this container so the users can scroll Thoughts? Thanks
... View more
04-25-2014
09:04 AM
|
0
|
7
|
1444
|
|
POST
|
FANTASTIC.....very appreciated. Cheers http://jsfiddle.net/Jaykapalczynski/HLdyV/114/
... View more
04-25-2014
05:17 AM
|
0
|
0
|
744
|
|
POST
|
I have no idea what was going on.....I copied my HTML Page, JS page, and css page.... Erased all code in them. Started to bring back the code one piece at a time. Replaced the code VERBATIM and it works now...There is nothing different between the two projects that I can see....really weird. I THANK YOU ALL for your thoughts....very helpful and trying to work through these challenges.... Much appreciated.
... View more
04-24-2014
09:23 AM
|
0
|
0
|
308
|
|
POST
|
THINKING I MIGHT HAVE GOTTEN IT...I REMOVED A TON OF MY CODE AND STARTED FROM SCRATCH I am going to add each piece back untill i error out....BRB
... View more
04-24-2014
08:37 AM
|
0
|
0
|
934
|
|
POST
|
Any thoughts on my last post jon.uihlein Am i close? Object error...not sure about that Thanks
... View more
04-24-2014
08:10 AM
|
0
|
0
|
744
|
|
POST
|
Thanks for your thoughts....both of ya....appreciated. Thats what I was figuring...I had the containers aliases in there at one time but took them out as another example didnt have them in there. Cool...thanks....
... View more
04-24-2014
05:51 AM
|
0
|
0
|
822
|
|
POST
|
Alright this is VERY weird....I got the example aobve working fine in JS Fiddle. I pasted all my code from my project into JS Fiddle and it worked. The exact same code in my project does not display the zoom buttons....wow The only thing thats different between my project is that JSFiddle requires the below where i define the stylesheets removal of the meta data removal of the <html><head> tags removal of my defined .js page and .css page....of which were copied verbatum into the JS Fiddle. I cleared my cache many times I refreshed the web service many times. Check in 3 different browsers (IE, Chrome, Firefox) No blatant errors in the Chromes debugging Console window This is driving me nuts....what the heck can be different or causing this
... View more
04-24-2014
05:03 AM
|
0
|
0
|
934
|
|
POST
|
1. Is there a specific order in which the below have to follow i.e. the PARSER has to come before the MAP or the READY before the connect? or can I place them in ANY order as long as the order is the same in the REQUIRE as it is in the FUNCTION 2. I noticed the containers and Dom/Ready do not require anything in the Function why is that? Thanks require([ "dojo/ready", "dojo/on", "dojo/_base/connect", "dojo/dom", "dojo/dom-construct", "dojo/keys", "esri/SnappingManager", "esri/dijit/Measurement", "esri/sniff", "dojo/parser", "dijit/registry", "dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dijit/layout/AccordionContainer", "dojo/domReady!" ], function( ready, on, connect, dom, domConstruct, keys, SnappingManager, Measurement, has, parser, registry ) {
... View more
04-24-2014
04:46 AM
|
0
|
4
|
1246
|
|
POST
|
alright its working in the JSFiddle but for some reason not in my code....this is so simple dont know why I am having an issue. Will try again...
... View more
04-23-2014
12:48 PM
|
0
|
0
|
934
|
|
POST
|
So weird I have no idea whats going on...I clear my cache and refreshed my Website... The parser was added here but still no Zoom in and ZOom out http://jsfiddle.net/Jaykapalczynski/WyMzY/15/ Below is a snip of my code that should be making this happen, but no go...the Hoem and Locate button are there but no Zoom in Zoom out
<div id="MapContainer" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'">
<div id="map" class="map">
<div id="HomeButton"></div>
<div id="LocateButton"></div>
</div>
</div>
<link rel="stylesheet" href="https://js.arcgis.com/3.9/js/esri/css/esri.css">
<script src="https://js.arcgis.com/3.9/"></script>
app.map = new esri.Map("map", {
basemap: "topo",
center: [-77.4329, 37.5410],
zoom: 7,
slider: false,
showAttribution:true,
logo: false
});
var home = new HomeButton({
map: app.map
}, "HomeButton");
home.startup();
var geoLocate = new LocateButton({
map: app.map
}, "LocateButton");
geoLocate.startup();
... View more
04-23-2014
12:24 PM
|
0
|
0
|
934
|
|
POST
|
trying to get this to work....topo wont even display Trying to get a home button, Location Button, and the Zoom in and zoom out http://jsfiddle.net/Jaykapalczynski/WyMzY/11/
... View more
04-23-2014
10:40 AM
|
0
|
0
|
934
|
|
POST
|
var app = {};
app.map = new esri.Map("map", {
basemap: "topo",
center: [-77.4329, 37.5410],
zoom: 7,
slider: false,
showAttribution:false,
logo: false
});
var home = new HomeButton({
map: app.map
}, "HomeButton");
home.startup();
var geoLocate = new LocateButton({
map: app.map
}, "LocateButton");
geoLocate.startup();
... View more
04-23-2014
08:53 AM
|
0
|
0
|
1319
|
|
POST
|
I am doing this and not getting anything but the Home Button and Locate Button No zoom in or zoom out
#map{
padding:0;
margin:0;
width:auto;
height:auto;
border:1px solid red;
border-radius: 20px;
background-color: #fff;
}
#HomeButton {
position: absolute;
top: 95px;
left: 20px;
z-index: 50;
}
#LocateButton {
position: absolute;
top: 135px;
left: 20px;
z-index: 50;
}
<div id="CenterPane" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center'">
<div id="MapContainer" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'top'">
<div id="map" class="map">
<div id="HomeButton"></div>
<div id="LocateButton"></div>
</div>
</div>
<div id="TabBottomContainer" data-dojo-type="dijit/layout/TabContainer" data-dojo-props="region:'bottom'">
<div data-dojo-type="dijit/layout/ContentPane" title="Boat Ramps">
<div id="info2" >
<div id="grid" class="slate"></div>
</div>
</div>
</div>
</div>
... View more
04-23-2014
08:34 AM
|
0
|
0
|
1319
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-20-2018 11:09 AM | |
| 1 | 09-10-2018 06:26 AM | |
| 1 | 09-15-2022 11:02 AM | |
| 1 | 05-21-2021 07:35 AM | |
| 1 | 08-09-2022 12:39 PM |
| Online Status |
Offline
|
| Date Last Visited |
09-19-2022
09:23 PM
|