ADF Skinning - How to identify Skinning Selector Name

When we do skinning, in the CSS file that is generated by ADF Framework, we are seeing a style named
af_commandMenuItem_menu-itemIn order to define, custom properties to this above style, we would need to modify in the custom skinning file as
af|commandMenuItem::menu-item {
background-color: #17375E;
}I would like to know, how the skinning selector in CSS file generated by ADF Framework - can be converted into the actual style name that is to be specified in the Custom Skin CSS file.
In above, how can we get
af|commandMenuItem::menu-itemfrom
af_commandMenuItem_menu-itemIs there any general guideline for this?
Thanks in advance,
Navaneeth

:: is a pseudo class and defines an area within a component e.g. af|inputText::content
: is a pseudo element and describes a behavior. e.g. af|inputText:hover (this is the default CSS syntax)
Frank

Similar Messages

  • How to identify the textbox name if they are generated dynamically

    hi
    i want to know how to identify the textbox name when they are generated dynamically. the text boxes name may vary.
    if u know tell me.
    thanx

    Try the following Code :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnShowTextBoxNames()     {
         var count = document.formHeader.elements.length;
         for(i=0;i<count;i++)     {
              var objType = document.formHeader.elements.type;
              if(objType=="text")     {
                   alert("Name Of TEXTBOX NO "+(i+1)+" --> "+document.formHeader.elements[i].name);
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box1" value="" >
    <br>
    <INPUT TYPE="TEXT" name="box2" value="" >
    <br>
    <INPUT TYPE="TEXT" name="box3" value="" >
    <br>
    <INPUT TYPE="TEXT" name="box4" value="" >
    <br>
    <INPUT TYPE="TEXT" name="box5" value="" >
    <br><br>
    <input type="button" name="btn" value="Show TextBox Names" onClick="javascript:fnShowTextBoxNames();">
    </CENTER>
    <input type="hidden" name="boxCount" value="5"/>
    </FORM>
    </BODY>
    </HTML>
    Hope this suffice ur requirement !

  • I have a keynote presentation that i built a while ago. How do identify the file names of the video files that are in the presentation?

    I have a keynote presentation that i built a while ago. How do i now identify the file names of the video files that are in the presentation?

    With your presentation open, click on each movie element and read the name in the Metrics Inspector > File Info.

  • How to identify the infosource name for any ods zpxrrm?

    hi all,
    How to identify the info source name for any ods that have created.
    thanxs
    haritha

    Hi Haritha,
                   Check the datasources from which the data is coming to the ODS.Take the technical name of the data source.Check in Infosources Tab.There you can find in which infosources the ODS is present.
    Hope this solves
    Regards
    Karthik
    Assign points if helpful.

  • How to identify transport file name

    Hello Experts,
    I have one scenario that i need to transport to production.
    Now the problem is this scenario is already migrated upto Quality XI just need to migrate to Production XI.
    Our client is concern that if there will be some problem we want to revert back the whole scenario.
    For that i thought that we can identify the file which we had transported from XIQ to XIP previously and save that somewhere.
    If there will be problem again then we can again import that file.
    But i am not able to understand that how can i identify that file for that perticular scenario, as it is with numbers.
    Please help me out in that.
    Thanks in advance.
    Hetal

    Hi,
    you can check the exported object file name from Tools-->find Trasports option.
    it is better to add your export files to a Transport Request in ABAP stack, which will keep you track of all the files which were transported.
    ??But i am not able to understand that how can i identify that file for that perticular scenario, as it is with numbers.
    --> i think you are checking the Transport ID number not the file name.
    check it from Find transports menu. it will give clear details.
    Regards,
    Sukarna

  • How to identify the technical names in infoobjects inInfoset

    Hi,
    I want to design the query based ob infoset(SAP BW). Infoobjects shown in the infoset have different technical names.
    There are 4 infoobjects in query designer having same descriptions. How should I identify technical name of infoobjects and differentiate between them?
    Regards,
    Shital

    Hello Sheetal,
    Click on the Technical names  button in query designer, it will be in between context menu and table display.
    Regards,
    Pavan.

  • How to Identify a table name of a field in the structure

    Hi Guys,
    I have to identify a application table name of a field , the  field is directly mapped with the structure.
    please guide me where the physical data is stored.
    regards
    Vasanth

    HI Vasanth,
    You can select Data Type radio button in SE11 and click on search help F4) ..and provide field name or structure name and then select where Used list option .and select table check box..so that you can find multiple tables wherever this structure is used..
    U can get multiple tables here if this structures is used for multiple tables.So data related to your field will be storing in multiple tables.
    This information may be usefull..
    --Manohar

  • Flex 4 skin  how to set tree control corner radius..?

    hi .,
         i have using flex4 mx tree control to reduce the corner radius.
    application using tree control code...
    <mx:Tree   contentBackgroundColor="#FFFFFF"  id="folderTree" labelField="documentFolderName" dataProvider="{folderTreeArray}" itemClick="clcikchanged(event)" height="650" borderColor="#FFFFFF">        </mx:Tree>
    <fx:Style>
        @namespace s "library://ns.adobe.com/flex/spark";
        @namespace mx "library://ns.adobe.com/flex/halo";
        @namespace mx1 "library://ns.adobe.com/flex/mx";
         mx|Tree
        border-skin: ClassReference('com.istmanagement.skins.Application.boaderskin');
        </fx:Style>
    borderskin.mxml coding here...
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:fb="http://ns.adobe.com/flashbuilder/2009" alpha.disabled="0.5">
        <fx:Metadata>
    [HostComponent("spark.components.BorderContainer")]
    </fx:Metadata>
        <s:states>
            <s:State name="normal" />
            <s:State name="disabled" />
        </s:states>
          <s:Rect id="background"  left="0" right="0" top="0" bottom="0" >
            <s:fill>
                <s:SolidColor id="bgFill" color="#FFFFFF"/>
            </s:fill>
        </s:Rect>
       <s:BorderContainer cornerRadius="8" width="255" height="650">
        </s:BorderContainer>
        <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" minWidth="0" minHeight="0">
            <s:layout>
                <s:BasicLayout/>
            </s:layout>
        </s:Group>
    </s:Skin>
    tree control corner radius is reduced to display., after i have using  <mx:HDividedBox > to drag this to override a tree control...
    how to solve this problem.,
    With Regards.,
    LinFlex-

    Did you every solve this issue?

  • How do you add the name of a song to a downloaded track not reccognized in the iTunes library.  I copy songs from my own CDs and want to properly identify them instead of the current "Track 02".  Thanks

    How do you add the name of a song to a downloaded track not reccognized in the iTunes library.  I copy songs from my own CDs and want to properly identify them instead of the current "Track 02".  Thanks

    Right-click the track in your library, Get Info, go to the Info tab, and type in the correct information.  When you are done, click "OK."

  • How to identify the name of my smtp-mail host dynamically?

    Hi,
    I want to send an email from my system which has an internet connection.
    I don't know how to identify and mention the name of my smtp server ie; the smtp-host name that should be mentioned in my propetries object 'props' as props("mail.smtp.host","smtphostname");
    I want this program to work on other systems also,ie; It should dynamically find out what is the smtp-email host for the computer on which the program is running and set the smtp-host name in the 'properties' object dynamically.
    I will be thankful if anybody sends me code to solve this problem.
    Thank u in advance,
    Ravi.

    Write a mail scan to look for typical settings
    such as domain, mail.domain, smtp.domain, smtp.mail.domain
    where domain is after @ in an email address
    Have a SocketSearch class that uses non blocking via java.nio.channels.*
    so it can be interruptable and scan for these typical mail settings on default port 25 - The code using these interruptable socket can each be threaded to find the host/port and should find it in seconds
    Once found, store the settings in a configuration so you don't have to scan again unless it doesn't work anymore...
    If can't find the socket host/port via typical settings, next use a Java class that does a nslookup based on MX records - For example if you type "nslookup -type=mx javasoft.com" and you get mail exchanger = mail.java.sun.com and if you "telnet mail.java.sun.com 25" - you can see the port is open for sending emails.
    No expert in MX records for a domain to find the exact one and someone else can share some light on this...

  • How to Identify the Type of Font Names in Illustrator

    How to identify the type of font names like "True Type font" (or) "open Type font" for illustrator file using Scripts or any language. Could you please advice me.
    Thanks,
    Prabudass

    If there is an Illustrator SDKor Illustrator Scripting forum, try
    that. ATM won't really help - it is obsolete and should not be
    installed (breaks things).
    Aandi Inston

  • How does User get Identified by Screen Name and NOT by Real Name in submitting a Forum Post?

    I have noticed that when I post a question or discussion item to one of Adobe's Forum Communities, I am identified as the author of my post by my actual legal name, not by my Screen Name that I set up in my profile when I registered.  The same applies for the posts of others--they are identified by their legal names, not their screen names.  What is the purpose of the Screen Name we set up when we registered, if not to shield the identity of the individual from others reading the post, if that person does not want to have their true identity publicly disclosed in, or publicly associated with the post?  If I sign my post using my Screen Name, but then it is identified with my legal name when I post it, what good does it do to have a Screen Name?  Is there some way to have the software not use my legal name, but identify my posts by my Screen Name only, if I so choose that option?  (Of course, Administrators at Adobe can always (presumably) identify the (real name) author of the post, via the registration information associated with a Screen Name, should the need arise.)
    Sincerely,
    SpaceAdventurer

    Thanks for the reply, mytaxsite.co.uk.  And thanks for the screenshot showing me that my name is displayed to you as "spaceadventurer," which is what I had intended / wanted.
    I understand now, from reading through most of the original and replies to the post,Real name instead of Screen name displayed, where I noticed you replied several times, that the Screen Name / real legal name works this way on Adobe’s forums:
    When you are logged in - YOU (and only you) see your real legal name everywhere on the forums / web site, and associated with all of your posts
    When you are not logged in (to Adobe / forums with your Adobe username / password), you always see your name associated with your posts as your Screen Name only
    Everyone else always sees your screen name, everywhere, on all posts, regardless of whether they (everyone else) are logged in or logged out.  (Unless, of course, you set up your profile to have your Screen Name be your real legal name.  Then everyone will always see your real legal name associated with your posts.)
    When logged in, in the “Edit Communities Profile” web page (from the menu that appears when you click your Avatar in the black Adobe menu bar at the top of the screen), in the “Privacy” tab on that page, there is a “widget” called ‘Preview your profile’ in the upper right-hand corner of that tab.  This widget is supposed to show you how you or others, depending on which selection you make from the dropdown in the widget, will see your Profile (and therefore, your name) from their computers.  In fact, no matter which selection you make from the dropdown, the display of your profile that is produced ALWAYS shows your real legal name, which is misleading, because that is not in fact, what others will see. Others, whether “Registered Users,” “Friends,” or “Everyone,” will ALWAYS see your Screen Name only.  (Except for the exception I mentioned in the immediate previous bullet.)
    There is a way to change your Screen Name, should you feel the need to do so.  The steps to do that are detailed in response no. 75 to the "Real name instead of Screen name displayed" forum post.
    Does it sound to you like I have captured the gist of the main learnings that can be gleaned from that post ("Real name instead of Screen name displayed”)?
    Thanks,
    SpaceAdventurer

  • How can i identify the environment name or database name in the PL/SQL code

    Hi,
    I am using UTL_FILE to genearate the files.,
    My problem is, I have to design the common sql file , which can be executed in 2 diffrent environments ( Say QA & DEV ) , with no parameters. It has to identify the environment and based on the environment , it has to generate the concern files.,
    The only change needs to be incorporated is , file names , which will change based on the environment.,
    can nay one tell me , how can i identify the environment name or database name in the PL/SQL code ??
    Raja

    In this case, USEC_GI_DEV.NA.XXXNET.NET is a TNS alias. That alias exists only on the client machine. There is no way to access that information on the database server.
    You would have to find something in the v$database or v$instance table that uniquely identifies the database (and you may need some help from the DBAs to do this because you need to ensure that the data element you choose is compatible with whatever refresh process(es) are used in your environment).
    Now, if you are writing a stand-alone SQL*Plus script, SQL*Plus, as a client tool, does have access to the TNS alias in later versions. But that is a client-side determination, not a server-side determination.
    Justin

  • How to identify the psa table names in bi 7?

    Hi all,
    How to identify the psa table names in bi 7?  i need to know the psa table name in bi 7?
    as well as i need to check whether any historical data loads is there for psa for a particular period?
    How to filter for a particular data in the psa in bi 7?
    Thanks
    Pooja

    Hi Pooja,
    A)How to identify the psa table names in bi 7? i need to know the psa table name in bi 7?
    Double click on the PSA and CTRLSHIFTF5 --->in PSA properties -->PSA table ..u can find the name here ....
    B)as well as i need to check whether any historical data loads is there for psa for a particular period?
    usually as SAP best practise we will not keep data in PSA for not more than 30 days or at the amx 60 days..you may not find historical data here..however to find the oldest data -->Right Click >Manage>Give some old date ,say 01.01.2005 in the Request newer than ...and Refresh.....
    Other way is to find out in the Data provider i.e in the Cube or DSO ...
    How to filter for a particular data in the psa in bi 7?
    a)Do not map it
    b)in the DTP...Filter it ....i.e from PSA -->CUBE/DSO....
    c)Or write a routine also in start routine ...
    Rgds
    SVU123

  • IC skin, how to create own skin?

    Hello!
    I would like to create my own skin for IC in CRM 7.
    It is not the same procedure as with the normal skins, but the "same" skins, at least with the same name, are available in the BSP Application CRMCMP_IC_FRAME.
    I can not find the tabled used for storing the info regarding the skins for IC...does anyone know that?
    Thanks!
    rollo

    Hello!
    I've found an OSS note regarding this issue!
    Check out note 1151944 that is about the issue with IC skins.
    regards
    rollo

Maybe you are looking for

  • Error While Transporting the DSOs

    Hi Experts, I am transporting a DSO from DEV to QA in 7.0 system.While transporting the DSO, i am getting the below mentioned error. The creation of the export DataSource failed Reading the Metadata of APMD0009 ... Creating DataSource 8APMD0009 ... P

  • How to view information based on selection from table

    I currently have a roles table, usersinroles table, and a users table. The users table has a user ID, the roles table has a Role ID, and the usersinroles table has Role ID and user ID as foreign keys. Many users can have many roles. On one page I hav

  • WebDAV Client Troubleshooting

    I'm using WebDAV to access files through Windows File Explorer stored in my SharePoint 2013 farm.  There have been some issues with users getting disconnected from these network locations, such as the network location going offline from the client wh

  • Turn repeat off on iPod classic

    I have just got a new car and it has an ipd connection. Since using it when I then play podcasts at home it plays the next one in sequence despite repeat being "off"!!!! although off the iPod says play current playlist once! the other options are "on

  • Dynamic excel name for Excel Destination in SSIS

    I have a for each loop container which executes for each advertise rid.For each advertiser it runs a sql query and exports to an excel file.there are seven advertisers and hence there will be seven excel reports.But my requirement is to name them acc