Hey,I've been working on my flex app and I'm trying to resolve the following problem :I have 2 widgets, they both have one editor in them and whenever I open either one and open the 2nd one, then it crashed with the following error message :TypeError: Error #1034: Failure of the type constraint: conversion from com.esri.ags.components::TemplatePicker@c5550b1 to com.esri.ags.components.TemplatePicker impossible.I tried to use my own skin for both of my editors, one skin per editor ( I took the skin from the api and only renamed it). Same problem but the error message is different : TypeError: Error #1009: Cannot access a property or method of a null object reference.I also tried to catch the event when I get the error messages but it doesn't work either. I used : <esri:Editor id="editorFatalities"
geometryService="{myGeometryService}"
map="{map}"
featureLayers="{[incidentsPoints]}"
toolbarVisible="true"
skinClass="com.esri.solutions.flexviewer.themes.surete.AccidentsEditorSkin"
fault="editor_OnFault(event)"/>
I could have throw an alert and tell the user to shut the other widget..Any help would be really appreciated since I got no other ideas what to do with this.