Home Web Front-end HTML Tutorial Flex real paging, one page supports multiple reuse_html/css_WEB-ITnose

Flex real paging, one page supports multiple reuse_html/css_WEB-ITnose

Jun 24, 2016 am 11:54 AM

<?xml version="1.0" encoding="utf-8"?><mx:HBox xmlns:fx="http://ns.adobe.com/mxml/2009" 		 xmlns:s="library://ns.adobe.com/flex/spark" 		 xmlns:mx="library://ns.adobe.com/flex/mx"		 creationComplete="initHandler(event)"		 width="100%" height="300" backgroundColor="0xffffff">	<fx:Script>		<![CDATA[			import mx.collections.ArrayCollection;			import mx.controls.Alert;			import mx.controls.DataGrid;			import mx.events.FlexEvent;			import mx.rpc.events.FaultEvent;			import mx.rpc.events.ResultEvent;			import mx.rpc.remoting.RemoteObject;						[Bindable]			//记录数			private var items:ArrayCollection;						[Bindable]			//分页参数			private var params:Array = new Array();						[Bindable]			//每页显示的条数			private var pageSizeBoxListData:ArrayCollection = new ArrayCollection([				{pageSize:10},				{pageSize:20},				{pageSize:30},				{pageSize:50},				{pageSize:100}			]);						[Bindable]			//每页显示的记录数			public var pageSize:int = 10;						[Bindable]			//当前页			public var curPage:int = 1;						[Bindable]			//下一页到多少记录数			public var offSet:int = 1;						[Bindable]			//总页数			public var totalPage:int = 0;						[Bindable]			//总记录数			public var totalCount:int = 263;						public var destination:String;						public var methodName:String;						[Bindable]			//组件宽度			public var widthTo:int;						[Bindable]			//服务请求地址			public var url:String;						[Bindable]			//datagrid			public var datagrid:DataGrid;						/**			 * 			 */			protected function progressBarClickHandler(event:MouseEvent):void			{				var bc:HBox = HBox(event.target);				widthTo = event.localX;				progressBarEffect.target = progressBarPagerBlue;				progressBarEffect.play();			}						/**			 * 			 */			private function getMinimum():int			{				if(totalCount < 1)				{					return 0;				}				else				{					return 1;				}			}						/**			 * 			 */			protected function pageFirstClickHandler(event:MouseEvent):void			{				curPage = getMinimum();				getBtnEnabled();				pagingRemoteObject();			}						/**			 * 上一页			 */			protected function pagePrevClickHandler(event:MouseEvent):void			{				var tempNum:int = getMinimum();				curPage = curPage - 1;				getBtnEnabled();				pagingRemoteObject();			}						/**			 * 跳转到指定页			 */			protected function pageStepperClickHandler(event:MouseEvent):void			{				curPage = pageStepper.value;			}						/**			 * 下一页			 */			protected function pageNextClickHandler(event:MouseEvent):void			{				if(curPage < totalPage)				{					curPage = curPage + 1;				}				getBtnEnabled();				pagingRemoteObject();			}						/**			 * 最后一页			 */			protected function pageLastClickHandler(event:MouseEvent):void			{				curPage = totalPage;				getBtnEnabled();				pagingRemoteObject();			}						/**			 * 刷新当前页			 */			protected function pageRefreshClickHandler(event:MouseEvent):void			{				totalPage = getTotalPageNum();				pagingRemoteObject();			}			/**			 * 初始化函数			 */			protected function initHandler(event:FlexEvent):void			{				totalPage = getTotalPageNum();			}						/**			 * 设置每页显示多少条记录			 */			protected function pageSizeComboboxChangeHandler(event:MouseEvent):void			{				var obj:Object = pageSizeCombobox.selectedItem;				pageSize = obj.pageSize;				trace(url,"",pageSize);			}						/**			 * 获取总页数			 */			private function getBtnEnabled():void			{				if(totalPage < 1)				{					pageFirstBtn.enabled = false;					pagePreBtn.enabled = false;					pageNextBtn.enabled = false;					pageLastBtn.enabled = false;					pageRefreshBtn.enabled = false;				}				else if(curPage == 1)				{					pageFirstBtn.enabled = false;					pagePreBtn.enabled = false;					pageNextBtn.enabled = true;					pageLastBtn.enabled = true;					pageRefreshBtn.enabled = true;				}				else if(curPage < totalPage && curPage > 1)				{					pageFirstBtn.enabled = true;					pagePreBtn.enabled = true;					pageNextBtn.enabled = true;					pageLastBtn.enabled = true;					pageRefreshBtn.enabled = true;				}				else if(curPage == totalPage)				{					pageFirstBtn.enabled = true;					pagePreBtn.enabled = true;					pageNextBtn.enabled = false;					pageLastBtn.enabled = false;					pageRefreshBtn.enabled = true;				}			}						/**			 * 服务请求成功的处理			 */			private function serviceSuccessResult(event:ResultEvent):void			{				totalCount = event.result.totalCounts;				items = event.result.entityList as ArrayCollection;				trace(url,"",items);			}						/**			 * 服务请求失败的处理			 */			private function httpServiceFault(event:FaultEvent):void			{				Alert.show(event.fault.message,"服务请求失败");			}						/**			 * 发送服务请求			 */			private function pagingRemoteObject():void			{				var remote:RemoteObject = new RemoteObject(destination);				offSet = (curPage - 1)*pageSize;				remote.getOperation(methodName).send(pageSize,offSet);				remote.addEventListener(ResultEvent.RESULT,serviceSuccessResult);				remote.addEventListener(FaultEvent.FAULT,httpServiceFault);			}						/**			 * 			 */			private function loadingDatagrid():void			{							}		]]>	</fx:Script>	<fx:Declarations>		<!-- 将非可视元素(例如服务、值对象)放在此处 -->	</fx:Declarations>		<mx:HBox width="30%" height="100%" verticalAlign="middle">		<mx:LinkButton styleName="pageFirstBtn" id="pageFirstBtn" enabled="false" 					   click="pageFirstClickHandler(event)"/>		<mx:LinkButton styleName="pagePreBtn" id="pagePreBtn" enabled="false" 					   click="pagePrevClickHandler(event)"/>		<mx:LinkButton styleName="pageNextBtn" id="pageNextBtn" enabled="false" 					   click="pageNextClickHandler(event)"/>		<mx:LinkButton styleName="pageLastBtn" id="pageLastBtn" enabled="false" 					   click="pageLastClickHandler(event)"/>	</mx:HBox>		<mx:HBox width="40%" height="100%" verticalAlign="middle">		<s:Label text="Page"/>		<s:NumericStepper id="pageStepper" width="78" click="pageStepperClickHandler(event)"						  maximum="{totalPage}" minimum="{getMinimum()}" value="{curPage}"/>		<s:Label text="of"/>		<s:Label id="totalPageLab" text="{totalPage}"/>	</mx:HBox>		<mx:HBox verticalAlign="middle">		<s:ComboBox dataProvider="{pageSizeBoxListData}" selectedIndex="1" width="60" labelField="pageSize"					id="pageSizeComboBox" change="pageSizeComboboxChangeHandler(event)"/>		<s:Label text="共{totalCount}条 记录"/>	</mx:HBox>		<mx:LinkButton styleName="pageRefreshBtn" id="pageRefreshBtn" click="pageRefreshClickHandler(event)"/>		</mx:HBox>    <s:BorderContainer x="0" y="0" width="40%" height="20" borderColor="0x336699" textAlign="center" visible="false">		<s:Group id="hgimg" x="0" y="0" width="100%" height="100%" clipAndEnableScrolling="true">			<mx:HBox width="60%" height="18" styleName="progressBarPageBlue" id="progressBarPageBlue">							</mx:HBox>			<mx:HBox width="96%" height="100%" paddingLeft="3" x="2" horizontalAlign="center" verticalAlign="middle">				<s:Label text="Displaying "/>				<s:Label text="{pageSize*curPage - 1 - pageSize}" id="pageStartLab"/>				<s:Label text="-"/>				<s:Label text="{pageSize*curPage - 1}" id="pageSizeLab"/>				<s:Label text="of"/>				<s:Label text="{totalCount}" id="allRecordsLab"/>			</mx:HBox>			<mx:HBox width="100%" height="100%" click="progressBarClickHandler(event)" verticalAlign="middle">							</mx:HBox>		</s:Group>	</s:BorderContainer></mx:HBox>
Copy after login


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update? Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages? How to efficiently add stroke effects to PNG images on web pages? Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles