If you have any possible with in the itemrender have one is label control and onther one is datagrid

Hi Friends,
                If you have any possible with in the itemrender have one is label control and onther one is data grid control.
In my application i was using list control.The list control have item renderer. In my case if i click list control of label name, the corresponding releated data of data grid need to display and list control label also.
<mx:List width="750" id="Lst_userlist" verticalScrollPolicy="off"  horizontalScrollPolicy="off" rowCount="20"
labelField="sec_user_first_name+sec_user_last_name" labelFunction="BindUserName" buttonMode="true" itemClick="Click_UserList(event)" >
<mx:itemRenderer>
  <fx:Component>
   <mx:VBox  horizontalScrollPolicy="off" verticalScrollPolicy="off" >        
     <s:Label id="lbl_userhead" name="{data.sec_user_first_name+data.sec_user_last_name}" buttonMode="true" color="#000000"/>
          <mx:DataGrid height="100%" id="membershipGrid" alternatingItemColors="[#DCDCDC,#F8F8FF]"  paddingLeft="5"  horizontalScrollPolicy="off" color="black"
      horizontalGridLines="false" verticalScrollPolicy="auto"  verticalGridLines="false"   rowCount="{membershipArrColl.length}" rowHeight="25"
            borderSkin="{null}" showHeaders="true" borderVisible="false" dataProvider="{membershipArrColl}" width="750"  visible="false" includeInLayout="false">
<mx:columns>
  <mx:DataGridColumn width="180" headerText="Name" minWidth="150" sortable="true"  wordWrap="true" >
   <mx:itemRenderer>
    <fx:Component>
     <mx:HBox horizontalScrollPolicy="off"   >
      <fx:Script>
       <![CDATA[
       override public function set data(value:Object):void{
       super.data = value;
       if(data.home_sec_organization_id==data.sec_organization_id)
        fileimg.load("/ist_shared/ist_images/ist_icons/Modern/gif/16/hot/user _favorites_16_hot.gif");
       else
        fileimg.load("/ist_shared/ist_images/ist_icons/Modern/gif/16/dis/user _remove_16_dis.gif");
       lbl_Gridcloumn_name.text=data.sec_user_first_name+" "+data.sec_user_last_name;
       ]]>
      </fx:Script>
      <mx:Image id="fileimg"    buttonMode="true"  toolTip="This is the User's Home Organization"/>          
      <s:Label  id="lbl_Gridcloumn_name"  width="200" buttonMode="true" textDecoration="underline" toolTip="User Menu [{data.sec_user_name}]" click="outerDocument.Click_Name(event);"    />
     </mx:HBox>
    </fx:Component>
   </mx:itemRenderer>
  </mx:DataGridColumn>
  <mx:DataGridColumn width="120" minWidth="110" headerText="UserName" sortable="true"  dataField="sec_user_name"  />
  <mx:DataGridColumn width="100" minWidth="80"  headerText="OrgName"  dataField="sec_org_name">
</mx:columns>
</mx:DataGrid>
   </mx:VBox>
  </fx:Component>
</mx:itemRenderer>
</mx:List>
Please Any One Help to me...
Thanks,
Magesh R.

Hi Friend,
The list values are display Even if i click perticular data list value ,the corresponind data grid are display in blow line data list...
can u see below sample.
Blue colotr items are List values
Green Color items are Data Grid values... If click Blue color name then only correspond data grid items are display...
Canvass360 01
Canvass360 01
canvass360-01
HR Demo
System Wide Auth Admin UT
Canvass360 01
canvass360-01
HR Demo
System Wide DocStor Admin UT
Andrew Addison
Andrew Addison
AAddison
HR Demo
System Wide Auth Admin UT
Andrew Addison
AAddison
HR Demo
System Wide DocStor Admin UT
System Admin
System Admin
Admin
HR Demo
MyOrg Administrator UT
System Admin
Admin
HR Demo
Regional Manager UT
System Admin
Admin
HR Demo
Site Manager UT
System Admin
Admin
HR Demo
System Wide Auth Admin UT
System Admin
Admin
HR Demo
System Wide DocStor Admin UT
Ben Affleck
Ben Affleck
Ben
HR Demo
Site Manager UT
Jennifer Aniston
Jennifer Aniston
JenniferA
HR Demo
Site Manager UT
Christian Bale
Christian Bale
Christian Bale
HR Demo
Site Manager UT
Brad Burgess
Brad Burgess
BBurgess
HR Demo
System Wide DocStor Admin UT
Sean Connery
Sean Connery
SConnery
HR Demo
Site Manager UT
Harrison Ford
Harrison Ford
HFord
HR Demo
Regional Manager UT
Megan Fox
Megan Fox
MFox
HR Demo
Regional Manager UT
Chuck Gamble
Chuck Gamble
CGamble
HR Demo
MyOrg Administrator UT
Chuck Gamble
CGamble
HR Demo
Regional Manager UT
Chuck Gamble
CGamble
HR Demo
Site Manager UT
Chuck Gamble
CGamble
HR Demo
System Wide Auth Admin UT
Chuck Gamble
CGamble
HR Demo
System Wide DocStor Admin UT
Chuck Gamble
CGamble
HR Demo
OnBoarding UT
Please Any One Help to me.
Thanks,
Magesh R.
Amiee Mann
AMann
HR Demo
Regional Manager UT
Jennifer Smith
JenniferSmith
HR Demo
Site Manager UT
Reese Witherspoon
Reese
HR Demo
Site Manager UT

Similar Messages

  • If you have any possible with in the itemrender have one is label control and onther one is data gri

    Hi Friends,
                    If you have any possible with in the itemrender have one is label control and onther one is data grid control.
    In my application i was using list control.The list control have item renderer. In my case if i click list control of label name, the corresponding releated data of data grid need to display and list control label also.
    <mx:List width="750" id="Lst_userlist" verticalScrollPolicy="off"  horizontalScrollPolicy="off" rowCount="20"
    labelField="sec_user_first_name+sec_user_last_name" labelFunction="BindUserName" buttonMode="true" itemClick="Click_UserList(event)" >
    <mx:itemRenderer>
      <fx:Component>
       <mx:VBox  horizontalScrollPolicy="off" verticalScrollPolicy="off" >        
         <s:Label id="lbl_userhead" name="{data.sec_user_first_name+data.sec_user_last_name}" buttonMode="true" color="#000000"/>
              <mx:DataGrid height="100%" id="membershipGrid" alternatingItemColors="[#DCDCDC,#F8F8FF]"  paddingLeft="5"  horizontalScrollPolicy="off" color="black"
          horizontalGridLines="false" verticalScrollPolicy="auto"  verticalGridLines="false"   rowCount="{membershipArrColl.length}" rowHeight="25"
                borderSkin="{null}" showHeaders="true" borderVisible="false" dataProvider="{membershipArrColl}" width="750"  visible="false" includeInLayout="false">
    <mx:columns>
      <mx:DataGridColumn width="180" headerText="Name" minWidth="150" sortable="true"  wordWrap="true" >
       <mx:itemRenderer>
        <fx:Component>
         <mx:HBox horizontalScrollPolicy="off"   >
          <fx:Script>
           <![CDATA[
           override public function set data(value:Object):void{
           super.data = value;
           if(data.home_sec_organization_id==data.sec_organization_id)
            fileimg.load("/ist_shared/ist_images/ist_icons/Modern/gif/16/hot/user_favorites_16_hot.gi f");
           else
            fileimg.load("/ist_shared/ist_images/ist_icons/Modern/gif/16/dis/user_remove_16_dis.gif") ;
           lbl_Gridcloumn_name.text=data.sec_user_first_name+" "+data.sec_user_last_name;
           ]]>
          </fx:Script>
          <mx:Image id="fileimg"    buttonMode="true"  toolTip="This is the User's Home Organization"/>          
          <s:Label  id="lbl_Gridcloumn_name"  width="200" buttonMode="true" textDecoration="underline" toolTip="User Menu [{data.sec_user_name}]" click="outerDocument.Click_Name(event);"    />
         </mx:HBox>
        </fx:Component>
       </mx:itemRenderer>
      </mx:DataGridColumn>
      <mx:DataGridColumn width="120" minWidth="110" headerText="UserName" sortable="true"  dataField="sec_user_name"  />
      <mx:DataGridColumn width="100" minWidth="80"  headerText="OrgName"  dataField="sec_org_name">
    </mx:columns>
    </mx:DataGrid>
       </mx:VBox>
      </fx:Component>
    </mx:itemRenderer>
    </mx:List>
    Please Any One Help to me...
    Thanks,
    Magesh R.

    Hi Friend,
    The list values are display Even if i click perticular data list value ,the corresponind data grid are display in blow line data list...
    can u see below sample.
    Blue colotr items are List values
    Green Color items are Data Grid values... If click Blue color name then only correspond data grid items are display...
    Canvass360 01
    Canvass360 01
    canvass360-01
    HR Demo
    System Wide Auth Admin UT
    Canvass360 01
    canvass360-01
    HR Demo
    System Wide DocStor Admin UT
    Andrew Addison
    Andrew Addison
    AAddison
    HR Demo
    System Wide Auth Admin UT
    Andrew Addison
    AAddison
    HR Demo
    System Wide DocStor Admin UT
    System Admin
    System Admin
    Admin
    HR Demo
    MyOrg Administrator UT
    System Admin
    Admin
    HR Demo
    Regional Manager UT
    System Admin
    Admin
    HR Demo
    Site Manager UT
    System Admin
    Admin
    HR Demo
    System Wide Auth Admin UT
    System Admin
    Admin
    HR Demo
    System Wide DocStor Admin UT
    Ben Affleck
    Ben Affleck
    Ben
    HR Demo
    Site Manager UT
    Jennifer Aniston
    Jennifer Aniston
    JenniferA
    HR Demo
    Site Manager UT
    Christian Bale
    Christian Bale
    Christian Bale
    HR Demo
    Site Manager UT
    Brad Burgess
    Brad Burgess
    BBurgess
    HR Demo
    System Wide DocStor Admin UT
    Sean Connery
    Sean Connery
    SConnery
    HR Demo
    Site Manager UT
    Harrison Ford
    Harrison Ford
    HFord
    HR Demo
    Regional Manager UT
    Megan Fox
    Megan Fox
    MFox
    HR Demo
    Regional Manager UT
    Chuck Gamble
    Chuck Gamble
    CGamble
    HR Demo
    MyOrg Administrator UT
    Chuck Gamble
    CGamble
    HR Demo
    Regional Manager UT
    Chuck Gamble
    CGamble
    HR Demo
    Site Manager UT
    Chuck Gamble
    CGamble
    HR Demo
    System Wide Auth Admin UT
    Chuck Gamble
    CGamble
    HR Demo
    System Wide DocStor Admin UT
    Chuck Gamble
    CGamble
    HR Demo
    OnBoarding UT
    Please Any One Help to me.
    Thanks,
    Magesh R.
    Amiee Mann
    AMann
    HR Demo
    Regional Manager UT
    Jennifer Smith
    JenniferSmith
    HR Demo
    Site Manager UT
    Reese Witherspoon
    Reese
    HR Demo
    Site Manager UT

  • I upgraded my new iPad (iPad 3) to IOS 6 and everything went well except Siri won't launch apps. When asked say "launch Facebook" Siri responds with "it doesn't look like you have an app named Facebook" and I get the same results when trying to launch any

    I upgraded my new iPad (iPad 3) to IOS 6 and everything went well except Siri won’t launch apps. When asked say “launch Facebook” Siri responds with “it doesn’t look like you have an app named Facebook” and I get the same results when trying to launch any app. Siri works for everything else it just won’t launch apps. Any ideas? Thanks.

    I have this same problem... Seems like nobody else does. Siri won't launch any apps for me, including native apps.

  • HT1414 i have bought my Iphone 4s from USA and right now i am in India. How can i repair my phone in INDIA. when i contacted the image store they said, they will not repair it. friends can you suggest any possible solution

    i have bought my Iphone 4s from USA and right now i am in India. How can i repair my phone in INDIA. when i contacted the image store they said, they will not repair it. friends can you suggest any possible solution

    Because an iPhone warranty is only good in the country of purchase. You will have to take it back to the USA or send it to someone there to have them take it to an Apple store.

  • Sir you have replied for my question, and i updated my software and all those things, yet it is showing unable to connect network, but i can use internet by sim, is it the problem related with hardware? can you tell me a solution for it?

    sir you have replied for my question, and i updated my software and all those things, yet it is showing unable to connect network, but i can use internet by sim, is it the problem related with hardware? can you tell me a solution for it?

    you seem to be referring to an ongoing issue
    click here to respsond -> sir help me to enable my network connection, my iphone 4s is not connecting with any wireless connection, what i should do for enabling network connection?
    CCC

  • I'm looking into how apps use the cloud. Would you consider any app with social media access as uploading information to the cloud? e.g. being able to tweet through an app is the same as uploading data to the cloud

    I'm looking into how apps use the cloud. Would you consider any app with social media access as uploading information to the cloud? e.g. being able to tweet through an app is the same as uploading data to the cloud

    Most of us in this forum are users who volunteer on technical issues, and not Adobe employees although they do drop in from time to time. As users we simply have no control over activation and that's why you are not getting responses.
    If you havn't done so,you might try the Muse forums and see if you can get a staff member to look into it. Have your case numbers and phone transcripts handy.
    Last option is to keep calling customer service until you get someone who will help or ask for a supervisor.
    Hope this get resolved,
    Gene

  • I've lost half of my icons such as calculator, fonts, chess, automator,ichat,ical it it saying that you can use this version with the OSX.  You have version 4.04. And, there is no way to update them.  What do you do?

    I've lost half of my icons such as calculator, fonts, chess, automator,ichat,ical it it saying that you can use this version with the OSX.  You have version 4.04. And, there is no way to update them.  What do you do?

    If I'm understanding you correctly, those apps have stopped working and you are getting a message saying that they won't work with this version of Mac OS X when you try to open them. Is that right? If so, have you moved those apps out of their original locations? That is a bad idea, as it prevents them from being properly updated. If this is what has happened, what version of the system were you running before they stopped working, and what version are you running now, after installing the update that has made them stop working?

  • Is there any possible to display the text in big font in screen painter

    HI all!
    i want to display the text in the large size in the text field in the screen painter in the odule pool programing.Is there any possible.What i have to do in the screen painter to display the text in the large size.Also is there any possible to put the color for the text.Give me reply

    HI
    CALL METHOD o_dyndoc_id->initialize_document
          EXPORTING
            background_color = cl_dd_area=>col_tree_level1.
        DATA : dl_text(255) TYPE c.  "Text
        CALL METHOD o_dyndoc_id->add_text
          EXPORTING
            text         = 'Flight Details'
            sap_style    = cl_dd_area=>heading
            sap_fontsize = cl_dd_area=>large
            sap_color    = cl_dd_area=>list_heading_int.
    * Display document
        CALL METHOD o_dyndoc_id->display_document
          EXPORTING
            reuse_control      = 'X'
            parent             = cont
          EXCEPTIONS
            html_display_error = 1.
        IF sy-subrc NE 0.
        ENDIF.
    by using these methods you can achieve i hope..
    have a good day.
    regards
    sarves

  • Any possibility to generate the bill first than Delivery & Picking?

    Hi SD GURUS & EXPERTS,
    We know that standard procedure of SAP SD is Sales Order --> Outbound Delivery -> Picking --> Billing. It means delivery & Picking is carried out before billing, and as we pick the material stock deducted from the inventory.
    But in my scenario, Customer has a grace period of 7-15 days to get the delivery. It means Customer deposit the money at office than Billing should be generate (from Office). This bill sent to the ware house and ware house deliver the material against this Bill.
    If we carried out standard procedure than there will be difference in Physical as well as System stock.
    So, is there any possibility to generate the bill first than Delivery & Picking.
    Thanks in advance.
    Devendra Singh Chauhan

    we do not maintain the Customer Master
    Not necessary.  For this purpose only, SAP has given an Account Group "One Time Customer" which you can make use of this.
    With the same customer code, you can change the address as and when your client got a sale order from such customers.
    With this customer code, you can create sale order, delivery, billing.  In fact, you should be aware, SAP will allow you to generate proforma against a delivery that is not PGId.  If at all you dont want to do PGI, you can make use of this option.
    Needless to say, the system (billing and then delivery) what you had indicated is definitely not recommended.
    thanks
    G. Lakshmipathi

  • Trying to open old iPhoto library on osx 10.9.5 with iPhoto 9.5.1.  iPhoto says I must upgrade but upgrade eventually hangs.  Tried to rebuild/repair database but it always says you have to upgrade database first and eventually hangs

    Trying to open old iPhoto library on osx 10.9.5 with iPhoto 9.5.1.  iPhoto says I must upgrade but upgrade eventually hangs.  Tried to rebuild/repair database but it always says you have to upgrade database first and eventually hangs

    What version was the old library made with?
    What is the exact message? when it hangs does it crash or do you have to force quit?
    LN

  • My wife and I each have an apple ID and share one macbook pro. Is it possible to use the iCloud on our shared macbook pro and our two separate iPhone 5's and not get each others information confused?

    My wife and I each have an apple ID and share one macbook pro. Is it possible to use the iCloud on our shared macbook pro and our two separate iPhone 5's and not get each others information confused?

    Once you setup your wife's account you can enable fast user switching to make it easy to switch accounts:
    OT

  • When i try to update it shows, "the path blah blah blah cannot be found. verify you have access to this location and try again, or try to find the reinstall package "itunes.msi"...?

    "The path cannot be found. Verify that you have access to this location and try again, or try to find the installation package "itunes.msi" in a folder from which you can install the product itunes." this is all I see whe i tried to update or uninstall itunes. Why?

    A search of the forums or google would reveal many other threads with the same issue, troubleshooting steps, and resolutions.
    Try helping yourself before asking others to help you.

  • Hello i would like to know if you have apple shop in birmigham and i want to tell me the cost of iphone 4s because here in your shop i found it 199$ and it is too cheap

    hello i would like to know if you have apple shop in birmigham and i want to tell me the cost of iphone 4s because here in your shop i found it 199$ and it is too cheap

    We're not Apple here, just your fellow users. And you can look this all up yourself:
    http://store.apple.com/uk
    http://www.apple.com/uk/retail/
    A price of $199 would be in the US and would be subsidized by the cell carrier, requiring a two-year contract with them.
    Regards.

  • TS2446 Hello I have a customer Close iPhone 5S any cloud symbol purchased the device from one of my colleagues and the activation message please help me

    Hello I have a customer Close iPhone 5S any cloud symbol purchased the device from one of my colleagues and the activation message please help me
    <Personal Information Edited by Host>

    It's a bad idea to post your IMEI number and I've asked the Hosts to remove it.
    If the previous owner of the phone has set the Activation Lock in iCloud, only he can unlock it either by giving you the ID and password, or by removing it from his list of devices - details here:
    http://support.apple.com/kb/TS4515
    Without his unlocking it for you, you cannot use the phone.

  • TS3297 Error message: 'Cant connect to the itunes store. An unknown error occured (-3212) please check you have an active internet connection and try again'. Help !

    Can someone help me please ? I was using itunes (downloading albums etc) just half an hour ago. I had a pop up asking me if i'd like to download the latest version of itunes, which i accepted. When the update had finshed downloading, i then restarted my computer, as i usually would. Tried to re access the itunes store, and received the following error message: 'Cant connect to the itunes store. An unknown error occurred (-3212) please check you have an active internet connection and try again.
    Needless to say, i have an active internet connection and cant see any reason why this would be happening, it has never happened before ?
    Any help would be appreciated.

    Do you have PeerBlock installed/    >  TS3297 Error message: 'Cant connect to the itunes store.

Maybe you are looking for

  • IPad and iTunes on computer have same iTunes account but no Sync

    iTunes thinks that my iPad and computer are using different iTunes accounts when they are the same. I have double checked in Setting->Itunes Store on iPad. When I try and sync any content iTunes says it will erase all content on the iPad and reload f

  • "Battery serial does not validate", but the number is within the range

    My sister came home from abroad for Christmas, and I checked her PB 12-inch battery serial number. Her battery has the serial number ZZ3480FJPVEA as far as I can see. This falls into the replacement range: 12-inch iBook G4 A1061 ZZ338 - ZZ427. On the

  • Media encoder  cs6 dont work at all

    i have download adobe cs6 master  collection in trial mode.but i cant run media encoder.i ve tried to open program with right clik or with administrator privilege but still dont run .any help please?i have win 7 ultimate x64.all other programs works

  • .SessionExpiredLongJumpException ERROR

    HI , I am getting an error in my application which is in Wdebdynpro :- The log file   com.sap.tc.webdynpro.clientserver.session.SessionExpiredLongJumpException: Application session has expired: No application session with ID P5wBMO*PTgtlsfX3ChjNzAK9o

  • How to delete the SAP HR jobs in bulk

    Hi, I have created the jobs but now I want to delete them. Please let me know the following: How to delete the SAP HR jobs in bulk? Is there any programs/tcode to delete the jobs in bulk apart from LSMW? Thanks & Regards Manish