|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 04/18/2009 at 08:14AM PDT, ID: 24334306 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: |
/* This is the datagrid for loading the xml data */
<mx:DataGrid y="106.95" width="90%" editable="false" id="grdanalytics" height="85%" horizontalCenter="5" cachePolicy="off">
<mx:columns>
<mx:DataGridColumn dataField="posttype" width="5" headerText="">
<mx:itemRenderer>
<mx:Component>
<mx:Image source="{data.posttype}" height="5" width="5" maintainAspectRatio="true"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
<mx:DataGridColumn headerText="Title" dataField="title" width="45" wordWrap="true">
<mx:itemRenderer>
<mx:Component>
<mx:Text htmlText="{data.title}"/>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
<mx:DataGridColumn headerText="Discussion" dataField="discussion" width="17"/>
<mx:DataGridColumn headerText="Country" dataField="country" width="12"/>
<mx:DataGridColumn headerText="Date" dataField="rtDate" width="12"/>
</mx:columns>
</mx:DataGrid>
<mx:Grid y="64.95" width="90%" horizontalCenter="4">
<mx:GridRow width="100%" height="100%">
<mx:GridItem width="100%" height="100%">
<mx:ComboBox width="90%" id="lstcountry" labelField="label" dataProvider="{sercountry.lastResult.countires.ctnry}" change="handleCloseEventCountry(event);"></mx:ComboBox>
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
<mx:ComboBox id="pstType" width="90%" labelField="label" dataProvider="{serpostType.lastResult.posttypes.post}" change="handleCloseEventTone(event);"></mx:ComboBox>
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
<mx:ComboBox width="90%" id="lstdiscussion" dataProvider="{serDiscussion.lastResult.discussions.diss}" labelField="label" change="handleCloseEventDiscussion(event)"></mx:ComboBox>
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
<mx:ComboBox width="90%" labelField="label" id="lstpages" change="handleCloseEventPages(event);" dataProvider="{getPages.lastResult.pages.pgno}"></mx:ComboBox>
</mx:GridItem>
</mx:GridRow>
</mx:Grid>
<mx:Grid y="10" width="90%" height="46.95" horizontalCenter="4" verticalScrollPolicy="off" horizontalScrollPolicy="off">
<mx:GridRow width="100%" height="100%">
<mx:GridItem width="100%" height="100%" horizontalAlign="left">
<mx:ComboBox width="204" id="lstCompanies" labelField="name" dataProvider='{getCompanies.lastResult.companies.company}' change="HdlCompanies(event);"></mx:ComboBox>
<mx:Button label="Refresh" id="rfresh" click="refreshData()"/>
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
<mx:TextInput id="txtSearch"/>
<mx:Button label="Search" id="btnSearch" click="RTSearch()"/>
</mx:GridItem>
</mx:GridRow>
<mx:GridRow width="100%" height="100%">
<mx:GridItem width="100%" height="100%">
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
</mx:GridItem>
<mx:GridItem width="175" height="100%" horizontalAlign="left">
<mx:RadioButton label="Company" groupName="filterSearch" selected="true" id="rdCompany"/>
<mx:RadioButton label="All" groupName="filterSearch" id="rdAll"/>
</mx:GridItem>
</mx:GridRow>
</mx:Grid>
|
Advertisement