Changing Row color when ever I select perticular row

Hello,
After applying themes which property do i need to to change so that the color of the row will change from from dark yellow to some light color when ever i select that perticular record
in table UI Element.
Thanks & Regards
   Kiran

Hi Kiran,
      After setting the theme, you will have to change the following property in theme editor.
Complex Elements -> Tables -> Selected Cells.
a) Background Color of Primary Selection
b) Background Color of Secondary Selection
    I hope this helps.
Regards,
Uday.

Similar Messages

  • Changing row color when ever will select that row.

    Hello,
    After applying themes which property do i need to to change so that the color of the row will change from from dark yellow to some light color when ever i select that perticular record
    in table UI Element.
    Thanks & Regards
       Kiran

    Hello Kiran,
    In theme editor go to Complex Elements -> Tables -> Side Heading Selected Cells -> Background color of Primary selection.
    Hope this helps.
    Cheers-
    Pramod
    award points if helpful.

  • [AS, CS2 / CS3] Get Fill Color When Nothing is Selected (defaults? preferences?)

    Hi,
    where can I find the active color, which is active (border and fill color), when nothing is selected.
    E.g. I can get the active styles, when nothing is selected with:
    applied character style of text defaults
    and
    applied paragraph style of text defaults.
    Where nac I find the equivalent for fill and border color?
    Thanks
    Tobias

    Thanks, that was for CS3. Where can I get that in CS2?
    I searched the dictionary of document and application, but got no glue ...
    Thanks
    Tobias

  • How can I disable the change of color when changing background in ios7?

    how can I disable the change of color when changing background in ios7?

    For txt messages you can change the option of whether previews are shown (Settings >> Messages >> Show Preview Toggle). Switching this "Off" will still show a notification of a missed txt message, but it will not show text from the message itself.
    Unfortunately, similar functionality does not currently exist for phone calls; however, the new iOS release (scheduled for September, I think rumor has it) will revamp the way notifications are handled, and there maybe an elegant solution for you then.

  • How do i change a color when doing color overlay?

    I finally figured how to apply the color overlay and the first picture I did my son was wearing a coral shirt so I made the pic a B/W photo and wanted his shirt to pop with the color it was.  So it actually worked but then I wanted to do another photo with the same idea but everything is this coral color I thought it new to make the shir that color since that is what it was.  I thought that when I go to use the brusg it would pull the color of that item instead everything is coral.  I didn't set it to that color and I can't figure out to change it.
    Please help me.  I paid a lot of money for this software and I haven't been able to do what I want.

    Agree with Kirby, as always.
    And I believe that the OP has changed the brushes to color overlay thinking that you need this change to erase the black and white.
    Simply apply the B/W adjustment, click on the gear in the B/W brick and choose "brush black and white away." You do not have to change the brush to color overlay. That is there just to help you see where you've applied brush strokes.
    Change from color overlay back to none.
    Let us know how that works for you.
    Also have a look at this section of the manual.

  • Change UI configuration dynamically when ever user selects a new value in a drop down field in WebUI

    I enhanced the standard activity component (i.e BT126S_APPT ). In this component, in BT126S_APPT/ApptSQ view there is a field 'PROCESS_TYPE' which is a dropdown. I have created a server event for this dropdown. So that whenever user selects a value in that dropdown, a event is called and after that DO_CONFIG_DETERMINATION is called. In DO_CONFIG_DETERMINATION, I am checking the value of 'PROCESS_TYPE' and based on that i am setting different config keys, by calling SET_CONFIG_KEYS( ). But the configuration is not changing in WebUI. When I press F2 in WebUI its showing the config keys( searched for ) as I set, but the found config keys are same as before. I have created the configuration with the new configuration keys. Please help, I am new to crm.

    Hello Shakthi,
    The easier option would be to convert the DropDownByKey to DropDownByIndex. If you still want to proceed with DropDownByKey then you need to initialise the ALV data again.  do the following
    1. after changing the attribute-value_set, call the ALV interface controller method SET_DATA and pass the instance of the context node.
    2. reintiliase all the ALV settings like edit mode, converting the column editor to DropDownByKey etc....
    This will ensure the new attribute value set is reflected in the ALV component.
    BR, Saravanan

  • My iMessage is showing my email instead of my number and when I go in to change it and when I try selecting my number it won't let me only my email is a choice some please helpp

    Help my iMessage isn't working because my email is only showing as my thing to where people can contact me instead of my number. I'm new to the whole iphone team and I really need help. I tried the whole going into settings and selected my phone number but it won't let me and I need to verify my phone number as a place where people can reach me and I have no idea how so can anyone please help me?

    When registering an iPhone with iMessage and FaceTime, the phone number is registered automatically along with your Apple ID email address.
    Settings > Messages > Send & Receive.
    What is available below the you can be reached by IMessage at and the start new conversations from sections?

  • How to get notified when ever I select any frame (any page item) ?

    I have added a observer class in my plugin which derives from ActiveSelectionObserver.
    But my observer constructor is not getting called when i select a page item. (In short, I am not getting notified about the selection)
    below is my code:
    class CSDTSelectionObserverImpl : public ActiveSelectionObserver
    public:
      CSDTSelectionObserverImpl(IPMUnknown *boss);
       virtual ~CSDTSelectionObserverImpl();
    protected:
       virtual void    HandleSelectionChanged (const ISelectionMessage*);
       virtual void HandleSelectionAttributeChanged(const ISelectionMessage* selectionMessage);
    CREATE_PMINTERFACE(CSDTSelectionObserverImpl, kCSDTSelectionObserverImpl)
    CSDTSelectionObserverImpl::CSDTSelectionObserverImpl(IPMUnknown *boss) : ActiveSelectionObserver(boss,IID_ICSDTSELECTIONOBSERVER) { }
    CSDTSelectionObserverImpl::~CSDTSelectionObserverImpl() { }
    void CSDTSelectionObserverImpl::HandleSelectionChanged(const ISelectionMessage* selectionMessage) { }
    void CSDTSelectionObserverImpl::HandleSelectionAttributeChanged(const ISelectionMessage* selectionMessage) {  
    if (selectionMessage && selectionMessage->WasSuiteAffected(IID_ILAYOUTSELECTION_ISUITE))
    Also, In my .fr file, I have added below:
    AddIn
      kDocBoss,
      kInvalidClass,
        IID_ICSDTSELECTIONOBSERVER, kCSDTSelectionObserverImpl,
    Do I need to implement the ILayoutSelectionSuite as well to get the notification on page item selection or implementing Observer via ActiveSelectionObserver is sufficient?
    Please help.

    I tried below in debug mode , but it gave me error while execution (when the line of code was called by in-design)
    InterfacePtr<ILayoutSelectionSuite> iLayoutSelectionSuite(fCurrentSelection, UseDefaultIID());
            if (iLayoutSelectionSuite == nil)
                break;
    iLayoutSelectionSuite->SelectPageItems(selection,Selection::kReplace,Selection::kDontScrollLayoutSelection); // Error
    So I was not able to get the UIDList of the selected page items, hence I used below code and this is working.
      InterfacePtr<const IIntegratorTarget> iIntegratorTarget(iLayoutSelectionSuite, UseDefaultIID());
            std::auto_ptr<IIntegratorTarget::TargetSuiteCollection> selectionSuites(iIntegratorTarget->GetTarget(ILayoutTarget::kDefaultIID));
            for(IIntegratorTarget::TargetSuiteCollection::size_type i = 0; i < selectionSuites->size(); i++)
                ILayoutTarget* target = (ILayoutTarget*)selectionSuites->at(i).get();
                if(!target)
                    continue;
                selection = target->GetUIDList(kDontStripStandoffs);
    But it would have been much easier and logical if I can get it using IlayoutSelectionSuite or if there is some better approach ?
    Please let me know.
    ileleLayoutSelectio
    Let me

  • Change in color when exporting to dvd. Please help

    I have some AVCHD footage that looks great when exported to quicktime. But when burning to DVD with iDVD all colors are "stronger", especially red. (Skincolor get way too much red).
    This appears both when playing back the DVD on the Mac or on a LCD screen. Have I done something wrong?

    Yes, you didn't properly monitor your footage. Sorry to be so blunt.
    If you want to know what your footage looks like on a TV, you need to monitor it on a TV. Your computer monitors will not get you the same colors. And since you are working with AVCHD footage that you will downconvert to a standard def DVD, you'll need something that can downconvert to SD.
    Cheapest option? Decklink Intensity Pro (www.decklink.com). This requires that you have a PCIe Intel Mac Pro or Quad G5. It can downconvert the HD to SD so you can connect it to your TV and see what you will really be getting. There are other Decklink options as well that are more expensive, as well as solutions from www.aja.com and the MXO from www.matrox.com.
    Shane

  • Front Row shuts down when ever I click on the movies button

    I have read through the majority of issues on the DQ board. My problem differs as I can use iTunes, DVD, and iPhoto through Front Row but when ever I select Movies it just closes unexpected and I am back to the desktop.
    Have rebooted, no go. I only have 2 movie files (less that 50megs each), no go. I am in the admin account.
    Any ideas?
    Thanks,
    jz

    Welcome to the Apple Discussions!
    Can you create a new use with the Accounts System Preferences, log out and log in as the new user? Do they encounter the same trouble? (With or without any movies in the new "Movies" folder? If they do encounter the same issue, then you have a system-wide or hardware problem. (It's doubtful it's a hardware problem.) Is your Front Row up-to-date? The current version is 1.3. Is your QuickTime up-to-date? The current version is 7.1.6. Since videos are played through the QuickTime Player (even if they live in iTunes), it's important that both Front Row and QuickTime are up-to-date.
    -Doug

  • Tab Shifting when ever the record is selected ,selected record must be displayed in another tab??

    hi,iam using jdev 11.1.1.7
    my requirement as follows i have panel tabbed with list and detail tab ,list tab contain table  and details tab contain form(related to table),when ever i selected a row in the Table of list tab ..i.e navigate to details tab and display the selected record in form...how to achieve this???????????

    Use a generic selection listener where you first select the row, then navigate to the detail tab.
    If you use the same vo for the table and the detail the framework does the rest for you as the detail does the selected row.
    A sample for a generic selection listener can be found here http://www.oracle.com/technetwork/developer-tools/adf/learnmore/23-generic-table-selection-listener-169162.pdf
    Timo

  • I need to change tree cell render on particular node when it is selected.

    actually the treecell change its icon when it is selected. yhe other cell doesnot changed its icon

    Write your own renderer or extends DefaultTreeCellRenderer. Add something like this to the method
    Component getTreeCellRendererComponent(JTree tree,
                                           Object value,
                                           boolean selected,
                                           boolean expanded,
                                           boolean leaf,
                                           int row,
                                           boolean hasFocus)
        if (selected)
           set the icon to be special icon
        else
           set the icon back to normal
    }

  • How to change row background when the value was changed?

    hello expers!!
    i need your help...plz help me.
    i want my table row(specific) background changes when the user changed the value in a cell. I am able to know that a value in a cell was changed but the problem is i dont know how to change row color background. I've researched over the internet on how to solve this problem but nothing was found.
    please see the link to help you visualize what i mean. tnx!
    [http://www.flickr.com/photos/28686474@N04/2708299927/]
    tnx in advance!! code snippet will be a great help...
    Edited by: kagaw3000 on Jul 27, 2008 8:22 PM

    final JTable table = new JTable(data, columnNames) {
    int lastRowChanged = -1;
    @Override
    public void tableChanged(TableModelEvent e) {
         super.tableChanged(e);
         lastRowChanged = e.getFirstRow();
         repaint();         
    @Override
    public Component prepareRenderer(TableCellRenderer renderer,
                   int rowIndex, int vColIndex) {
    Component c = super.prepareRenderer(renderer, rowIndex, vColIndex);
         if (rowIndex == lastRowChanged) {
              c.setBackground(Color.RED);
         } else { 
              c.setBackground(getBackground());
         return c;        
    ...........this code will changed background color when data was changed BUT if i changed another data in another row the previous backgound color(RED) will be erase. To make it more clearer, it will only change background color of a row only to one row NOT to multiple rows(that is being edited).

  • Certain sentences change slightly in color when I save as JPEG, how can I fix this?

    Here is an sample of my resume, notice that certain bullets and sentences have changed in color when I save it as a PDF, when I save it as a JPEG its fine though
    Ignoe the blue highlight
    your help is greatly appreciated!!

    You have a lot more issues than bullets & text changing color.
    Are you really using light gray text against a darker gray background?
    This makes it hard to read on screen and even printing out (in B&W or Color) will make the gray text halftoned.
    Trust me, no one will be happy to receive a resume looking like this.
    Make it in a work processor like MS Word. Black text on a white page.
    Save it as a .DOC, DOCX, or PDF.
    WIth some many people looking for a job in this economy today, you do not want to an employer to struggle to read your resume.

  • Changing text color of item renderer in datagrid

    Hi,
    I have the following datagrid:
    <mx:DataGridColumn field="name" ......... />
    <mx:DataGridColumn itemRenderer="myRenderer" ...... />
    In myRenderer, I extend from the TextInput class; with the
    text color:WHITE
    My question is:
    When I do a mouse rollover/selection on any row of the
    datagrid, how can I change the text color of my renderer?
    If I add the rollover/selection event listener for my
    renderer, it will only change the color when my mouse is over its
    column.
    I want it to change colour whenever the row is selected/
    rollover.
    Thank you very much.
    Regards,
    hy

    Hi,
    The rollOverColor and selectionColor style on the Datagrid
    will only work for the normal columns.
    Since my column extends from the TextInput, the rollOverColor
    and selectionColor style does not seem to have any effect on the
    itemrenderer.
    hy

Maybe you are looking for