H:panelGrid question

Hello,
I have a simple panelGrid question that is driving me nuts and I'm sure I am missing something completely obvious and ridiculous.
I have a simple panelGrid as follows:
<h:panelGrid columns="3">
     <h:inputText id="docs" value="Document Name" disabled="true" style="width:100px"/>
        <h:outputText value=""/>
     <h:graphicImage id="magnify" value="#{facesContext.externalContext.requestContextPath}/images/magnify.gif"/>
</h:panelGrid>     But when the component displays on screen, the inputText and the picture are displayed right next to one another. I simply want to put a little gap in between the two so they are not on top of one another. However, the outputText in the middle seems to just be ignored. Is there a better way to do this?

I figured there was something stupid I was forgetting. I tried padding, but it obviously padded all around the inputText, when I just wanted it on the right. Margin worked perfect. Thanks.

Similar Messages

  • PanelGrid questions

    1) I can see that panelGrid has an attribute of footerClass, headerClass.How can i specify the footer and header contents, i guess via facets ?
    2) And this leads to another question :
    How can i know if a jsf tag has facets or support any other nested tags ?
    I know panelGrid support nested h:panelGroup, but i wonder what other nested tags are supported inside panelGrid tag ?
    3) And basing on the attributes reference im having, i suppose cell merging (colspan) is not supported, am i correct ?
    4) Is panelGrid replaceable by plain html table ? I suppose panelGrid really eases us without all the tr and td tags, eases us in even / odd rows / columns css class specification, etc. But if i want to have fuller control of the table, like the width of each column, cell merging, i'd have to switch to HTML table, am i correct ?

    So it 'works now' though not exactly as I expected it would/should.
    I discovered that if in the GridBean I have a setter, then I lose all my carefully configured HtmlGridPanel on the postback. If I get rid of the setter then it continues to show up on the post back. However without the setter than it can't restore view so when I ask for that bean while processing the page (via: application.getVariableResolver().resolveVariable(context, "GridBean")) then the gridBean that I get back has a null questions member, which is annoying since I then don't have a handle on what people actually put into my htmlInputFields. The solution to that is that you can valueBind the input fields when you dynamically create them to a hash in the gridBean object, which has a setter and a getter and thus gets set with the correct data in restore view and you can access it while processing the page. For example when I am configuring my HtmlGridPanel in code and making the HtmlInputText objects for it, I can do something like:
    HtmlInputText input = (HtmlInputText)application.createComponent(HtmlInputText.COMPONENT_TYPE);
    input.setId(QUESTION_PREFIX + questionNumber);
    literalQuestions.add(input);
    input.setValueBinding("value", // param to bind to
    application.createValueBinding("#{GridBean.answers[" + questionNumber + "]}"));
    and then when processing the request I get access to the gridBean object, which will have a HashMap<Long,String> populated with the answers to the questions, keyed by questionNumber.
    Big pain in the ass to figure out as a newbie to JSF (if not to java, heh) but hopefully this helps someone else.

  • JSF question

    We have simple template, which have four �c:import� directive to dynamically include pages which present different areas on the screen.
    On one from the imported JSF pages, let�s say <c:import url="/pages/tiles/tree.jsp"/>
    we have a tree leaf selected listener attached to the tree element WGF.
    In listener code we need dynamically add elements to other JSF page, let�s say it�ll be
    <c:import url="/pages/index.jsp"/>
    The question is: how could we make it?
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1251"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@ taglib uri='/WEB-INF/security.tld' prefix='security'%>
    <security:enforceLogin loginPage='/faces/pages/wrapper/registrationWR.jsp'
    errorPage='/faces/pages/wrapper/registrationWR.jsp'/>
    <f:view>
    <h:panelGrid columns="1" width="100%" border="1" frame="none">
    <f:facet name="header">
    <f:subview id="header">
    <c:import url="/pages/tiles/top.jsp"/>
    </f:subview>
    </f:facet>
    <f:facet name="footer">
    <h:panelGroup>
    <af:panelHorizontal halign="center">
    <f:subview id="footer">
    <c:import url="/pages/tiles/bottom.jsp"/>
    </f:subview>
    </af:panelHorizontal>
    </h:panelGroup>
    </f:facet>
    <afh:tableLayout width="100%" borderWidth="3" cellSpacing="10"
    halign="center">
    <afh:rowLayout>
    <afh:cellFormat height="100%" width="30%">
    <af:panelHorizontal halign="center">
    <f:subview id="tree">
    <c:import url="/pages/tiles/tree.jsp"/>
    </f:subview>
    </af:panelHorizontal>
    </afh:cellFormat>
    <afh:cellFormat width="70%">
    <af:panelHorizontal halign="center">
    <f:subview id="body">
    <c:import url="/pages/index.jsp"/>
    </f:subview>
    </af:panelHorizontal>
    </afh:cellFormat>
    </afh:rowLayout>
    </afh:tableLayout>
    </h:panelGrid>
    </f:view>
    Currently we could get access only elements inside template JSF page, using next simple code:
    try {
    ArrayList paramList = myObject.getparamlist();
    FacesContext context = FacesContext.getCurrentInstance();
    List list = context.getViewRoot().getChildren();
    Iterator itr = list.iterator();
    while (itr.hasNext()) {
    HtmlPanelGrid panel = (HtmlPanelGrid)itr.next();
    list = panel.getChildren();
    itr = list.iterator();
    while (itr.hasNext()) {
    Object object = itr.next();
    Class cl = object.getClass();
    System.out.println(cl.getName());
    } // while
    } // while
    Also it�ll be very nice if it�ll be possible not only add elements to the same screen but make navigation to other JSF template and add elements to one from JSF pages that template use.

    This guy seemed to have a rough solution:
    http://forum.java.sun.com/thread.jspa?forumID=427&threadID=558772
    Illu
    (And please don't pretend to be someone else - ie Dravid - to bump your posts up the forum. Thanks.)

  • How do i set CollapsiblePanel text to the contents of a panelGrid?

    hi, I have this line of text in a panelGrid and I would like to have displaying in the text attribute of my collapsiblePanel, but I have no idea how to accomplish this
    panelGrid text
    <f:panelGrid id="text1" border="0" columns="8" cellspacing="2" >
         <f:outputLabel value="Case Number" />
         <f:outputLabel value="123 style="color: #660000;" />
         <f:outputLabel value="Default" style="color: #660000;" />
         <f:image id="lockImage" value="../images/lock.gif"> </f:image>
         <f:outputLabel value="Locked by" />
         <f:outputLabel value="user" style="color: #660000;" />
        </f:panelGrid>{code}
    collapsiblePanel
    {code}<f:collapsiblePanel
         id="case1"
         tooltip="Overview"
         text="Overview "  //NEED TO DISPLAY PANELGRID STUFF HERE
         headerPositionCollapsed="horizontal"
         panelHeaderCollapsedStyleClass="panelHeaderCollapsed"
         panelHeaderExpandedStyleClass="panelHeaderExpanded"
         panelStyleClass="panel">
         <iframe name="Overview" height="225" frameborder="0" scrolling="no" style="width: 900px;" src="./caseOverview.jsf" align="middle"/>
    </f:collapsiblePanel>{code}
    Edited by: icecreamman117 on Jul 29, 2008 9:48 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    What is it, the f: taglib which you're using? That doesn't seem to be part of the standard Sun JSF implementation. There is also no such tag with a name like "collapsiblePanel" in the standard Sun JSF implementation.
    It might help to consult the documentation of the JSF implementation or component library which you're using and look around at their homepage if they doesn't have a forum or mailinglist where you can post related questions in.

  • Javascript and CSS questions

    Just two quick questions. First, I am trying to change the value of one of my backing bean properties using js. It is a boolean and what I tried was:
    onfocus="{ ${displayOnly} = true}"
    however, as expected, this tries to set the actual value of displayOnly (false) to true which cant be done. How do I set the variable displayOnly to true?
    My other questions is about css. I have a panelgrid which has many inputText and labels. Using a styleclass on the panelgrid changes the styles of the labels but the inputText stay the same. Is there a way to write a subclass of my panelgrids style (pgstyle)? I tried .pgstyle t:inputText and .pgstyle #t:inputText but neither worked. As you can see, I have no idea what I am doing when it comes to subclassing style classes so I would appreciate any help I can get.

    Just two quick questions. First, I am trying to
    change the value of one of my backing bean properties
    using js. It is a boolean and what I tried was:
    onfocus="{ ${displayOnly} = true}"
    however, as expected, this tries to set the actual
    value of displayOnly (false) to true which cant be
    done. How do I set the variable displayOnly to true?JavaScript is executed on the client side. Your backing bean lives on the server side. So the only way to modify the backing bean properties is when the server is processing a request. You can use JavaScript to help define what this request will be and even invoke it, but you cannot directly change the backing bean via JavaScript.
    >
    My other questions is about css. I have a panelgrid
    which has many inputText and labels. Using a
    styleclass on the panelgrid changes the styles of the
    labels but the inputText stay the same. Is there a
    way to write a subclass of my panelgrids style
    (pgstyle)? I tried .pgstyle t:inputText and .pgstyle
    #t:inputText but neither worked. As you can see, I
    have no idea what I am doing when it comes to
    subclassing style classes so I would appreciate any
    help I can get.CSS is interpreted on the client side. The inputText components are interpreted on the server side; they generate HTML which is what the browser sees.
    You need to have a solid understanding of what is executed where in order to develop web applications.

  • GUI/Formatting question

    I have a page where I want to display an image at the top, a scrollable panel in the middle, and a button at the bottom. I get all of these components, but they are all inside of the scroll panel and I don't understand why.
    Here is the code:
    <f:view>
            <html lang="en-US" xml:lang="en-US">
                <head>
                    <meta content="no-cache" http-equiv="Cache-Control"/>
                    <meta content="no-cache" http-equiv="Pragma"/>
                    <title>DisplayDiagnosis Title</title>
                    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
                </head>
                <body style="-rave-layout: grid">
                    <h:form binding="#{DisplayDiagnosis.form1}" id="form1">
                        <h:panelGrid binding="#{DisplayDiagnosis.centeringGridPanel}" columns="1" id="centeringGridPanel">
                            <h:graphicImage binding="#{DisplayDiagnosis.image1}" id="image1" value="resources/suresmileLogo.JPG"/>
                            <h:panelGrid binding="#{DisplayDiagnosis.diagnosisPanel}" columns="3" footerClass="" id="diagnosisPanel">
                                <div style="height: 250px; width: 400px; overflow: auto">
                                </div>
                            </h:panelGrid>
                            <h:panelGroup binding="#{DisplayDiagnosis.groupPanel1}" id="groupPanel1" style="height: 50px; width: 100px">
                                <h:commandButton binding="#{DisplayDiagnosis.button1}" id="button1" onclick="history.back(); return false" value="Back"/>
                            </h:panelGroup>
                        </h:panelGrid>
                    </h:form>
                </body>
            </html>
        </f:view>How should this look in order to get the image above the scroll panel and the button below it?
    Note that I tried surrounding the DiagnosisPanel (the only one I want to scroll) with the div tag, but that didn't do what I expected.
    In short, how do I get the DiagnosisPanel to be the only thing that scrolls?
    Thanks.

    Well that didn't come out too well (the code tag didn't seem to work right).
    Here is my question posted on another site (JavaRanch) where everthing can be read correctly:
    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=82&t=000546

  • Scope of CSS styleClass in h:form, h:panelGrid

    This may be more of a HTML/CSS question, but still relevant to JSF app design/impl. Basically, I would like to know whether container's styleClass is inherited by nested components. For example:
    <h:form styleClass="formClass">
    <h:panelGrid styleClass="panelGridClass" columns="2">
    <h:outputText styleClass="output1Class"/>
    <h:outputText styleClass="output2Class"/>
    </h:panelGrid>
    </h:form>
    If I specify font style/color in "formClass" and I am content that all text inside the form will look the same, can I omit styleClass statements in nested components - two outputText's and panelGrid?
    In general, what is the scope of styleClass declarations?
    thanks
    -nikita

    Now the full answer....
    An Html/Css Forum is a better place to ask this question.
    I made some tests and the style is inherited by the nested components.
    I think the scope of the styleClass is until another style overrides the previous one.

  • Window autosizing question

    Hello! I have a question:
    When dialog window opens (action="dialog:someWindow") and size parameters is not set, window size calculates automatically. I have a page, which opens in dialog mode:
    <af:commandButton text="Show panel grid" actionListener="#{backing_dialog_window.actionShowPanelGrid}"/>
    <h:panelGrid columns="2" width="100%"
    columnClasses="columnLeftAlign30,columnLeftAlign70"
    rendered="#{backing_dialog_window.act == 1}">
    ... some content
    </h:panelGrid>
    public void actionShowPanelGrid(ActionEvent ev) {
    this.act = 1;
    When I press button, method actionShowPanelGrid sets act equals 1, panelGrid becomes visible. I should increase page height. How can I calculate it? The better way to solve this problem is call some function, which resizes this window automatically. How can I do this?

    When working with javascript in multiple windows like this, it is very easy to get lost.
    I think what you missed in accessing your applet was a "document" object.
    There are a couple of hints for writing javascript:
    1 - you can type javascript into the address bar like so:
    javascript:alert(window.opener)
    You then follow the path to the object you want as long as you can. Build it up slowly, so you see where the chain breaks.
    javascript:alert(window.opener.opener)
    javascript:alert(window.opener.opener.document)
    javascript:alert(window.opener.opener.document.applets)
    javascript:alert(window.opener.opener.document.applets.length)
    2 - General design: Don't reference stuff on other pages - call functions on the page only.
    Rather than calling window.opener.opener.document.applets[0]. (ie referring to the applet from window 3)
    do this
    window.opener.opener.saveApplet() (from window 3 call the saveApplet function on window1)
    and on the first page have
    <script>
    function saveApplet(){ 
    document.applets[0]. ...
    </script>
    This provides a sort of interface for other pages to use, so they don't have to refer to details on the page.
    If you change the layout of the page, or the name of the applet etc etc, you only have this one place to modify it. It can save you a nightmare in javascript errors later on.
    Good luck,
    evnafets

  • Questions on Print Quote report

    Hi,
    I'm fairly new to Oracle Quoting and trying to get familiar with it. I have a few questions and would appreciate if anyone answers them
    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    Thanks and Appreciate your patience
    -PC

    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    I think I posted it in one of the threads2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    Yes, your understanding is correct.3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    No, there is no conc program getting called, you can directly call a report in a browser window, Oracle reports server will execute the report and send the HTTP response to the browser.4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    This is detailed in many threads.Thanks
    Tapash

  • Satellite P300D-10v - Question about warranty

    HI EVERYBODY
    I have these overheating problems with my laptop Satellite P300D-10v.
    I did everything I could do to fix it without any success..
    I get the latest update of the bios from Toshiba. I cleaned my lap with compressed air first and then disassembled it all and cleaned it better.(it was really clean insight though...)
    BUT unfortunately the problem still exists...
    So i made a research on the internet and I found out that most of Toshiba owners have the same exactly problem with their laptop.
    Well i guess this is a Toshiba bug for many years now.
    Its a really nice lap, cool sound (the best in laptop ever) BUT......
    So I wanted to make a question. As i am still under warranty, can i return this laptop and get my money back or change it with a different one????
    If any body knows PLS let me know.
    chears
    Thanks in advance

    Hi
    I have already found you other threads.
    Regarding the warranty question;
    If there is something wrong with the hardware then the ASP in your country should be able to help you.
    The warranty should cover every reparation or replacement.
    But I read that you have disasembled the laptop at your own hand... hmmm if you have disasembled the notebook then your warrany is not valid anymore :(
    I think this should be clear for you that you can lose the warrany if you disasemble the laptop!
    By the way: you have to speak with the notebook dealer where you have purchased this notebook if you want to return the notebook
    The Toshiba ASP can repair and fix the notebook but you will not get money from ASP.
    Greets

  • Question regarding NULL and forms

    Hi all, i have a survey that im working on that will be sent via email.
    I'm having an issue though. if i have a multiple choice question, and the user only selects one of the choices, all the unselected choices return as NULL. is there a way i can filter out anytihng that says "NULL" so it only shows the selected options?
    thanks.
    here is the page that retrieves all the data. thanks
    <body>
    <p>1) Is this your first visit to xxxxxxx? <b><%=request.getParameter("stepone") %></b>
    </p>
    <p> </p>
    <p>2) How did You Learn About xxxxxxx?</p>
    <p><b><%=request.getParameter("steptwoOne") %></b>
      <br>
        <b><%=request.getParameter("steptwoTwo") %></b>
      <br>
        <b><%=request.getParameter("steptwoThree") %></b>
      <br>
        <b><%=request.getParameter("steptwoFour") %></b>
      <br>
        <b><%=request.getParameter("steptwoOther") %></b>
    </p>
    <p> </p>
    <p>3) What was your main reason for visiting xxxxx?</p>
    <p><b><%=request.getParameter("stepthreeOne") %></b>
        <br>
          <b><%=request.getParameter("stepthreeTwo") %></b>
        <br>
          <b><%=request.getParameter("stepthreeThree") %></b>
        <br>
          <b><%=request.getParameter("stepthreeFour") %></b>
        <br>
          <b><%=request.getParameter("stepthreeOther") %></b>
    </p>
    <p>4) did you find the information you were looking for on this site?</p>
    <p><b><%=request.getParameter("stepfour") %>
    <br>
    <b><%=request.getParameter("stepfourOther") %></b>
    </b></p>
    <p>5) Do you plan on using this website in the future?</p>
    <p><b><%=request.getParameter("stepfive") %></b></p>
    <p>6) What is your gender</p>
    <p><b><%=request.getParameter("stepsix") %></b></p>
    <p>7) What is your age group</p>
    <p><b><%=request.getParameter("stepseven") %></b></p>
    8) Would you like to take a moment and tell us how we can improve your experience on xxxxxxxxxx?
    <p><b><%=request.getParameter("stepeightFeedback") %></b></p>

    i was messing around and came up with this. it doesnt remove the null, but if it is null it adds ABC beside it. so i think i might be getting close. i just need to figure out how to replace the null.
    code]
    <b><%=request.getParameter("steptwoFour") %></b>
         <% if (request.getParameter("steptwoFour") == null ) {
         %>
         <% out.print("abc"); %>
         <% }
         %>

  • Anyone know how to remove Overdrive books from my iphone that have been transferred from my computer? They do not show up on itunes. I see a lot of answers to this question but they all are based on being able to see the books in iTunes.

    How do I remove Overdrive books from the library that were downloaded onto my computer then transferred to my iphone? The problem is that they do not show up in iTunes.
    I see this question asked a lot when I google, but they always give answers that assumes you can find the books in iTunes either under the books tab, or the audio books tab or in the music. They do not show up anywhere for me. They do not remove from the app like the ones I downloaded directly onto my iphone.the related archived article does not answer it either.  I even asked a guy working at an apple store and he could not help either.   Anybody...?
    Thanks!

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Basic question

    Hello, i have a basic question. if i have defined 2 fields in a cube or a dso:
    Name Quantity
    and from the external flat file i get some characters for my quantity field. would my load fail?  for standard dso and for write optimized?
    NOTE: quantity field is a keyfigure defined as numeric.
    and the load coming in has "VIKPATEL" for Quantity field and not numbers.
    thanks

    Hi Vik,
    Yes, the load will fail.
    May be you coud first load this data into BW (into PSA) and set both fields as characters fields. Then you can create DSO, do transformation from this PSA to the DSO, and put your logic as to what do you want to do with those Quantity that is not number (e.g. convert to 0, or 'Not assgined', etc).
    You can use transfer rule, or a clean up ABAP code in the start routine.
    Hope this helps.

  • Mid 2010 15" i5 Battery Calibration Questions

    Hi, I have a mid 2010 15" MacBook Pro 2.4GHz i5.
    Question 1: I didn't calibrate my battery when I first got my MacBook Pro (it didn't say in the manual that I had to). I've had it for about a month and am doing a calibration today, is that okay? I hope I haven't damaged my battery? The calibration is only to help the battery meter provide an accurate reading of how much life it has remaining, right?
    Question 2: After reading Apple's calibration guide, I decided to set the MacBook Pro to never go to sleep (in Energy Saver System Preference) and leave it on overnight so it would run out of power and go to sleep, then I'd leave it in that state for at least 5 hours before charging it. When I woke up, the light on the front wasn't illuminated. It usually pulsates when in Sleep. Expectedly, it wouldn't wake when pressing buttons on the keyboard. So, what's happened? Is this Safe Sleep? I didn't see any "Your Mac is on reserve battery and will shut down" dialogues or anything similar, as I was asleep! I've left it in this state while I'm at work and will charge it this afternoon. Was my described method okay for calibration or should I have done something different?
    Question 3: Does it matter how quickly you drain your battery when doing a calibration? i.e is it okay to drain it quickly (by running HD video, Photo Booth with effects etc) or slowly (by leaving it idle or running light apps)?
    Thanks.
    Message was edited by: Fresh J

    Fresh J:
    A1. You're fine calibrating the battery now. You might have gotten more accurate readings during the first month if you'd done it sooner, but no harm has been done.
    A2. Your machine has NOT shut down; it has done exactly what it was supposed to do. When the power became critically low, it first wrote the contents of RAM to the hard drive, then went to sleep. When the battery was completely drained some time later, the MBP went into hibernation and the slepp light stopped pulsing and turned off. In that state the machine was using no power at all, but the contents of your RAM were still saved. Once the AC adapter was connected, a press of the power button would cause those contents to be reloaded, and the machine would pick up again exactly where you left off. It is not necessary to wait for the battery to be fully charged before using the machine on AC power, but do leave the AC adapter connected for at least two hours after the battery is fully charged. Nothing that you say you've done was wrong, and nothing that you say has happened was wrong.
    A3. No, it does not matter.

  • Jabber/WebEx Connect SSO Questions

    I've got a few questions around exactly what needs to be done to get SAML working for our Connect accounts to successfully authenticate from Jabber for Windows, Mac, iPhone, and Android.
    We have both a Meeting Center and Connect account under WebEx using Loose Coupled Integration. Just this past week I enabled SAML for our Meeting Center accounts which went off without a hitch with the exception of Meeting Center integration with Jabber, which is now broken with a message about SSO enabled Meeting Sites not being supported (I think this would maybe be fixed if we had Tight Coupled Integration with our two account?).
    Anyway, my questions are...
    For Windows, I understand all clients will need to be reinstalled with the MSI argument for the SSO_ORG_DOMAIN switch I've read about, is that correct? Are there any other switches needed for the reinstall? 
    How will this work with the Mac and mobile clients? There's obviously no command line options to specify for the installations here, will they just know to kick over to my IdP for authentication once they see an email address that falls under an org with SSO enabled? If so, why does the Windows client need to be completely reinstalled and not just know to find the IdP from the Cloud Connect service like Meeting Center does with the Productivity Tools?
    We're just doing this for our Connect Web IM accounts, not attempting any sort of SSO with the phone accounts/UC integration yet.
    Any ideas on getting the Meeting Center integration into Jabber working again?

    I'd suggest posting your question over on the Jabber Pilot forum, as this forum is specific to Jabber Guest questions:
    https://supportforums.cisco.com/community/4551/jabber-pilot-support
    -jim

Maybe you are looking for

  • Process open items: how to set defaults for the additional selections

    Hi FI experts, Can anyone tell me if it is possible to set defaults for the additional selections in the processing of open items. I am using transaction F-04 (or F-06 or F-07) to post with clearing. When processing the open items I can use additiona

  • Pattern Swatch From Pattern Maker Filter

    Is there a way to copy a new custom Pattern Swatch that you create using the Pattern Maker filter? I have often created a pattern that worked perfect but could only apply it to a layer. I want to be able to save just the custom swatch that patterns c

  • Check reprint

    Hi Gurus, I have manually run the payment for vendor  using F-53 and using the payment document, was trying to create a check and got this msg "The check information alreay exists in check management" then I have created a new check lot and was able

  • Unable to connect to Oracle 9i from Forms 6i

    Hi, I have Oracle 9.2.0 (Personal edition) and Forms 6i installed on a Win2K PC. I am able to connect to the DB from SQLPLUS. But, I am unable to connect to the DB from Forms 6i. Can anyone suggest where am I going wrong and what is that I need to do

  • Lock portrait mode

    Greetings, Perhaps I'm missing something, I've looked for it anywhere I could think. How do you lock portrait mode on this phone? I disabling auto rotate doesn't keep your phone from going into landscape mode. It's a very basic functionality that I'm