|
[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/08/2009 at 11:43AM PDT, ID: 24306951 |
|
[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: 68: 69: 70: 71: 72: 73: 74: 75: |
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="ro.getData()" viewSourceURL="srcview/index.html" height="100%" borderStyle="none" width="100%">
<mx:RemoteObject id="ro" destination="ColdFusion" showBusyCursor="true" source="Media.components.Crud">
<mx:method name="getData" result="getDataResult(event)" />
<mx:method name="saveNewData" result="getDataResult(event)" />
<mx:method name="saveOldData" result="getDataResult(event)" />
<mx:method name="deleteData" result="getDataResult(event)" />
</mx:RemoteObject>
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
private var isNew:Boolean = true;
public function getDataResult(e:ResultEvent):void{
dg.dataProvider = e.result as ArrayCollection;
makeNew();
}
private function makeNew():void{
firstNameFld.text = "";
lastNameFld.text = "";
officePhoneFld.text = "";
isNew = true;
}
private function save():void{
if(isNew){
ro.saveNewData(firstNameFld.text,lastNameFld.text,officePhoneFld.text);
}else{
ro.saveOldData(firstNameFld.text,lastNameFld.text,officePhoneFld.text,dg.selectedItem.id);
}
}
private function deleteData():void{
if(dg.selectedIndex > -1 )ro.deleteData(dg.selectedItem.id);
}
]]>
</mx:Script>
<mx:Label text="View your data below." width="1148" height="25" color="#FFFFFF" fontSize="12" fontFamily="Verdana" fontWeight="bold" id="toptext"/>
<mx:Panel width="1148" height="784" layout="absolute">
<mx:DataGrid x="10" y="10" width="1108" height="316" id="dg" change="isNew = false">
</mx:DataGrid>
<mx:Panel x="10" y="409" width="1108" height="286" layout="absolute">
<mx:FormItem label="First Name" id="firstnameLbl" x="10" y="10">
<mx:TextInput id="firstNameFld" text="{dg.selectedItem.firstNameFld}"/>
</mx:FormItem>
<mx:FormItem label="Last Name" id="lastnameLbl" x="11" y="40">
<mx:TextInput id="lastNameFld" text="{dg.selectedItem.lastNameFld}"/>
</mx:FormItem>
<mx:FormItem label="Office Phone" id="officephoneLbl" x="10" y="70" width="266">
<mx:TextInput id="officePhoneFld" text="{dg.selectedItem.officePhoneFld}" width="176"/>
</mx:FormItem>
<mx:FormItem label="Market" id="marketLbl" x="10" y="100" width="266">
<mx:ComboBox>
<mx:ArrayCollection>
<mx:String>AK</mx:String>
<mx:String>AL</mx:String>
<mx:String>AR</mx:String>
</mx:ArrayCollection>
</mx:ComboBox>
</mx:FormItem>
</mx:Panel>
<mx:Button x="10" y="712" label="Save Record" click="save()"/>
<mx:Button x="1011" y="712" label="Delete Record" click="deleteData()"/>
<mx:Button x="115" y="712" label="Add New Record" click="makeNew()"/>
<mx:Label x="105" y="334" text="Click on the record which will populate the fields below. After making your changes, click Save Record." width="1013" height="25" color="#990000" fontSize="11" fontFamily="Verdana" fontWeight="normal" id="midtext"/>
<mx:Label x="10" y="334" text="Edit A Record:" width="97" height="25" color="#990000" fontSize="11" fontFamily="Verdana" fontWeight="bold" id="midtext0"/>
<mx:Label x="130" y="355" text="Click Add New Record to clear all fields. Enter new data, then click Save Record." width="988" height="25" color="#990000" fontSize="11" fontFamily="Verdana" fontWeight="normal" id="midtext1"/>
<mx:Label x="10" y="355" text="Add New Record:" width="123" height="25" color="#990000" fontSize="11" fontFamily="Verdana" fontWeight="bold" id="midtext2"/>
<mx:Label x="115" y="376" text="Click on the record above. Then click Delete Record." width="1003" height="25" color="#990000" fontSize="11" fontFamily="Verdana" fontWeight="normal" id="midtext3"/>
<mx:Label x="10" y="376" text="Delete Record:" width="112" height="25" color="#990000" fontSize="11" fontFamily="Verdana" fontWeight="bold" id="midtext4"/>
</mx:Panel>
</mx:Application>
|
Advertisement