I'm brand new to using Flashbuilder. I created a project with 3 tabs. In one of the tabs I dragged a DataGroup control. In services I pointed it to an xml file that looks like this:
<?xml version="1.0" encoding="utf-8"?>
<JOBS>
<JOB s_name="Job1" s_address="283 West Ave, Houston, TX 73401"></JOB>
<JOB s_name="Job2" s_address="544 East Ave, Houston, TX 73402"></JOB>
<JOB s_name="Job3" s_address="199 North Ave, Houston, TX 73403"></JOB>
</JOBS>
I got the binding right, I think:
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:jobs="services.jobs.*"
title="Jobs">
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;
protected function dgJobs_creationCompleteHandler(event:FlexEvent):void
{
getDataResult.token = jobs.getData();
getDataResult2.token = jobs.getData();
}
]]>
</fx:Script>
<fx:Declarations>
<s:CallResponder id="getDataResult"/>
<jobs:Jobs id="jobs"/>
<s:CallResponder id="getDataResult2"/>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:DataGroup id="dgJobs" x="40" y="42" width="200" height="200"
creationComplete="dgJobs_creationCompleteHandler(event)"
dataProvider="{getDataResult2.lastResult}"/>
</s:View>
but when I try to run it, I get these errors:
Error: Could not create an item renderer for [object JOB_type].
at spark.components::DataGroup/throwCreateRendererFailedError()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:927]
at spark.components::DataGroup/createRendererForItem()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:991]
at spark.components::DataGroup/http://www.adobe.com/2006/flex/mx/internal::itemAdded()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:1698]
at spark.components::DataGroup/createItemRenderers()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:1057]
at spark.components::DataGroup/commitProperties()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:1086]
at mx.core::UIComponent/validateProperties()[E:\dev\4.y\frameworks\projects\framework\src\mx\core\UIComponent.as:8219]
at mx.managers::LayoutManager/validateProperties()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\LayoutManager.as:597]
at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\LayoutManager.as:813]
at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\LayoutManager.as:1180]
Help?