|
POST
|
Ken, are you saying 10.2.2 command line op 'sdetable -o create_view' will work against a 10.3 instance? Will other 10.2.2 command line ops work such as 'sdetable -o delete'? Thanks David
... View more
02-14-2015
10:07 AM
|
0
|
3
|
2222
|
|
POST
|
Thanks, I think I'm with you. I'm somewhat doing that in another app where a user selects an attribute from a FilteringSelect, the results are passed to my dgrid while graphics are placed on the map. Those graphics could become a featureLayer and that layer could then populate the FeatureTable, I think. To answer your question though, I wanted to explore the dijit's column adding functionality...
... View more
02-14-2015
09:51 AM
|
0
|
0
|
2301
|
|
POST
|
Hi Kelly, thanks. I'm bascially already doing the same thing wih a parcel - property 1:m (not showing require modules and aliases): relGrid = new (declare([Grid, ColumnSet, DijitRegistry, ColumnResizer]))({
//minRowsPerPage: 500,
bufferRows : Infinity,
//selectionMode: "single",
loadingMessage: 'Loading data...',
noDataMessage : "No Records Available",
useTouchScroll: false,
columnSets : [
[
[
{field: 'ID', label: 'Account', resizable: false},
{field: 'LINK', label: 'Information', formatter : function(link) {return "<a target='_blank' href=" + link + ">Full Info</a>";}, resizable: false}
]
],[
[
{field: 'NAME1', label: 'Owner Name', resizable: false},
{field: 'JUST', label: 'Justified Value', formatter: toCurrency, resizable: false},
{field: 'ASSD', label: 'Assessed Value', formatter: toCurrency, resizable: false},
{field: 'YRBL', label: 'Year Built', resizable: false}
//{field: 'LSQFT', label: 'Recorded Area', resizable: false}
]
]
]
}, "divGrid");
//relGrid.startup();
function getLocation(evt) {
mapMain.graphics.clear();
mPoint = evt.mapPoint; //evt.
console.log(evt);
var queryParcels = new Query;
queryParcels.geometry = mPoint; //mPo
var parQuery = lyrParcels.selectFeatures(queryParcels,FeatureLayer.SELECTION_NEW); //deferred evacQuery
console.log(mPoint);
mapMain.infoWindow.setFeatures([parQuery]); //mapMain.infoWindow.setContent(evt.result.name);
mapMain.infoWindow.show(mPoint); ///evt.result.feature.geometry);
if (mPoint !== undefined) {
mapMain.centerAndZoom(mPoint, 13); //7 for sph mPoint 13
}
lyrParcels.on("selection-complete", findRelatedRecords);
function findRelatedRecords(event) {
features = event.features;
relatedParQuery = new RelationshipQuery();
relatedParQuery.outFields = ["OBJECTID","ID", "NAME1", "JUST", "ASSD", "YRBL", "LSQFT"];
relatedParQuery.relationshipId = 1;
relatedParQuery.objectIds = [features[0].attributes.OBJECTID];
lyrParcels.queryRelatedFeatures(relatedParQuery, function(relatedRecords) {
if (!relatedRecords.hasOwnProperty(features[0].attributes.OBJECTID) ) {
console.log("No related records for ObjectID: ", features[0].attributes.OBJECTID);
return;
}
fset = relatedRecords[features[0].attributes.OBJECTID];
for (var i=0 ; i < fset.features.length; i++) {
fset.features.attributes.LINK = "http://www.sc-pa.com/testsearch/parcel/" + fset.features.attributes.ID;
}
console.log(fset);
items = array.map(fset.features, function(feature) { //
return feature.attributes;
});
for (var i=0 ; i < items.length; i++) {
items.JUST = parseInt(items.JUST); //parses numeric integer (parseInt) and float (parseFloat) into an real number
}
for (var i=0 ; i < items.length; i++) {
items.ASSD = parseInt(items.ASSD);
}
for (var i=0 ; i < items.length; i++) {
items.LSQFT = parseInt(items.LSQFT);
}
//Create data object to be used in store
relData = {
identifier: "OBJECTID", //This field needs to have unique values
label: "OBJECTID", //Name field for display. Not pertinent to a grid but may be used elsewhere.
items: items
};
/* for (var i=0 ; i < items.length; i++) { //this items loop will get the IDs, but will only pass the last value to our hyperlink field
pid = items.ID;
console.log(pid);
}*/
//Create data store and bind to grid.
relStore = new Memory({
data: relData
});
//console.log(relStore);
relGrid.set("store", relStore);
//relGrid.set("query", {OBJECTID: "*"}); //filters what?
});
//if (!gridPane._showing) {
// gridPane.toggle();
//}
}
Not quite as elegant as yours but it works well and handles the links and sorting requierments needed for numeric columns in my dGrid. I was asking about moving to featureTable because I am looking for maybe a little better dom node solution because I want the dGrid to play well on tablets without maybe having to go to dojox. Are you saying I should be able to pass this store into a featureTable instead of my dGrid?
... View more
02-13-2015
01:33 PM
|
0
|
5
|
2301
|
|
POST
|
Hi- Has anyone used the FeatureTable dijit with a RelationshipQuery - i.e. to return related records? Maybe the RelationshipQuery has to come from a TableDataSource? Thanks- David
... View more
02-12-2015
04:13 PM
|
0
|
8
|
6584
|
|
POST
|
Well sad to say that in our clustered production envrionment the 'Update Storage Format' appears to be corrupting the existing 10.2.2 bundles when upgrading to 10.3 format. This did not occur on my stand-alone dev machine. In prodcution, the tool runs correctly, but then to tiles are visible. Upon running a recreate all tiles, the bundle move errors occur even with no load on the service. As such, I am deleting and the recreating new caches. Once I have some new caches in place, I'll re-try a recreate_all and post back what I find....
... View more
02-12-2015
03:18 PM
|
0
|
8
|
3201
|
|
POST
|
Hey Royce - I just got my production environment updated to 10.3 and am itching to get started with collector now that it will support versioned edits. Since I think we have similar architecture I'll get back to you and the community on this post with any findings... Thanks David
... View more
02-10-2015
12:17 PM
|
0
|
3
|
1636
|
|
POST
|
As noted earlier - I have successfully downloaded a mobile project from ArcServer 10.3 mobile content server and synchronized downloads and uploads from a 10.2 mobile project deployed on Windows 7-64. I am unable to test a Windows Mobile deployment. By keeping a desktop at one of the 10.2 releases, you can continue to publish a map and mobile service to ArcServer 10.3, create the necessary mobile cache, download projects from the mobile content server, and synchronize data changes back to the server. As soon as ArcGIS for Windows Mobile 10.2.1 comes out, I can update my remaining desktops. David
... View more
02-05-2015
03:28 PM
|
0
|
7
|
2588
|
|
POST
|
As noted earlier - I have successfully downloaded a mobile project from ArcServer 10.3 mobile content server and synchronized downloads and uploads from a 10.2 mobile project deployed on Windows 7-64. I am unable to test a Windows Mobile deployment. By keeping a desktop at one of the 10.2 releases, you can continue to publish a map and mobile service to ArcServer 10.3, create the necessary mobile cache, download projects from the mobile content server, and synchronize data changes back to the server. As soon as ArcGIS for Windows Mobile 10.2.1 comes out, I can update my remaining desktops. David
... View more
02-05-2015
03:28 PM
|
0
|
0
|
1594
|
|
POST
|
Just a quick update. I've tested mobile cache creation and mobile sync tools on desktop 10.2.2 against a map and mobile service published to ArcServer 10.3 from a 10.2.2 desktop and there are no issues, excepting the projection bug mentioned throughout this post. I have also successfully synced a mobile cache with with it's 10.3 service with no issues through an SDK application. I will be testing the mobile project center projects against 10.3 mobile content server for any sync issues and report back David
... View more
02-04-2015
03:33 PM
|
0
|
1
|
1594
|
|
POST
|
Just a quick update. I've tested mobile cache creation and mobile sync tools on desktop 10.2.2 against a map and mobile service published to ArcServer 10.3 from a 10.2.2 desktop and there are no issues. I have also successfully synced a mobile cache with with it's 10.3 service with no issues. I will be testing the mobile project center projects against 10.3 mobile content server for any sync issues and report back. David
... View more
02-04-2015
03:28 PM
|
0
|
8
|
2588
|
|
POST
|
You're probably not going to want to hear this, but I've had instances where even though I ran the sdetable -o delete command, I still had to go in and make sure all references to the view were also removed from all of the system tables, like GDB_ITEMS, GDB_ITEMTYPES, GDB_TABLES_LAST_MODIFIED, SDE_ table_registry etc. Otherwise the geodatabase thought the view still existed....
... View more
02-04-2015
03:23 PM
|
1
|
0
|
2312
|
|
POST
|
Hello Juan- Do you have a status update as to the release of mobile 10.2.1? Thanks David
... View more
02-03-2015
12:54 PM
|
0
|
11
|
3248
|
|
POST
|
Thanks Ken, I was looking for that discussion and couldn't find it. I would agree with your work around re the PictureFill, but it also looks like if you reference this js https://raw.githubusercontent.com/Chaussette/esri.symbol.FillPattern/master/esri.symbol.FillPattern.js that it overrides the default behavior.. either way thanks to you both for help- David
... View more
01-22-2015
02:10 PM
|
0
|
0
|
1324
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-27-2026 01:27 PM | |
| 2 | 03-25-2026 06:29 AM | |
| 2 | 03-04-2026 11:14 AM | |
| 1 | 02-26-2026 09:46 AM | |
| 1 | 10-30-2025 11:25 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|