PanelFormLayout Alignment inside panelGroupLayout

Hi
Following is the code of my jsff page. It has a panelGroupLayout in the top with two panelHeaders. Each of the panel Header has a panelFormLayout inside it.
When i run this page, the panelFormLayout dont align with each other.
Please suggest a method to fix this.
Thanks in advance.
Code starts here ----
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core">
<af:panelGroupLayout id="pgl1" inlineStyle="pglCompanyProfile"
layout="scroll" halign="left" valign="middle">
<af:navigationPane id="npProfN" hint="bar"
styleClass="AFStretchWidth">
<af:commandNavigationItem text="Company Profile"
id="cniCompProfile"
selected="true"/>
<af:commandNavigationItem text="User Profile"
id="cniUserProfile"
action="UserProfile"/>
</af:navigationPane>
<af:messages id="msgs" inline="true"/>
<af:panelHeader text="Profile Information" id="phProfileInformation"
partialTriggers="soc1 cbSubmit">
<af:panelFormLayout id="pfl1">
<af:spacer id="sp1" height="10"/>
<af:inputText value="#{bindings.Name.inputValue}"
label="#{bindings.Name.hints.label}"
required="#{bindings.Name.hints.mandatory}"
columns="#{bindings.Name.hints.displayWidth}"
maximumLength="#{bindings.Name.hints.precision}"
shortDesc="#{bindings.Name.hints.tooltip}"
id="it3">
<f:validator binding="#{bindings.Name.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.Address1.inputValue}"
label="#{bindings.Address1.hints.label}"
required="#{bindings.Address1.hints.mandatory}"
columns="#{bindings.Address1.hints.displayWidth}"
maximumLength="#{bindings.Address1.hints.precision}"
shortDesc="#{bindings.Address1.hints.tooltip}"
id="it4">
<f:validator binding="#{bindings.Address1.validator}"/>
</af:inputText>
</af:panelFormLayout>
</af:panelHeader>
<af:panelHeader text="Supplier Portal Punch-in Configuration"
partialTriggers="soc1 cbSubmit" id="pb2">
<af:panelFormLayout id="pflPunchIn" partialTriggers="soc1">
<af:spacer id="sp3" height="10"/>
<af:selectOneChoice label="Supplier Portal" id="soc1"
autoSubmit="true"
inlineStyle="vertical-align:middle; text-align:center; white-space:nowrap;"
value="#{pageFlowScope.ProfilePageBean.supPortalValue}"
valuePassThru="true"
valueChangeListener="#{pageFlowScope.ProfilePageBean.supDropDown}">
<f:selectItems value="" id="si1"/>
<af:selectItem label="ISP" value="ISP" id="si2"/>
<af:selectItem label="ESP" value="ESP" id="si3"/>
</af:selectOneChoice>
<af:inputText value="#{pageFlowScope.ProfilePageBean.ispMessagingUrl}"
label="#{bindings.MessagingUrl1.hints.label}"
required="false"
columns="#{bindings.MessagingUrl1.hints.displayWidth}"
maximumLength="#{bindings.MessagingUrl1.hints.precision}"
shortDesc="#{bindings.MessagingUrl1.hints.tooltip}"
id="msgurl"
rendered="#{!pageFlowScope.ProfilePageBean.boolEsp}"
partialTriggers="soc1 cbSubmit">
<f:validator binding="#{bindings.MessagingUrl1.validator}"/>
</af:inputText>
<af:commandButton text="Test iSP URLs" id="cbTestiSP"
rendered="#{!pageFlowScope.ProfilePageBean.boolEsp}"
partialTriggers="soc1 cbSubmit"
actionListener="#{pageFlowScope.ProfilePageBean.testIspMessagingUrl}"/>
<f:facet name="footer">
<!--af:panelGroupLayout id="pgl2" layout="horizontal"
halign="end"
styleClass="AFStretchWidth"></af:panelGroupLayout-->
</f:facet>
</af:panelFormLayout>
<af:panelGroupLayout id="pg2" layout="horizontal"
halign="right">
<af:commandButton actionListener="#{bindings.Rollback.execute}"
text="Cancel" immediate="true"
id="cbCancel">
<af:resetActionListener/>
</af:commandButton>
<af:commandButton text="Submit" id="cbSubmit"
actionListener="#{pageFlowScope.ProfilePageBean.submitProfile}"></af:commandButton>
</af:panelGroupLayout>
</af:panelHeader>
</af:panelGroupLayout>
</jsp:root>

If you mean that the PanelFormLayouts have different label width and different field width, then use the attributes <tt>labelWidth</tt> and <tt>fieldWidth</tt> of the tag <af:panelFormLayout> to set hardcoded equal label widths and equal field widths for both panelFormLayouts.

Similar Messages

  • Want to apply Css to Fields Inside PanelGroupLayout

    I have ADF Fusion Web Application with Jdeveloper 11g
    I have customize skin with my css file
    The Problem i face is that
    All the fields inside panelFormLayout works good with the css i use but when i put them inside panelGroupLayout they differ completely
    This is my css file
    af|panelFormLayout
             font-family: Arial, Helvetica, sans-serif;
          font-size: 12px;
            font-smooth: auto;
            border:solid 1px #6691bb;
            text-align: right;
            background: #f3f9ff;
            font-weight: bold;
    af|panelFormLayout::label-cell 
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            text-align: right;
            color: #333;
            font-weight: bold;
    }i want to apply this style to all fields insied panelGroupLayout how to make this

    Hi,
    use
    af|panelFormLayout af|inputText { ... }
    if you need to apply this to other components, use the following pattern
    af|panelFormLayout af|<component>{ ... }
    Frank

  • CommandButton -- inside panelGroupLayout and without pGroupLayout. Skinning

    There are two cases. af:commandButton inside a panelGroupLayout and af:commandButton alone.
    Case One:
    <af:panelGroupLayout id="pgl1" styleClass="inside">
    <af:commandButton id="ot1" text="Inside Panel Group Layout"/>
    </af:panelGroupLayout>
    Case Two:
    <af:commandButton id="ot1" text="No Panel Group Layout" styleClass="along"/>
    The CSS file has "inside" and "along" classes defined.
    /* For Case One: */
    .inside af|commandButton:text-only {
    background-image: none;
    font-family: 'Trebuchet MS';
    font-size: 1.1em;
    color: #fff;
    height: 30px;
    background-color: #DC4435;
    padding: 0px 7px 0px 7px;
    border: 1px solid #DC4435;
    margin-right: 1px;
    font-weight: bold;
    cursor: pointer;
    /* For Case Two: */
    af|commandButton.along af|commandButton:text-only {
    background-image: none;
    font-family: 'Trebuchet MS';
    font-size: 1.1em;
    color: #fff;
    height: 30px;
    background-color: Aqua;
    padding: 0px 7px 0px 7px;
    border: 1px solid #DC4435;
    margin-right: 1px;
    font-weight: bold;
    cursor: pointer;
    Case One works and new skin is applied to commandButtons inside PanelGroupLayout.
    Case Two doesnot work. Skin is not applied to the commandButton having StyleClass "along". What is wrong with case Two?

    Hi.
    for case two.
    af|commandButton.along:text-only {
    background-image: none;
    font-family: 'Trebuchet MS';
    font-size: 1.1em;
    color: #fff;
    height: 30px;
    background-color: Aqua;
    padding: 0px 7px 0px 7px;
    border: 1px solid #DC4435;
    margin-right: 1px;
    font-weight: bold;
    cursor: pointer;
    }it´s works

  • Web part align inside zone

    I have a 2 2 web part zones (left and right) on one of my pages and a few web parts in them.
    Now the web parts inside the left zone aligns on top beautifully.
    The webpart in the right zone is stubborn and wont budge towards the top.
    How can I fix this? Here is a screenshot.

    Hi GoingForward,
    Thank you for your question .I am trying to involve someone familiar with this topic to further look at this issue.
    Thanks
    Entan Ming
    TechNet Community Support

  • ADF Faces: right aligning a panelGroupLayout

    Here's a simplified ASCII-art version of the layout I want to achieve:
    +--panelBox header ----------------+
    |                                  |
    |                label: $ 1,234.56 |
    |         longer Label:   $  55.66 |
    +-------+-------+------------------+
    | Table | Table | Table header 3   |
    | head1 | head2 |                  |
    +-------+-------+------------------+
    | etc.. + etc.. + etc...           |Here's the JSF code I've composed so far:
          <af:panelBox text="panelBox header" id="pb1"
                       styleClass="AFStretchWidth" type="stretch"
                       showDisclosure="false">
            <af:panelStretchLayout id="psl1" topHeight="50px">
              <f:facet name="top">
                <af:panelGroupLayout id="psl2" layout="horizontal"
                                     valign="top" inlineStyle="AFStretchWidth">
                  <af:panelGroupLayout layout="vertical" halign="end" id="pgl1">
                    <af:outputLabel value="label:" id="ol1"/>
                    <af:outputLabel value="longer label:" id="ol2"/>
                  </af:panelGroupLayout>
                  <af:panelGroupLayout layout="vertical" halign="end" id="pgl3">
                    <af:outputText value="#{bindings.amount1.inputValue}" id="ot8"/>
                    <af:outputText value="#{bindings.amount2.inputValue}" id="ot9"/>
                  </af:panelGroupLayout>
                </af:panelGroupLayout>
              </f:facet>
              <f:facet name="center">
                <af:table value="#{bindings.blah.collectionModel}" var="row"
                          rows="#{bindings.blah.rangeSize}"
                          emptyText="#{bindings.blah.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.blah.rangeSize}"
                          rowBandingInterval="1" rowSelection="single" id="table"
                          columnStretching="column:c5">
                <!-- table contents omitted for brevity -->
                </af:table>
              </f:facet>
            </af:panelStretchLayout>
          </af:panelBox>This is nearly good, but there's one problem. The result looks like this:
    +--panelBox header ----------------+
    |                                  |
    |        label: $ 1,234.56         |
    | longer Label:   $  55.66         |
    +-------+-------+------------------+
    | Table | Table | Table header 3   |
    | head1 | head2 |                  |
    +-------+-------+------------------+
    | etc.. + etc.. + etc...           |The block with the two labels and two amounts isn't aligned to the right. When I try to set the outer <tt><af:panelGroupLayout></tt> to <tt>halign="right"</tt> the result becomes something like this:
    +--panelBox header ----------------+
    |                                  |
    |                  label:        $ |
    |                         1,234.56 |
    |                  longer        $ |
    |                  label:    55.66 |
    +-------+-------+------------------+
    | Table | Table | Table header 3   |
    | head1 | head2 |                  |
    +-------+-------+------------------+
    | etc.. + etc.. + etc...           |I.o.w. the block is aligned to the right, but it also gets compressed, causing undesired line wrapping.
    Question: how do I get the result as desired? I'm using JDeveloper / ADF 11.1.1.3.

    Using a single af:panelGroupLayout and af:panelLabelAndMessages to group each label and outputText together might accomplish what you are looking for. Table removed for the sample below for simplicity.
            <af:panelBox text="panelBox header" id="pb1" styleClass="AFStretchWidth"
                         type="stretch" showDisclosure="false">
              <af:panelStretchLayout id="psl1" topHeight="50px">
                <f:facet name="top">
                  <af:panelGroupLayout id="psl2" layout="horizontal" valign="top"
                                       inlineStyle="AFStretchWidth">
                    <af:panelGroupLayout layout="vertical" halign="end" id="pgl1">
                      <af:panelLabelAndMessage label="label:" id="plam1">
                        <af:panelGroupLayout id="pgl2" layout="horizontal"
                                             halign="right">
                          <af:outputText value="outputtext1"
                                     id="ot8"/>
                        </af:panelGroupLayout>
                      </af:panelLabelAndMessage>
                      <af:panelLabelAndMessage label="longer label:" id="plam2">
                        <af:panelGroupLayout id="pgl4" layout="horizontal"
                                             halign="right">
                          <af:outputText value="outputtext2" id="ot9"/>
                        </af:panelGroupLayout>
                      </af:panelLabelAndMessage>
                    </af:panelGroupLayout>
                  </af:panelGroupLayout>
                </f:facet>
              </af:panelStretchLayout>
            </af:panelBox>

  • Stroke disappears when aligned inside

    AI CS6
    PC HP Z820
    I am following the instructions dutifully on the learn by video (Video2Brain) series for ai. In Chapter 5: Working with Grids and Guides we are instructed to move a stroke to the inside of a grid line during an icon creation exercise.
    When the instructor does it, the stroke appears on the inside. When I do what appears to be exactly what she does, it disappears and the "variable width profile" area greys out. Am I missing something here?
    Stroke inside

    Hmmm still I'm missing something. I went to the appearance panel. I assume that you meant that when the stroke is below the area is disappears rather than apppears. But I tried it either way and still no effect.
    and

  • Center alignment inside JScrollPane

    Hi guys.
    How can I get a JScrollPane to place a table in the center?
    I call scrollPane.setAlignmentY(CENTER_ALIGNMENT); on the JScrollPane object, but when the window is resized the scroll pane is resized along with and the table sticks to the left side of the scroll pane and not shifts to the center.
    Thanks a lot.
    Edmond.

    This is how I generally center the view in a scroll pane. Hope it helps.
        public void centerView(final JScrollPane scrollPane) {
         scrollPane.revalidate();
         scrollPane.repaint();
         SwingUtilities.invokeLater(new Runnable() {         @Override
             public void run() {
              Dimension portSize = scrollPane.getViewport().getSize();
              Dimension viewSize = scrollPane.getViewport().getView()
                   .getSize();
              scrollRectToVisible(new Rectangle(
                   (viewSize.width - portSize.width) / 2,
                   (viewSize.height - portSize.height) / 2,
                   portSize.width, portSize.height));         }
        }Piet

  • Text alignment inside custom text frame

    I created a custom text frame by combining a triangle and a rectangle using Pathfinder->Add but when I added text, this is how it looked --  but I wanted it to look this way.

    Ketchapay2 wrote:
    Thanks! I'll try that now. UPDATE: When I applied rounded corners, it also rounded the pointer which is supposed to be sharp.
    Well, that used to work, I think.
    In any case, I just tried something else and it seems to work. Make the round corner text frame and the the triangle as you did before. Put the triangle BEHIND the text frame and make the shape. There is however, another potential problem to this technique -- the text will want to flow into the triangle area. I don't think this is escapable without either putting the text into a seond rectangular frame in front, or adding an empty frame in the triangular area and applying text wrap to push the text back into line.
    Peter

  • Right aligned buttons in panelFormLayout footer

    ADF 11g
    Hello
    I do you get right aligned buttons in the footer of a panelFormLayout ?
    Regards
    Paul

    Paul,
    How about wrapping your buttons inside panelGroupLayout and setting halign property to right?
    Sample:
    <f:facet name="footer">
       <af:panelGroupLayout layout="horizontal" id="pgl1" halign="right">
           <af:commandButton id="button1"  ... />
           <af:commandButton id="button2"  ... />
       </af:panelGroupLayout>
    </f:facet>Sireesha
    Edited by: Sireesha Pinninti on Sep 22, 2009 3:50 AM

  • Why is align stroke inside and outside not working correctly.

    I'm trying to add a stroke that's aligned to the outside of my path.  It appears to be offsetting the stroke *and* moving achor points at the same time.  It does the same kind of thing when I align the stroke to the inside.  It is fine when i align the stroke to center.  Please see my screenshots.  The one that is offset to the top-left is the align-inside one.  Why is this happening?  How do I fix it?  Help!

    It's also here

  • Alignment with showDetailHeader,panelFormLayout, labelAlignment="start"

    Jdev 11.1.1.2.0:
    I want to align input fields among multiple showDetailHeaders.
    My jsf page's fragment is as follows:
    <af:showDetailHeader disclosed="true" id="sd1" text="Section1">
    <af:panelFormLayout id="pfl8" labelAlignment="start">
    <af:inputText label="label" id="it9"/>
    <af:inputText label="longer lable" id="it13"/>
    </af:panelFormLayout>
    </af:showDetailHeader>
    <af:showDetailHeader disclosed="true" id="sdh5" text="Section 2">
    <af:panelFormLayout id="pfl9" labelAlignment="start">
    <af:inputText label="looong label" id="it41"/>
    <af:inputText label="veery looooong label" id="it42"/>
    </af:panelFormLayout>
    </af:showDetailHeader>
    The problem is that the 4 input fields are not inlign because their labels have different lenghts. Adding a panelFormLayout aligns the input fields within one showDetailHeader but not among the two showDetailHeaders.
    How can I have properly aligned input fields but still the ability to hide/show some of them?
    thanks

    Hi,
    I think that by setting the properties "field size" and "label size" to be equal on both panelFormLayouts your problem will be solved.
    Let me know if you have any problems.
    Gabriel.

  • Aligning labels and lovs in a proper order?

    Hi,
    i have 3 panelgroupLayouts plg1, plg2 and plg3 with Halign:center and layout:horizontal.
    Under each panelgroupLayout one output label and one af:selectOneChoice are there.
    Under plg1; label: empno
    Under plg2; label: employeeName
    Under plg1; label: empadd
    bcoz of this my lovs and labels are not vertivally aligned in the same line.
    How to arrange these all labels and all socs in one vertical order to make the look n feel neat?
    Any suggestions will be really useful?
    Thanks.

    Then put the panelFormLayout inside panelGroupLayout and set its halign to "center".
    here is an example.
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <af:document title="untitled2.jsf" id="d1">
        <af:messages id="m1"/>
        <af:form id="f1">
          <af:panelGroupLayout id="pgl1" layout="vertical" halign="center">
            <af:panelFormLayout id="pfl1">
              <af:inputText value="#{bindings.DepartmentId.inputValue}" label="#{bindings.DepartmentId.hints.label}"
                            required="#{bindings.DepartmentId.hints.mandatory}"
                            columns="#{bindings.DepartmentId.hints.displayWidth}"
                            maximumLength="#{bindings.DepartmentId.hints.precision}"
                            shortDesc="#{bindings.DepartmentId.hints.tooltip}" id="it1">
                <f:validator binding="#{bindings.DepartmentId.validator}"/>
                <af:convertNumber groupingUsed="false" pattern="#{bindings.DepartmentId.format}"/>
              </af:inputText>
              <af:inputText value="#{bindings.DepartmentName.inputValue}" label="#{bindings.DepartmentName.hints.label}"
                            required="#{bindings.DepartmentName.hints.mandatory}"
                            columns="#{bindings.DepartmentName.hints.displayWidth}"
                            maximumLength="#{bindings.DepartmentName.hints.precision}"
                            shortDesc="#{bindings.DepartmentName.hints.tooltip}" id="it2">
                <f:validator binding="#{bindings.DepartmentName.validator}"/>
              </af:inputText>
              <af:inputText value="#{bindings.ManagerId.inputValue}" label="#{bindings.ManagerId.hints.label}"
                            required="#{bindings.ManagerId.hints.mandatory}"
                            columns="#{bindings.ManagerId.hints.displayWidth}"
                            maximumLength="#{bindings.ManagerId.hints.precision}"
                            shortDesc="#{bindings.ManagerId.hints.tooltip}" id="it3">
                <f:validator binding="#{bindings.ManagerId.validator}"/>
                <af:convertNumber groupingUsed="false" pattern="#{bindings.ManagerId.format}"/>
              </af:inputText>
              <af:inputText value="#{bindings.LocationId.inputValue}" label="#{bindings.LocationId.hints.label}"
                            required="#{bindings.LocationId.hints.mandatory}"
                            columns="#{bindings.LocationId.hints.displayWidth}"
                            maximumLength="#{bindings.LocationId.hints.precision}"
                            shortDesc="#{bindings.LocationId.hints.tooltip}" id="it4">
                <f:validator binding="#{bindings.LocationId.validator}"/>
                <af:convertNumber groupingUsed="false" pattern="#{bindings.LocationId.format}"/>
              </af:inputText>
            </af:panelFormLayout>
          </af:panelGroupLayout>
        </af:form>
      </af:document>
    </f:view>

  • How do I right align the component af:navigationPane?

    First I should say that I use Jdeveloper Studio Edition Version 11.1.1.0.1.
    I have a template that in one place in the template contain these components
    <afh:cellFormat halign="right">
    <af:navigationPane>
    <af:commandNavigationItem/>
    <af:commandNavigationItem/>
    <af:commandNavigationItem/>
    <af:commandNavigationItem/>
    </af:navigationPane>
    </afh:cellFormat>
    I want to right align the cellformat and navigationPane which has the hint property set to bar. I have tried to set the Halign property of the cellFormat to right and if I have an outputText inside the cellformat it gets right aligned so I guess that works but I cant get the commandNavigationItems to right align inside the navigationPane. I have tried to set the the text-align:right; in the navigationPane but that doesn´t work. The only thing that seems to work is to set the width of the last cellformat but since the width of one of the commandNavigationItems varies it isnt a good solution either. Can´t right alignment be done with a navigationPane? Should I choose some other component instead? In case I could use another component instead, which component has similar functionality and can be right aligned?
    Atlantic Viking
    Edited by: Atlantic Viking on Feb 3, 2009 7:22 AM

    Hi,
    I have tried the sample for this :
    <af:panelGroupLayout id="pgl41" layout="horizontal" halign="right">
    <af:navigationPane id="np1" hint="tabs">
    <af:commandNavigationItem id="cn1" text="Test1"/>
    <af:commandNavigationItem id="cn2" text="Test2"/>
    <af:commandNavigationItem id="cn3" text="Test3"/>
    <af:commandNavigationItem id="cn4" text="Test4"/>
    </af:navigationPane>
    </af:panelGroupLayout>
    It works fine.
    Is it af:navigationPage(new tag) or af:navigationPane.

  • Align Grid Lines in chart

    Hi ......
    I am generating a line chart using an xml file...I am setting
    the interval as 250 on X Axis.....
    And I am using a repeated square image as a background.
    Intention is to have that square aligned inside the grid lines.....
    The problem is that the chart data is dynamic... and when the
    no of plottable values are more , then it takes the grid interval
    automatically as 500 and not 250 as the chart gets displayed in the
    same width.........Due to which the grid squares change and the
    alignment to the image gets disturbed.......
    I need to set the width of the chart based on the number of
    values in the xml in such a way that the grid always comes at 250
    and the image is properly aligned in the grid lines......
    Please help me in this regard....
    Or suggest me some other way to achieve the same.....

    I know that I can control the origin of the rulers, but when I change that, the grid lines do not change, which is quite annoying.
    Depends on which version of Illustrator you are using.
    In recent versions turn on global rulers, then change the rulers origin in order to position the grid.

  • How to Get two divs to consistantly align with one another?

    Hi I know that this is a newbie question, but I am trying to get two div tags to align right next to each other.  I do not understand what the problem is,
    since I did it with my first web page, without any problems.  This time the two div tags line up in some kind of weird step formation, and not neatly side by side. 
    Any help would be great! the CSS is below: I am trying to get #newsColumn (left) and #events (right) to properly align inside of #contentBackground
    #contentBackground {
        background-image: url(images/pages/pages_content_s1.png);
        background-repeat: repeat-y;
        overflow: auto;
        margin: 0px;
        padding: 0px;
        width: auto;
    #newsColumn {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        color: #000;
        width: 500px;
        margin: 0px;
        float: left;
    #events {
        clear: both;
        float: right;
        width: 500px;
    I have tried many different combinations, floats and clears.  Nothing is working and I am at my wits end! Thanks in advance for your help

    Use floats.  See code & demo below:
    http://alt-web.com/DEMOS/3-CSS-boxes.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

Maybe you are looking for

  • My Facebook and skype freezes all the time

    I have to charge my iphone5 twice a day bad batterie life

  • Solution to Lightroom 3 slow metadata entry?

    Hi, I've reported this as a bug, but I hope someone has a workaround. Metadata entry in Lightroom 3 is VERY slow (wasn't a problem at all in Lightroom 2).  When I enter a field (not all fields but most of them) the scrollbar goes down and then back u

  • List of records in one field

    Hi All, I have a requirement which I am not sure if can be done. To simply the stuff, assume I have a field which gives me the PO number. I have a VO which has some query in the results table based on that PO. Now I need that PO field to be such that

  • WebInterface Select Variable Value

    Hi, In the Web Interface for the component Select Variable value,if there is planning level mentioned in the attributes.Does that make any difference to the Variable value. Points will be assigned. Thanks, Subha

  • Making Windows Applications with Java

    Hello, I have some experience with Java, I have programmed in it for two years and I was wondering how I would be able to create windows applications coding in Java. I know it is possible to do this with Visual Studio and C# but I wanted to know what