Attached stylesheet won't show in dropdown menu

when i moved to CS5 I lost the abiltiy to see the attached stylesheets in the dropdown menu for class in the properties window
it just gives me the option to choose none, rename or attach stylesheet. But if I choose rename - it offers me all the styles in my sheet to rename, but still doesn't show them as options to choose.
If I choose "attach" after I browse or import, it still doesn't show me the styles for me to choose, so the only class I can choose is "none" and 'm stuck with default styles.
any suggestions?

Plus I haven't seen a good option for replacing the ease of use and functionality of frames. (I know about the downside of using them.)
Good technique and server-side includes work wonders and can run large diameter circles around frames for most applications.  Failing server-side includes, even simple DW's Library functionality beats frames with a 4x4.

Similar Messages

  • How to show an dropdown menu when user click on one point on lineseries?

    Hi all,
    I am new  in flex development.
    I am showing line series on the chart, I'd like to give some interaction, when user click on the "point" on the line, I'd like to show a dropdown menu, and react to user's choice on the menu item.
    Is it doable? Any sample or reference?
    Thanks in advance.
    /// Jack

    Cool, that definitely moving forward.
    I saw two questions here:
    1. I added mouseOver/mouseOut action to the LineSeries, it then react when I mouse over the line, instead of at the data point.
    2. How do I know the dataPoint's position and locate popmenu in that place? on other words, how do I have dropdown menu. I tried to use "this" as DisplayObjectContainer and send to Menu.createMenu, but seems not working.
    Here is the code pieces I am talking about:
    [Bindable]public var myMenu:Menu;
                // Create and display the Menu control.
                private function createAndShow():void {
                    Menu.
                    myMenu = Menu.createMenu(holder, myMenuData, true);
                    myMenu = Menu.createMenu(null, myMenuData, false);
                    myMenu.labelField="@label";
                    myMenu.show(10, 10);
                private function hideMenu():void {
                    myMenu.hide();
    <mx:series>
                        <mx:LineSeries mouseOver="createAndShow()" mouseOut="hideMenu()" sortOnXField="true"  xField="date1" yField="score1"  displayName="Score1">
    Thanks.

  • Android Adobe DPS viewer. HTML form dropdown menu closes everytime the viewer navigation pops up.

    I have a web content page which contains a form dropdown menu: <select><option></option></select> ... and so on. I use this as a small filter to narrow a result.
    When I tap the screen, this dropdown menu is shown and works correctly on an iPad. As a side effect the navigation from the Adobe DPS viewer is also shown although this doesn't interfere with the dropdown menu in the HTML. Both are shown.
    On an Android tablet, the html dropdown menu is shown for a fraction of a second until the Adobe DPS viewer navigation pops up. The HTML dropdown menu just won't stay visible.
    My question: How can I solve this? How can I make the HTML dropdown visible on an Android tablet? Or how can I prevent the DPS viewer navigation from showing?
    Thanks

    This phenomenon does not happen on a Samsung Galaxy Tab 2. While not showing the dropdown menu as on an iPad it shows it as a scrollable menu at the bottom.

  • Stupid update doesn't show my ipod menu

    I updated my Itunes now the stupid thing won't show my ipod menu. How the heck am i supposed to be sync my files on my IPODS!!!!!?
    Where is it?

    Hi OddParentfan,
    Thanks for visiting Apple Support Communities.
    See this article for how to sync your iPod using the new interface in iTunes 11:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12313
    Best,
    Jeremy

  • Spry Menu Bar Submenu won't show in Safari or Dreamweaver LiveView

    I am trying to get my submenu to show up on my website's spry menu bar. It will show up when I test the site using firefox or IE but it won't show when I try LiveView in Dreamweaver or when I test using Safari. The site is www.fuseut.com/fuse
    Here are is the CSS for the menubar:
    @charset "UTF-8"; /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */ /******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************/ /* The outermost container of the Menu Bar, an auto width box with no margin or padding */ ul.MenuBarHorizontal {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      cursor: default;      width: auto; } /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ ul.MenuBarActive {      z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width */ ul.MenuBarHorizontal li {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      position: relative;      text-align: left;      cursor: pointer;      width: 125px;      float: left;      font-family: "MS Serif", "New York", serif;      overflow: visible; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ ul.MenuBarHorizontal ul {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      z-index: 50;      cursor: default;      width: 7em;      position: absolute;      left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {      left: auto; } /* Menu item containers are same fixed width as parent */ ul.MenuBarHorizontal ul li {      width: 7em; } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ ul.MenuBarHorizontal ul ul {      position: absolute;      margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {      left: 0;      top: 0; } /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides */ ul.MenuBarHorizontal ul {      border: 1px solid #CCC; } /* Menu items are a light gray block with padding and no text decoration */ ul.MenuBarHorizontal a {      display: block;      cursor: pointer;      padding: 0.5em 0.75em;      color: #FFF;      text-decoration: none;      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;      text-align: center;      background-image: url(../menubgdefault.png); } /* Menu items that have mouse over or focus have a blue background and white text */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {      color: #FFF002;      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {      color: #FFF002;      text-decoration: underline;      font-weight: bold; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarDown.gif);      background-repeat: no-repeat;      background-position: 95% 50%;      background-color: #999; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarRight.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarDownHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarRightHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************/ /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ ul.MenuBarHorizontal iframe {      position: absolute;      z-index: 1010;      filter:alpha(opacity:0.1); } /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ @media screen, projection {      ul.MenuBarHorizontal li.MenuBarItemIE      {           display: inline;           f\loat: left;           background: #FFF;      } }
    And here is the HTML code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>FUSE UT</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    #apDiv1 {
         position:absolute;
         left:0px;
         top:135px;
         width:551px;
         height:269px;
         z-index:2;
         visibility: visible;
    #apDiv2 {
         position:absolute;
         left:685px;
         top:150px;
         width:203px;
         height:270px;
         z-index:1;
    #apDiv3 {
         position:absolute;
         left:684px;
         top:149px;
         width:200px;
         height:267px;
         z-index:2;
    #HomeEvents {
         position:fixed;
         left:683px;
         top:151px;
         width:200px;
         height:263px;
         z-index:1;
         background-image: url(Components/EventsPic.png);
         visibility: visible;
         overflow: hidden;
    #HomeEvents {
         position:absolute;
         left:550px;
         top:-1px;
         width:200px;
         height:265px;
         z-index:2;
    #EventsXML {
         position:absolute;
         left:1px;
         top:43px;
         width:199px;
         height:223px;
         z-index:3;
         visibility: visible;
         overflow: scroll;
    #apDiv4 {
         position:absolute;
         left:-1px;
         top:265px;
         width:753px;
         height:325px;
         z-index:3;
         background-image: url(home1.png);
    -->
    </style>
    <script type="text/javascript">
    <!--
    var event = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "descending"});
    var event2 = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "ascending"});
    event2.setColumnType("date", "date");
    //-->
    </script>
    <meta name="Keywords" content="fuse ut utk university of tennessee tommy jervis avery howard ross rowland angie sessoms sga campaign elections" />
    </head>
    <body>
    <div id="container">
    <div id="header">
    </div>
    <div id="menubarparent" style="z-index: 20; position: absolute; overflow: visible;">
    <div id="menubar" style="z-index: 10;">
    <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html">FUSE</a>      </li>
        <li><a href="senators.html" class="MenuBarItemSubmenu">Senators</a>
          <ul>
            <li><a href="#">Untitled Item</a></li>
          </ul>
        </li><li><a href="executive.html">Executive</a>      </li>
        <li><a href="policy.html">Policy</a></li>
        <li><a href="organizations.html">Organizations</a></li>
        <li><a href="bios.html" class="MenuBarItemSubmenu">Bios</a>
          <ul>
            <li><a href="#">Untitled Item</a></li>
          </ul>
        </li>
      </ul>
      </div>
      </div>
      <p>
      <p>
      <div id="apDiv1">
        <div id="apDiv4"></div>
        <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="265" wmode="transparent">
          <param name="movie" value="Components/CandidatesHomeSlideshow.swf" />
          <param name="quality" value="high" />
           <param name="wmode" value="transparent" />
          <param name="swfversion" value="6.0.65.0" />
          <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
          <param name="expressinstall" value="Scripts/expressInstall.swf" />
          <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
          <!--[if !IE]>-->
          <object type="application/x-shockwave-flash" data="Components/CandidatesHomeSlideshow.swf" width="550" height="265" wmode="transparent">
            <!--<![endif]-->
            <param name="quality" value="high" />
              <param name="wmode" value="transparent" />
            <param name="swfversion" value="6.0.65.0" />
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
            <div>
              <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
              <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
            </div>
            <!--[if !IE]>-->
          </object>
          <!--<![endif]-->
        </object><div id="HomeEvents">
          <p> </p>
          <p> </p>
          <div id="EventsXML">
            <div spry:region="event2">
              <dl spry:repeatchildren="event2">
                <dt>{date}</dt>
                <dd>{title}</dd>
                <dd>{location}</dd>
              </dl>
            </div>
          </div>
        </div>
      </div>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>
    Sorry if it's something really basic...I'm a noob to web design.
    Thanks!

    Don't use reserved words in JS
    var event = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "descending"});
    event is such a reserved word. If you change this to event1 then all is well.
    I hope this helps.
    Ben

  • Why won't cells autopopulate when using numbers on the ipad? Anyone have a fix? Have also created a dropdown menu, but that does not translate from excel to numbers either.

    Why won't cells autopopulate when using numbers on the ipad as they will in excel? Anyone have a fix? I have also created a dropdown menu in excel, but that does not translate from excel to numbers either.

    Glad you got it sorted out.
    Diane123456 wrote:
    > Thanks Vix, Joe, and Mad Dog for responding, the site is
    in
    > development so it's behind a password, which I probably
    could share
    > but MD is right, it was a margin issue. I didn't think I
    needed to
    > set a margin but I had to put a left margin of 2em on it
    for the
    > numbers to display on IE7 or IE6
    >
    > This is actually a rather common issue with CSS layouts
    (it is not an
    > issue with designs using tables) - there are several
    posts for ULs
    > which you may be interested in - see
    >
    >
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=
    > 1981&productId=1&loc=en_US
    >
    > -- and once I got the numbers to show I ran into the
    same problem as
    > the commenters on the above thread, which noticed that
    the vertical
    > alignment doesn't work well with IE, and which noted
    that apparently
    > IE has a stutter because it just kept repeating "1" "1"
    "1" -- so I
    > finally went with a hanging indent and just put the
    numbers in there
    > manually - fortunately it's not a long list.... if you
    have a fix
    > for the stutter, or know of another place to get help
    with CSS layout
    > browser quirks please share -- if I find another one
    I'll share also
    >
    > thanks again, Diane

  • I just downloaded the latest version of iTunes on my PC, Window 8 and now it won't recognize my iPhone 4. The device never shows in the menu bar

    I just upgraded to 11.1.4.62 and now my iTunes won't recognize my iPhone 4.  The device never shows in the menu bar

    Hello there.
    The following Knowledge Base article provides some great, in-depth steps for troubleshooting your issue:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • When I try to bookmark a page the dropdown menu only shows 4 of my many bookmark folders.

    I have a heck of a lot of bookmark folders. These show up in the dropdown menu when I click on Bookmarks in the toolbar. However just today when I try to bookmark a web page, I only am given offered four folders in which to file the bookmark. Clicking on "choose" doesn't show any folders at all that I've created. Same thing when I open MF in safe mode with addons not enabled.
    If I click on "Bookmarks menu" in the bookmark window then click on the arrow to chose a file, I see an odd assortment of random bookmarks and files.
    To complicate matters, perhaps: This morning Firefox went crazy. Details don't matter now. I followed instructions in MF support and saved critical files. Then uninstalled and reinstalled a new copy of MF. Created a new profile and moved critical files into it.
    Am I missing a file? Is something corrupted? (How would I find it?) Why would MF not see my folders when asked to file a bookmark?
    Thanks

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    This can also be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Dropdown menu not showing up

    Ok i've got the code in and no errors thank fully however my menu isn't dropping down is there a trick to positioning the menu right for it to register or what.  I can't seem to get the hang to this i keep practicing (third one) and this time no code errors just the bloody menu won't show up the filters work fine just no menu and no errors, which is whats ticking me of the most is the fact that if i had errors it would make more sense, however there aren't any but no menu.  Please any help is much appreciated i'm trying to practice this drop down menu mess and get it under my belt seems as though i can't go through and get it to work on first try, it shouldn't take me an hour and half to make one and this one has stumped me completely.

    For a computer running Mac OS X, move the cursor to the very top of the computer's screen, click on Store in the menu bar, and choose Authorize this Computer.
    For a computer running Windows, press the Alt and S keys and choose Authorize this Computer, or click here, follow the instructions, click on Store in the menu bar, and choose Authorize this Computer.
    (123518)

  • Itunes files won't show up in the menu

    to import music into a movie, i found out that the dropdown menu only shows me as available, the preinstalled Apple audio effects and short audio files in iMovie. How do i make other forlders and itunes files available to imovie?
    imovie 11
    mac osx 10.6.8

    This continues to get crazier by the minute!  I completely deleted the event mentioned above and started from scratch.  Impoerted a few clips into this new event and most played properly...but only for a few minutes!  I got a call and afterward when I attempted to play clips in the timeline that had just played a minute ago there is now nothing happening!
    Here's what they look like on the screen:
    Some of them show an audio waveform but most do not.  Does ANYONE have any idea what to do here????
    I'm dead in the water!!!!!!!!
    Here's my timeline:
    Just a minute prior to taking this shot the all played perfectly and then they were gone!

  • When i click on 'Show all in Finder' after searching for anything on spotlight, NOTHING happens! No Finder window opens up and the spotlight dropdown menu just shuts! Please help!

    When i click on 'Show all in Finder' after searching for anything on spotlight, NOTHING happens! NO Finder window opens up and the spotlight dropdown menu just shuts! Please help!

    I'm having the same problem in other places as well, for example when i downloaded Easyfind right now, clicking the small magnifying glass button on the right of the file name (shown below) would usually open up finder highlighting the file, but now nothing happens when i click on that button!
    Is there a solution for this, as this was a very useful feature which i used ALL the time?

  • The Preview Edit menu won't show the signature insertion option. So, how do I insert a signature???

    The Preview Edit menu won't show the signature insertion option. So, how do I insert a signature???

    Thank you, Eric. This worked, but only after an inordinately long time. I wonder why that was.

  • Home Sharing Problem: Import Button & "Show" Dropdown menu are missing?

    Hi Everyone,
    My wife and I are both running iTunes on Macbook Pros and we are both logged into eachother's iTunes libraries through Home Sharing accounts. However, the Import button on the bottom has disappeared, so has the "Show" dropdown menu that is typically to the left of the Import button on the bottom of the screen when you are in the other person's Music Library. The Show dropdown memu typically displays the options: All and Not in Library. We can play and listen to each other's music, however we can't Import songs. Can anyone help me troubleshoot this problem??
    Thanks,
    Patrick

    To clarify as I have this problem repeatedly here is the description and the cure.
    Sharing is enabled in the sharing tab.  Other computers can see this computers library but cannot import.  The icon for the home sharing doesn't show the "house" - it just shows some musical notes.
    This means that home sharing is not enabled.  JUST SHARING.
    In Itunes 11 use: File/Menu/Home Sharing/Turn on Home sharing.
    But you are not done.
    When home sharing shows up now in the left panel - click it. The right panel will present a sign on for your apple ID.  Sign on and enable home sharing.
    Then you will be able to import form the target computer again.
    It gets disabled with OS upgrades and sometimes with iTunes updates.

  • I'm using Windows Illustrator CS4, and i cant find the artboard menu pallate. Its not showing under Window Dropdown menu either.

    I'm using Windows Illustrator CS4, and i cant find the artboard menu pallate. Its not showing under Window Dropdown menu either. How can i locate it or toggle it to turn on again?

    I'm not sure what artboard view is, sorting and naming artboards is not available in CS4 either, sorting however is possible via script workaround,
    Introducing: re Arrange Artboards v2 Script

  • On G4 System Preferences, Network, I have a dropdown menu that says that my settings have been altered by another application and won't go away when I click ok, I can't work in the Network preferences and it won't respond to be closed.  Have to Force Quit

    On G4 Powerbook System Preferences, Network, have a dropdown menu that says this has been configured by another application.  when press OK it keeps coming on & can't work in System Preferences.  It won't even respond to Quit System Preferences and I have to Force Quit to close System Pref.
    Any ideas?

    Look at this link. http://discussions.apple.com/thread.jspa?messageID=9372513
    I did BDAqua's suggestion
    To stop the pop-up, Go to System Preferences: Security. Check the box next to "Require password to unlock each secure system preference." Then lock Security.
     Cheers, Tom

Maybe you are looking for

  • My Iphone 4 asked to update a fix to IOS 7 and it is completely locked the only thing on the screen is an apple and it will not mayy up to my Itunes???

    I have an Iphone 4 just recently updated to IOS7 and was successful used all this past week. At aroun midnight my phone aske to update IOS software a fix to bugs on the sofware. Since then my phone has been locked up just showing an apple on the disp

  • Sales Order (VA01)- Addtional Data Tab B Request

    Hi All,, This is sales order(VA01) relevant and I have added the new "ZZFIELD" field in the "Additional data B" which i kept screen painter attributes check box chosen "Input Field" and Input "required". When i am creating sales order(VA01), the mome

  • Issue in creating a SiteMap application

    Hi Experts,     I am working on creating a Sitemap application for our portal users.I am following the below link http://help.sap.com/saphelp_nw73ehp1/helpdata/en/49/e45186272f7517e10000000a42189b/content.htm i have added the com.sap.portal.navigatio

  • Css + icefaces problem

    i am using jse 1.6 jee 1.5 icefaces 1.6 sun app server 9.0. the application works fine until i will hit the back button. The error is: [#|2007-10-08T14:50:56.441+0800|WARNING|sun-appserver-pe9.0|javax.enterprise.resource.webcontainer.jsf.lifecycle|_T

  • Dynamic Modification Rule Counter

    Hello Experts I am using DMR in my project. e.g 1 in 10 , 1 in 20. Inspect 1 and skip 10 or 20 etc. WHat I would like to know where I am during inspection i.e. counter , at a particular point in time how many lots are skipped so that I know when next