帮忙看看有什么错

问题描述

<fx:Script><![CDATA[importmx.collections.ArrayCollection;importmx.controls.Alert;importmx.controls.CheckBox;importmx.rpc.events.FaultEvent;importmx.rpc.events.ResultEvent;[Bindable]privatevaradministratorList:ArrayCollection=newArrayCollection();privatevarcheckbox:CheckBox;protectedfunctionshowDataGrid_resultHandler(event:ResultEvent):void{administratorList=showDataGrid.lastResult.administrators.administrator;}protectedfunctionshowDataGrid_faultHandler(event:FaultEvent):void{Alert.show(event.fault.toString());}publicfunctioncheckbox_clickHandler(event:Event):void{}publicfunctionselectedAllorNot(event:MouseEvent):void{checkbox=event.currentTargetasCheckBox;foreach(varitem:ObjectinadministratorList){item.selected=checkbox.selected;}}]]></fx:Script><fx:Declarations><s:HTTPServiceid="showDataGrid"url="administratorList/administrators.xml"result="showDataGrid_resultHandler(event)"fault="showDataGrid_faultHandler(event)"/><mx:DateFormatterid="dateFormatter"formatString="DD-MM-YY"/><!--将非可视元素(例如服务、值对象)放在此处--></fx:Declarations><s:Formx="0"y="-1"width="100%"height="100%"><s:FormHeadinglabel="后台管理系统"color="#645C5C"fontSize="30"fontStyle="italic"fontWeight="normal"lineThrough="false"textDecoration="none"/><s:Panelwidth="100%"height="550"contentBackgroundColor="#FFFFFF"fontSize="14"><s:TextInputx="10"y="10"width="146"height="27"/><s:Buttonx="10"y="11"height="26"label="首页"/><s:Buttonx="85"y="11"height="26"label="退出"/><s:TextInputx="10"y="45"width="145"text="管理员:"/><s:TextInputx="10"y="69"width="145"text="权限:"/><mx:HRulex="10"y="103"width="145"height="11"chromeColor="#100101"/><mx:Accordionx="10"y="122"width="200"height="248"><s:NavigatorContentwidth="100%"height="100%"maxHeight="1"label="管理员管理"fontSize="14"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="管理员账号管理"/><s:Labelheight="21"text="会员账号管理"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="新闻管理"fontSize="14"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="类别管理"/><s:Labelheight="21"text="新闻列表"/><s:Labelheight="21"text="新闻添加"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="酒店管理"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="酒店管理信息"/><s:Labelheight="21"text="酒店添加"/><s:Labelheight="21"text="地理位置管理"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="景区管理"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="景区信息管理"/><s:Labelheight="21"text="添加景区"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="旅游行程管理"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="旅游行程管理信息"/><s:Labelheight="21"text="旅游行程修改"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="行程订单"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="订单管理"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="包车信息"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="包车信息管理"/><s:Labelheight="21"text="信息修改"/><s:Labelheight="21"text="订单管理"/></s:NavigatorContent><s:NavigatorContentwidth="100%"height="100%"label="退出登录"><s:layout><s:VerticalLayoutpaddingLeft="5"paddingTop="5"/></s:layout><s:Labelheight="21"text="切换账号"/><s:Labelheight="21"text="退出登录"/></s:NavigatorContent></mx:Accordion><mx:VRulex="218"y="10"width="17"height="500"/><s:TextInputx="252"y="15"width="903"color="#827B7B"contentBackgroundColor="#E6D4D4"fontSize="18"text="后台管理员登陆账号管理"/><s:TextInputx="362"y="41"width="793"contentBackgroundColor="#E6D4D4"fontSize="18"/><s:TextInputx="252"y="41"width="113"contentBackgroundColor="#E6D4D4"fontSize="18"text="导航管理:"/><s:DataGridx="252"y="103"width="1046"height="244"fontStyle="italic"fontWeight="bold"requestedRowCount="4"textAlign="center"dataProvider="{administratorList}"><s:columns><s:ArrayCollection><mx:DataGridColumnwidth="200"editable="false"headerText="选择"><mx:headerRenderer><fx:Component><mx:CheckBoxlabel="选择"textAlign="center"click="outerDocument.selectedAllorNot(event)"/></fx:Component></mx:headerRenderer><mx:itemRenderer><fx:Component><mx:CheckBoxtextAlign="center"selected="@{data.selected}"click="outerDocument.checkbox_clickHandler(event)"></mx:CheckBox></fx:Component></mx:itemRenderer></mx:DataGridColumn><mx:DataGridColumnheaderText="管理员帐号"width="105"><mx:itemRenderer><fx:Component><mx:TextInputtext="{data.firstName}{data.lastName}"editable="{data.selected}"borderVisible="false"visible="false"/></fx:Component></mx:itemRenderer></mx:DataGridColumn><mx:DataGridColumnheaderText="密码"><mx:itemRenderer><fx:Component><mx:TextInputtext="{data.number}"editable="{!data.selected}"borderVisible="false"visible="false"/></fx:Component></mx:itemRenderer></mx:DataGridColumn></s:ArrayCollection></s:columns></s:DataGrid></s:Panel></s:Form><s:Buttonx="975"y="461"label="通过审核"/><s:Buttonx="1100"y="461"label="禁用"/><s:Buttonx="1214"y="461"label="删除选中"/></s:Application>

解决方案

解决方案二:
为什么运行时页面上什么也没有?

时间: 2024-11-02 08:58:57

帮忙看看有什么错的相关文章

php-各位大虾们,帮帮忙吧!不知道错在哪里?

问题描述 各位大虾们,帮帮忙吧!不知道错在哪里? addclass.php <?php class addclass{ public function add($x,$y){ return $x+$y; } } server.php <?php require "addclass.php"; $soap = new SoapServer('test.wsdl'); $soap->setClass("addclass"); $soap->han

android的界面设计总是出错,大神帮忙看看这种方法错在哪里

问题描述 android的界面设计总是出错,大神帮忙看看这种方法错在哪里 这是按键的代码 style="@style/ll_linear"> <Button style="@style/btn_operand" android:text="7" /> <Button style="@style/btn_operand" android:text="8" /> <Butto

zoj-ZOJ 3890 Wumpus帮忙看下哪里错大牛们

问题描述 ZOJ 3890 Wumpus帮忙看下哪里错大牛们 #include #include #include #include using namespace std; struct node { int x, y, dir, step, g; friend bool operator < (node a, node b) { return a.step<b.step; } }; int dd[][2]={0, 0, -1, 0, 0, 1, 1, 0, 0, -1};//左上右下 in

请各位帮帮忙Java项目报错求解

问题描述 如果在页面有自增列,提交时直接就报java.lang.IllegalArgumentException:argumenttypemismatch错不进入action中如果去掉那个自增列也就是不写那一列就报序列不存在但是可以进入action中用的ssh框架oracle中自增列类型为number生成实体类中的类型为java.math.BigDecimal不只是什么类型是不是oracle中的自增列设置的有问题不知道是什么原因请各位帮帮忙.主要是添加和修改时报错,查询和删除都正常.

帮忙看下报错是什么问题

问题描述 publicclassuser{privatestring_name;privatestring_name1;publicstringname{set{_name=value;}get{return_name;}}publicstringname1{set{_name1=value;}get{return_name1;}}}usera=newuser(){name="rr",name1="r"};这边报错编译错误说明:在编译向该请求提供服务所需资源的过程中

求高手帮忙看看Websphere报错日志,是什么原因造成的错误,谢谢!

问题描述 [13-8-2710:47:05:078GMT+08:00]00002684SystemErrRjp.ne.so_net.ga2.no_ji.jcom.JComException:createInstance()failedHRESULT=0x80080005L[13-8-2710:47:05:078GMT+08:00]00002684SystemErrRatjp.ne.so_net.ga2.no_ji.jcom.IDispatch.create(IDispatch.java:84)[

javascript-pager组件下一页无效,

问题描述 pager组件下一页无效, export="offset,currentPageNumber=pageNumber" scope="request" maxIndexPages="10" maxPageItems="${page.pageSize}"> /c:forEach pg:first [首页] /pg:first [上一页] /pg:prevpg:pages ${pageNumber} /c:when

emmet,如何擴展兩個類名

问题描述 emmet,如何擴展兩個類名 div.foo,按了tab鍵,會變成 現在我輸入 div.foo.bar,希望得到 結果卻不是 如何才能得到我想要的呢 相关文章 sublimetext-mac系统下sublime text2的emmet插件安装后没用 時間sql-求救!!!兩個時間的時間差計算方式 格式-分解二進制數字 n 成兩個數字 a(n), b(n) + 编辑器-Chrome及sublime Text3 中的Emmetstylelive插件无法关联 如何查看java一个类的大小 h

spring security 自定义加密方式,配置

问题描述 <authentication-manageralias="authenticationManager"><authentication-provideruser-service-ref="MyUserDetailService"><password-encoderref="myPasswordEncode"><salt-sourceuser-property="username&qu