`
十万为什么
  • 浏览: 76463 次
  • 性别: Icon_minigender_1
  • 来自: 大连
最近访客 更多访客>>
社区版块
存档分类
最新评论

6月9日

XML 
阅读更多
    今天计划是把昨天已签收公文的删除问题解决,还有完成发布信息其中的一个页面。
    8:00——12:00在研究已签收公文删除的问题,上午没有解决,因为遇到了一个问题,在数据绑定时字符串组合的问题。
    1:30——2:30解决了已签收公文删除的问题。
    2:30——3:30查询TitleWindow组件关闭按钮的实现,并把涉及到这个组件都实现了关闭功能。
    3:30——6:00做信息发布中的会议管理页面中的删除功能,遇到了问题,在选择datagrid中数据时需要用form表单提交
String[] infoid = infoManageForm.getInfoID().split(",");
String[] delstaffid = infoManageForm.getDelStaffID().split(",");
String[] notdelcount = infoManageForm.getNotDelCount().split(",");
String[] accPath = null;

 

<s:HTTPService id="delMeetingService"
  url="../../oa/InfoManage/ConferenceDel.do"
  result="delMeetingService_resultHandler(event)"
  fault="delMeetingService_faultHandler(event)"
  method="GET" resultFormat="e4x">
<s:request xmlns="">
<ConferenceChk>{meetingDataGrid.selectedItem.id}</ConferenceChk>
</s:request>

<mx:Form includeIn="State1" x="717" y="393" width="100%" height="100%">
 <mx:FormItem>
  <mx:DataGrid id="meetingDataGrid" width="100%"height="100%"         dataProvider="{papers}">
<mx:columns>
<mx:DataGridColumn headerText="编号" dataField="id" visible="false"/>
<mx:DataGridColumn headerText="主题" dataField="Title"/>
<mx:DataGridColumn headerText="日期" dataField="SendDate"/>
<mx:DataGridColumn headerText="发布者" width="200" dataField="SendPerson"/>
</mx:columns>
</mx:DataGrid>
</mx:FormItem>
</mx:Form>

怎样能够获取到这个meetingDataGrid中数据的id
分享到:
评论
1 楼 godlogin 2011-06-09  
检查InfoManageForm里的类变量名称和HTTPService 的request里提交的参数名是否一样。

相关推荐

Global site tag (gtag.js) - Google Analytics