Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flex internal MXML component links...

Status
Not open for further replies.

RosieGp

Programmer
Jun 23, 2009
83
0
0
US
I have text.mxml component. that is showing me the following:
<mx:DataGrid id="dgShowHistory" width="100%">
<mx:columns>
<mx:DataGridColumn headerText="ID"/>
<mx:DataGridColumn headerText="Case Number"/>
<mx:DataGridColumn headerText="Group Number"/>
<mx:DataGridColumn headerText="Case Name"/>
<mx:DataGridColumn headerText="Status"/>
</mx:columns>
</mx:DataGrid>

Now the in the Case Number column I want to add a link to SearchCaseNumber.mxml...
So lets say the Case Number has the following:
Case Number
1234
1235
1236
I want these to be highlighted as link and when I click on these It takes me to the SearchCaseNumber.mxml put the 1234 automatically in search and if possible populate all the fields based on this.

In SearchCaseNumber.mxml
<mx:TextInput id="CaseSearch" width="81"/>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top