Using CSS class together with CSS Rule

Hi,
I design my web site in Dreamweaver and then use Web
Developer 2005 Express for the dynamic stuff. I amalgamate all the
work I have done in Dreamweaver into 2005 Express. However with the
new server side controls I do not know how to add a CSS class
together with a CSS rule.
In the normal client side control in Dreamweaver I have -
<input name="txtPassword" type="password" class="Input"
id="SpacerBottom" />
In the server side controls the ID keyword is used now -
<asp:TextBox ID="txtPassword" runat="server"
Style="z-index: 107" CssClass="Input" ></asp:TextBox>
I have tried to use the name="txtPassword", but it ignores
this.
I would really like to know how I can use a class and an id
selector with the new server side controls and would really
appreciate some help on this.
Many thanks,
Polly Anna

the explicit " match-any" will do just that.So, a nested ACL can be configured for multiple criteria.
The alternate is a "match-all" where all nested options in your acl MUST be met. Hope this helps.
T

Similar Messages

  • How to use the class CL_CTMENU with the method DISABLE_FUNCTIONS

    Hi Friends,
    How to de-activate some functions in the Menu bar?
    Eg: - Sales document
                 Create
                 Change
                 Display
    I want to de-activate "Change"
    In other words: - How to use the class CL_CTMENU with the method DISABLE_FUNCTIONS in my program.
    Regards,
    Hari
    Edited by: Bhatlapenumarthy Hari Krishna on Jun 9, 2008 5:22 PM

    Krishna,
    It is not possible to deactivate the CHANGE option in themenu bar using the method disable_functions of cass CL_CTMENU. This method allows you to deactivate only the function codes of the CONTEXT MENU, which is available only when u press the left mouse button.
    U can use the SET PF-STATUS 'XXX' EXCLUDING fcodes option to disable the CHANGE.
    *****Reward points if useful
    Regards,
    Kiran Bobbala

  • Help! Plug-In SLL_PI 720_46C needed to use GTS 72 together with R/3 4.6C?

    Hi together,
    maybe anybody can help me with my question:
    We want to use GTS 7.2 together with ERP 4.6C. Do I have to install additionally the plug-in SLL_PI720_46C in my feeder system? Or is it ok if I have only the standard plug-in PI2004_1_46C, SP14 installed? Do I need both?
    Thanks very much for your help and answers.
    Cheers,
    Andreas

    Andreas,
    I believe in your case it would be sufficient to install the GTS7.2 plug-in.  SAP changed its plug-in strategy for GTS 7.2 and went from the plug-in that comes pre-installed with ECC 6.0 to a separate GTS plug in for 7.2.
    I also have used GTS 7.2 with the "old" plug-in which you're referring to.  This will work for the basic Compliance and Customs functionality but I am guessing that you would run into issues when trying to use functionality that is new in GTS 7.2.
    Sascha

  • Using custom class loaders with DefaultCacheServer

    Hello,
    Is it possible for the DefaultCacheServer to use the class loader specified when a named cache is initially created (e.g. CacheFactory.getCache(cacheName, classLoader))? We would like our application to allow cached objects to be customized and deployed at runtime. Performing a rolling restart of the DefaultCacheServers to update the classpath is not feasible as this could negatively impact existing applications.
    Thanks,
    Jim

    Hi Jim,
    You are correct, the DefaultCacheServer does not currently have any ClassLoader customization support. What is important to know is that the DefaultCacheServer is just a thin wrapper around the Coherence library, and the only functionality it adds is the auto starting of services, and periodic reassurance that the services are still running. As suggested in my prior post, you can choose to extend, or call out to it's methods to add functionality. If you are interested in per-cache ClassLoaders, you should be able to achieve this by again creating your own custom CacheServer class, which iterates through your list of caches, and calls CacheFactory.getCache(name, loader), and then finishes up by calling DefaultCacheServer.main().
    You may also want to consider using seperate cache services (still in the same process) per customer. If you were to take such an approach you could choose to address the ClassLoader issue by calling the setContextClassLoader() method on each service, which would then cover all caches associated to a specific customer. There are other benefits to the multi-service approach, for instance you can choose to run or not run a service on a given node, allowing more control over how much of your cluster resources a customer has access to.
    thanks,
    mark
    Coherence Development Team

  • Class-map with ACL rule

    In the following class-map:
    "class-map match-any voice
    match access-group 190"
    If the ACL 190 has more than one line with "permit" statements.
    In order for the policy-map using the above class-map to find a match and use the rules applied for the above class-map, does the traffic need to meet all the criteria in the ACL or does it work like a regular ACL, where it "walks" down and it stops execution at the first permit/deny "hit"?
    Regards,
    Christos

    the explicit " match-any" will do just that.So, a nested ACL can be configured for multiple criteria.
    The alternate is a "match-all" where all nested options in your acl MUST be met. Hope this helps.
    T

  • How to use a timer together with an event.

    Dear All,
    Today I tried all day to accomplish someting with labview, but I didn't succeed. Perhaps you can help me.
    The problem is as follows. 
    I have an event structure inside a while loop. The events are all triggered by booleans. Those booleans initiate
    for instance some pumps or  other apparatus. The time-out is put at 200ms and inside the time-out structure 
    are some GET function (for instance to obtain the values of some balances and to do some calculations with those obtained values.
    Now I would like to be able to start an experiment. This means by pressing a boolean initiate the experiment. This experiment involves 
    the starting of a timer and after every 10 minutes, the obtained/calculated data (from the time-out) structure should be written to a .xls file.
    I'm not able to programm this part of the program. My first problem is that I need an event (triggered by a boolean) that start a timer. This timer should run always (independant of other events) until stopped by another boolean. After every 10 minutes this timer should initiate (with a boolean?) the data writing to a .xls file.  Can this be done by resetting the timer after every writing event?
    So I have multiple questions, but my main question is how to build an event which is trigger by a boolean and then initiates an overall timer.
    Thanks! 
    Bio

    OK.  That worked.
    You have made all the mistakes self-taught beginners with LabVIEW make, except that you apparently have a pretty good idea of what you want your program to do.
    1.  LV is a dataflow language.  This means that any node which has all its inputs satisfied can run and once started any node runs to completion before another starts.  In your event case the timeout case will execute 200 ms after the loop starts (assuming the user did not push a button before that).  The Waits in the sequence frames mean it will be at least 555 ms before the timeout case completes.  200 ms later is will run again, if not other event has occurred.  Furthermore, you do not know whether the Waits will run before or after the other code in each od the sequence frames because there is no data dependency between the Waits and that other code.
    2. A matter of style: It is recommended that front panels and block diagrams do not exceed one screen size.
    3. Local variables violate the dataflow paradigm and are almost always unnecessary.  The WIRE is the variable.  Connect things via wires not local or global variables.  You will also need some shift registers.
    4. Sequence structures are almost never required.  One exception: Single frame structures around something like the Wait function which does not have error clusters for dataflow.
    5. Look at the Producer/Consumer Design Patterns which come with LV.  File >> New.. >> VI >>  From Template >> Frameworks >> Design Patterns..  The events version will be useful.  Also learn about state machines.  That architecture is versatile, powerful, adaptable, and much more likely to get you to where you need to be with your program.
    6. The events will all be queued up in the internal event queue.  It just takes a long time for your program to get to them.  I like to keep the code in every event case simple enough that it executes before the user could get to the next button. The queued message handling in the Producer/Consumer takes care of this.
    7.  You probably should have an event for Stop experiment.  It would send a command to the consumer loop to shut down all pumps, close files, and any other "cleaning up" which needs to be done before stopping the program.
    This may seem like a lot, but you have most of the pieces.  Some re-arrangement and re-organization will help a lot.
    Lynn 

  • How to use the class CL_PT_EMPLOYEE with GET PERNR?

    Hi,
    I saw this sample code on the forum.
    Is it more performant than using the "RP-PROVIDE-..." macros?
    Does the employee instance needs to be killed after each pass? How does it affects memory?
    start-of-selection.
    GET pernr.
    <b>* Create employee instance</b>
      gif_employee = cl_pt_employee=>get_employee( pernr ).
      go_employee ?= gif_employee.
    <b>* Append all other required infotypes to itab</b>
      APPEND '0003' TO gt_infotypes.
      CALL METHOD go_employee->get_infotypes
        EXPORTING
          i_itlist      = gt_infotypes
          i_fromdate    = id_fromdate  " start date
          i_todate      = id_todate    " end date
    *      I_FILTER      =
          i_noauthcheck = 'X'
        IMPORTING
          e_result      = gt_infty_request
          e_retcd       = gd_retcd.

    I think it that way. You are trying to compare and analyse old (don't say bad) programming school with a new (OO one) approach. Although, I am OO enthusiast and in any case I will try to convice you that OO aproach is better than classical one, you should know what SE30 was designed for. If you want to stress on OO design, use the one you mentioned, otherwise stick what SAP recommmends (please note, that I am "middle" school pupil, so I tried to learn all courses with my own experience and feelings from OO).
    IMHO, OO aproach is a way of thinking, not something we can messure in sec. and compare to old school teaching. Some of your report should be desinged in classical way, some should be pure OO. Which one you choose, is up to you, your conclusions, your percives of ABAP language. For me OO was not injected in ABAP enough, to affect developers or to convince them using it in any case w/o doubts you have.
    Regards
    Marcin

  • Can you use Apple TV together with an add-on cable-type box?

    We're thinking of buying Apple TV for our 75 yr. old parents for Christmas, but my father inlaw currently pays extra to view live soccer using some add-on cable-type box (sorry, no idea what to call the box).  We do not live in the same city as them, so checking out their current set-up before Christmas isn't possible.
    Will the two boxes conflict and could we run into issues with too few ports when we try to set it up?
    I'm assuming there will only be one hdmi port on the television (but then, I don't own a TV. I could easily be wrong). Will both the Apple and the cable boxes each require their own hdmi cables going into the television?
    Maybe the Apple TV will negate the need for the other box altogether. e.g., What if we bought them a major soccer league subscription for watching live soccer?
    Thanks so much for any advice!  If it weren't for the soccer issue, we would buy the Apple TV right away.
    Sandra

    Thanks so much, WC!  Glad to know they likely have more than one HDMI port (they just purchased the TV this past summer). 
    Maybe the add-on box to which I referred would be some form of router.  Its purpose is so they can watch RAI here in Canada.  His soccer games are on RAI (for which he needs the router-ish-thingy) and also Telelatino (which he can get through his cable TV provider).  If he could no longer watch RAI, then he would simply not use the Apple TV gift, making it a dumb purchase on our parts.
    So, I just need some reassurance that he will still be able to attach this router box to his TV and also attach the Apple TV, or confirmation that he will no longer need that box if he has Apple TV.  I just don't know enough about that box to ask the right questions. 
    Again, thanks so much.  I'm not sure where else to turn to find out.
    Sandra

  • Using SDO_UTIL.GETVERTICES() together with functions

    Hi again
    I'm having a problem here in my spatial database I trying to use the function
    TABLE(SDO_UTIL.GETVERTICES(c.shape)) in order to get the coordinates of shapes. But I need to first extract data from spatial functions like the centroid function. How do I get these 2 functions to work together.
    thanks very much
    Thomaz

    Hi Thomaz,
    Maybe I missed your point, but what about the following:
    select t.y, t.x, t.id
    from your_geom_table,
    table(
    sdo_util.GETVERTICES(
    sdo_geom.sdo_centroid(geom, 0.005)
    ) t
    regards,
    Thomas

  • How to use function module together with tables in Crystal Report?

    Dear all expert,
    I have the following situation where I need to use a function module in my crystal report, But how can I link the FM with the tables so that I can pass out some value from the FM to the report?
    Thank You.

    Hi,
    Hope the following helps..
    1)
    LOOP AT IT_OUTPUT.
    Call the function module to get the tracking number and store the output in the
    variable V_TRACKINGNO.
      IT_OUTPUT-TRACKING_NO = V_TRACKINGNO.
      MODIFY IT_OUTPUT TRANSPORTING TRACKING_NO.
    ENDLOOP.
    2) Date conversion
    DATA: V_CHAR(10) VALUE '2006.11.17'.
    DATA: V_DATE       TYPE SYDATUM.
    CONCATENATE V_CHAR(4) V_CHAR5(2) V_CHAR8(2) INTO V_DATE.
    WRITE: V_DATE TO V_CHAR MM/DD/YYYY.
    WRITE: / 'MM/DD/YYY Format - ',  V_CHAR.
    Please make sure to reward points for helpful answers..
    Thanks,
    Naren

  • Cn I Use Airport Express together with Time Capsule?

    I've just bought a Time Capsule to facilitate Time machine backups, and I was wandering if I can continue to use my old Airport Express alongside this. I used to have a lead from my old hi fi system plugged into the Express, but there doesn't appear to be a similar socket in the Capsule. Does this mean I've lost the ability to play music from the Mac through my speakers??

    Yes, you can still use your AirPort Express, for streaming, along with the Time Capsule. Please check out the following Apple Support article for details.

  • Is it possible to use SCXI-1531 together with PCI-6024E or PCI-6013?

    I want to perform acoustic measurements as well as measurements with Hot-wire anemometers and need therefore low-pass filter and simultaneous sampling.

    Greetings,
    The PCI-6024E can be used with the SCXI-1531, but the PCI-6013 cannot. Furthermore, you will need an SCXI chassis to house the 1531 (you may have already known this). The SCXI-1000 can hold up to four modules. Below is a link to information concerning the SCXI product line:
    http://sine.ni.com/apps/we/nioc.vp?cid=1604〈=US
    Good luck with your application.
    Spencer S.

  • I USE MY iPHONE TOGETHER WITH MY COMPUTER FOR SOME TIME

    SINCE YESTERDAY THE COMPUTER DOES NOT IDENTIFY MY IPHONE AND i CAN'T  SYNCRONIZE IT WITH THE COMPUTER. PLEASE INSTRUCT ME WHAT TO TO DO IN AIM TO OVERCOME THE PROBLEM. iT WORKED PERFECTLY WELL UNTIL YESTERDAY.

    And apparently your keyboard can only type in caps
    DEVICE NOT RECOGNISED IN ITUNES
    If you have connected your device to your computer and it does not appear in the side bar in iTunes then for Windows computers read http://support.apple.com/kb/TS1538 or if you have a MAC then read http://support.apple.com/kb/ts1591 for troubleshooting steps.

  • Stylesheets with CSS classes included in springboard possible?

    Hey there.
    Is there a way to include a CSS stylesheet in my custom made springboard?
    I can include them in features but don't know how to import external files to the custom springboard (amx page)..
    Regards,
    Pascal

    Hi, Pascal, actually let me add to this thread so everyone can see this.
    Yes you can leverage CSS in custom springboard and custom login screen. If these are HTML based, you would just simply include the CSS with your HTML page. If these are AMX based, you would need to follow the SkinningDemo to either extend or add new style classes. Look in the ApplicationController project - Application Sources - META-INF - adfmf-skins.xml file. This contains references to additional CSS classes that can be used in the entire app. Since springboard and login page are application level artifacts, these CSS/skinning files will need to be added in the App Controller project per the sample.
    Quick explanation of the adfmf-skins.xml file since I was not clear in this morning's call. You can either modify the existing CSS classes shipped with the framework, or add new CSS classes to the framework. To modify (or extend) - for example, to change the header facet's outputText color to red, you would first add this to the skins.xml file
    <skin>
    <id>mobileFusionFx.iOS</id>
    <family>mobileFusionFx</family>
    <extends>mobileFusionFx</extends>
    <style-sheet-name>css/mycss.css</style-sheet-name>
    </skin>
    Then in your mycss.css file, you would have:
    .amx-panelPage-facet-header > .amx-outputText{
    color: red;
    If you want to add a brand new CSS class and then use it in your app, you would:
    <skin-addition>
    <skin-id>mobileFusionFx</skin-id>
    <style-sheet-name>css/myaddedcss.css</style-sheet-name>
    </skin-addition>
    And the myaddedcss.css would have the following new class that you can now use in your app:
    .MyCSSClass {
    color: green;
    This would work against the entire app, including springboard and custom login app built using AMX.
    Thanks,
    Joe Huang

  • Save as SVG, with character styles included as CSS classes? (CC)

    Hi, I know that
    a) Character styles in Illustrator CC are saved as CSS classes in the CSS properties menu, with appropriate style info;
    b) These classes can be exported to a CSS file from the CSS properties manual;
    c) Graphic styles can also be saved as CSS classes; but
    d) When saving to SVG (with Style Elements option) the graphic style classes are included in the SVG code, but NOT the character style classes. Instead, it uses classes like ".st0", ".st1", etc., which separate each styled attribute (font-family, size, etc.) into its own class.
    Is there any way around this problem, short of extensively editing the svg code by hand later? The end result we're looking for is an SVG where text has classes assigned, based on character styles.  (Ideally we'd then link to an external style sheet in order to modify based on the end use of the SVG. So for example a graphic with .textBold and .textRegular, where those classes are later assigned different values based on the delivery device.)
    Has anyone else dealt with this issue?
    Thanks!

    Hi Ianmcarey,
    Thanks for the detailed Explanation. We will investigate this Requirement of Exporting Character style classes in the SVG code.
    Thanks and Regards,
    Mohit Gupta.

Maybe you are looking for