<mx:DataGrid id="MyLecOneLineEvalDataGrid"
      name="한줄평데이터그리드"
      dataProvider=""
      sortableColumns="false">
   <mx:columns>
    <mx:DataGridColumn headerText="번호" dataField="row_num" width="50"/>
    <mx:DataGridColumn headerText="만족도" dataField="satisfaction" width="100"
           itemRenderer="school.view.components.subPage.samcourse.renderer.RendererStarScore"/>
    <mx:DataGridColumn headerText="한줄평" dataField="study_appraisal_article" width="450" textAlign="left"/>
    <mx:DataGridColumn headerText="작성자" dataField="member_name" width="90"/>
    <mx:DataGridColumn headerText="작성일" dataField="reg_date" width="90"/>
   </mx:columns>
  </mx:DataGrid>


위처럼 코딩하면.... run time에서 Error를 발생 합니다. 유의 바랍니다. -_-;

이유 : dataProvider가 존재 하는데.. (""으로 설정된 상태) dataField를 접근하여 문제가 발생 합니다.

해결안 : dataProvider를 임시적으로 없애거나, dataProvider를 알맞게 설정하면 되요... 후....

+ Recent posts