今天计划是把昨天已签收公文的删除问题解决,还有完成发布信息其中的一个页面。
8:00——12:00在研究已签收公文删除的问题,上午没有解决,因为遇到了一个问题,在数据绑定时字符串组合的问题。
1:30——2:30解决了已签收公文删除的问题。
2:30——3:30查询TitleWindow组件关闭按钮的实现,并把涉及到这个组件都实现了关闭功能。
3:30——6:00做信息发布中的会议管理页面中的删除功能,遇到了问题,在选择datagrid中数据时需要用form表单提交
怎样能够获取到这个meetingDataGrid中数据的id
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