Lixin, I currently do not have any plans to support a Stand Alone Table Relate to have support for zoom to features.
Lixin, For some reason I can't seem to grasp what you are requesting here. You want a tooltip added for the link icon?
Glen, What version and service pack of ArcGIS Server are you running?
private function msToDate(ms:Number, dateFormat:String, useUTC:Boolean):String { var date:Date = new Date(ms); if (date.milliseconds == 999) // workaround for REST bug date.milliseconds++; if (useUTC) date.minutes += date.timezoneOffset; if (dateFormat){ dateFormatter.formatString = dateFormat; var result:String = dateFormatter.format(date); if (result) return result; else return dateFormatter.error; }else{ return date.toLocaleString(); } }
Glenn,Here is the code in my widget and all esri widgets as well that converts the date returned from REST (which is converted to utc before returned): private function msToDate(ms:Number, dateFormat:String, useUTC:Boolean):String { var date:Date = new Date(ms); if (date.milliseconds == 999) // workaround for REST bug date.milliseconds++; if (useUTC) date.minutes += date.timezoneOffset; if (dateFormat){ dateFormatter.formatString = dateFormat; var result:String = dateFormatter.format(date); if (result) return result; else return dateFormatter.error; }else{ return date.toLocaleString(); } }
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.