ADF Tree 11g column 100% to fit the avilable space in af:panelCollection

Hi All,
I want to stretch the tree column to fit all the available space in af:panelCollection. I ve changed its InlineStyle to width:100% but its is suggesting to use StyleClass to AFStretchWidth. I tried both the options but didn't achieve desired output.
Any hint or suggestion will be highly appreciated.
Thanks in advance.
Best Regards
Bilal
Edited by: Bilal on Oct 3, 2011 7:41 PM

Hi All,
I have tried various options but in vain.
A clarification is that I have a page having ADF query panel with tree table. I don't want to show the other columns in the result. Just tree is enough to display the contents.
I want to maximize the tree column to fit into the available space of af:panelCollection.
Option 1. I set the styleClass to AFStretchWidth for af:column of the ADF tree. It didn't work.
Option 2. I encapsulated af:column of the tree into the f:center facet of af:panelStretchLayout and set af:panelStretchLayout styleClass to AFStretchWidth. The af:column of the tree disappeared. No output.
Option 3. I encapsulated af:treeTable into the f:center facet of af:panelStretchLayout. It is giving error that af:panelStretchLayout is not a valid child of af:panelCollection, so it also didn't work.
Option 4. I encapsulated af:panelCollection into the f:center facet of af:panelStretchLayout. It also didn't work.
Any thing I am missing ... Any other option to try out.
Any help will be highly appreciated.
Thanks ... Best Regards
Bilal
Edited by: Bilal on Oct 4, 2011 5:06 AM

Similar Messages

  • On my favorite website, free form text boxes are sized strangely and text doesn't fit the allocated space well.

    I don't have this problem with other computers running Firefox - only this one. It is my work computer. I also have problems with Javascript sometimes locking up and having to be paused.

    Hi,
    You can open a ticket with Microsoft from the following link:
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • How to populate a adf tree programmatically

    Hi,
    I am creating a adf tree (single select) which is the menu of my application.
    Each node of my tree is a command link.
    I am reading the data from a table through a view object (adfbc).
    I want to somehow manipulate my managed bean so that I can display selected rows (permission based) in the adf tree.
    If I am using the condition in the rendered attribute then the nodestamp facet is still rendered and there is a blank row displayed for a node which should not be displayed.
    The other way I was thinking to Iterate the entire tree in my managed bean and remove the nodes which should not be displayed.
    This way the tree is manipulated before it is endered and hence it will not have any blank row in the place of nodes not to be shown.
    Please let me know a few iterating code strip and where(in which method) I should put it in my managed bean to make it work?
    As of now I was putting a tree iterator code in the getMenuTree() method of my managed bean where menuTree is the RichTree object for the tree which I have to render in my UI.
    CollectionModel model = (CollectionModel)this.menuTree.getValue;
    treeBinding = (JUCtrlHierBinding)model.getWrappedData();
    JUCtrlHierNodeBinding root = treeBinding.getRootNodeBinding();
    checkPermission(root);
    List<JUCtrlHierNodeBinding> children = root.getChildren();
    if (children != null)
    for (JUCtrlHierNodeBinding _node : children)
    checkPermission(_node);
    checkPermission - is the method which reads few bindings from the node and decides that this node id eligible for display or not based on user permission.
    But with this code I am getting the node hierarchical structure of the selected node only.
    Thanks in advance

    I thought in this direction... but I cannot access the permission data from VO level as I have to provide this menu interface to multiple projects.
    And the menu I am creating is in a template from where I need to get permission bean of various other projects.
    any other suggestions ?

  • Best approach -Tabs based ADF Tree left side navigation with Dynamic Regions with out UI Shell

    Hi,
    Somebody can help for the best approach to implement the following requirement.
    Req: When the user select the ADF Tree left side navigation menu, each menu will open as multiple tabs(Dynamic Tabs) in right side content area with out UI Shell Template.
    I completed the
    Step-1: From the Model project, I can able to render ADF Tree in the using view and view links. I can get the adf tree which is having 3 menu items. Each menu item having 2 sub menu's.
    I took each menu item as one(1) taskflow, each taskflow will have two(2) fragments.
    Total I have 3 task flows as Menu Items and 6 fragments for sub menu's.
    Step-2:  My question is How do I implement Tab based the ADF tree navigation (left side area to dynamic regions in content area) through dynamic regions? Please provide the steps in view layers.

    Than ks for your response.
    This is working fine for ADF Tree navigation with dynamic regions if the taskflow having only one fragment. if the taskflow having more than one fragments, this will not work. The following conditions are always satisfies one page fragment of either "employees" or "departments" task flow.  If the "employees" task flow have 2 page fragments, it's not work even you pass parameters through routers.
    public TaskFlowId getDynamicTaskFlowId() {
    if (currentTaskFlowID == null ||
    currentTaskFlowID.equalsIgnoreCase(“employees”)) {
    return TaskFlowId.parse(employeetaskFlowId);
    if (currentTaskFlowID != null &&
    currentTaskFlowID.equalsIgnoreCase(“departments”)) {
    return TaskFlowId.parse(departmetaskFlowId);
    return TaskFlowId.parse(employeetaskFlowId);
    My question is "Same use case with Dynamic Tabs" when the user click on any adf tree node.

  • Adf:tree change node icons

    Hi ,
    Is it possible to create adf tree like in this example - http://www.roseindia.net/jsf/RCFaces/RCF-tree-component.shtml.
    There is two options for tree defaultExpandedImageURL and defaultImageURL . I need implement such functionality in adf tree
    how can i do it ?
    Thanks in advance.

    with help of : zero linecodes you can achieve this in adf tree.
    so can you please tel the usecase.

  • JPanel to fit the JFrame

    Hi there,
    I have a GUI based on a JFrame.
    In my JFrame, I have a MainPanel in the center and a ButtonPanel (with some JButtons) in the bottom.
    The MainPanel is used for drawing purpose to display various informations and is created with a default size 300x300.
    However, to take advantage of high resolution screens, I would like the user to be able to resize the JFrame, and the MainPanel to resize automatically to fit the available space (in order to be able to display more info) but I don't know how to implement that. Any ideas?
    Thanks

    import java.awt.*;
    import javax.swing.*;
    class Testing extends JFrame
      public Testing()
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JPanel main = new JPanel(new BorderLayout());
        JPanel bottom = new JPanel();
        bottom.add(new JButton("Button 1"));
        bottom.add(new JButton("Button 2"));
        bottom.add(new JButton("Button 3"));
        main.add(new JTextArea(),BorderLayout.CENTER);
        main.add(bottom,BorderLayout.SOUTH);
        getContentPane().add(main);
        Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
        setSize((int)dim.getWidth(),(int)dim.getHeight());
      public static void main(String[] args){new Testing().setVisible(true);}
    }

  • Question on the ADF Tree Table

    Hi, I am using Jdev 10.1.3.2 and ADF BC. I have created a ADF Tree Table to display multiple attributes, both the master and detail VO are based on the same EO. It seems all of attributes are displayed in one colume, and there is no column heading, is that possible to add column heading and display in multiple columns?
    Thanks!

    Hi,
    actually the node stamp doesn't accept more than one column element
    Frank

  • Column headers be vertical in firefox and IE and fit the size as per text

    I want to make my columns vertical as shown in the below link
    https://apex.oracle.com/pls/apex/f?p=39006:1
    I am making two regions in a page, and based on the first region data, I submit and get the next displayed region, I am not showing that in the below link though but this is exactly what I want
    http://apex.oracle.com/pls/apex/f?p=15324:1
    My second region has vertical columns but my report cannot be scrolled to right because of the first region. Also I want the columns to have fitting size of the text in them
    First region is of HTML type
    Second region is of PL/SQL type
    Could you please check my page and give an idea how to do the same?
    Details
    Full APEX version: Application Express 4.0.2.00.07
    Database Version
    CORE 11.1.0.7.0 Production
    NLSRTL Version 11.1.0.7.0 - Production
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    Edited by: user13735136 on Jul 1, 2012 1:56 AM

    The second link you provided is useless.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Does 1Z0-001 fit the requirement of 11g DB OCP requirement (1Z0-051)?

    Dear Sir:
       Hi, I would like to ask 3 questions about the certification requirement of 11g DB OCP.
    Please advice me what do I have to do to prepare the OCP exam, thanks a lot in advance.
    Q1:
    Does 1Z0-001 fit the requirement of 11g DB OCP requirement (pass 1Z0-001 = pass 1Z0-051)?
    AFAIK, 11g DB OCP requires passing 3 exams: 1Z0-051 (SQL), 1Z0-052 (AW1), 1Z0-053 (AW2) and finishing a hand-on course at least.
    I have passed the 1Z0-001 (Introduction to SQL ans PL/SQL) many years ago.
    After searching the discussion in the community, I've found 2 relative:
    https://forums.oracle.com/thread/2526631  It said :"1Z0-001 will satisfy the SQL requirement."
    https://forums.oracle.com/thread/2467872 It said : "I can confirm that the 001 exam will fulfill the SQL exam requirement if it was passed before it retired."
    I was confused on that. Please help me to clear it.
    Do I have to prepare the exam 1Z0-051 since I have passed 1Z0-001 (an retired exam)?
    Q2:
    Please confirm that finishing the SSC (Self-Study Course) DOES NOT apply the "hand-on course requirement ".
    It still need to pay more money for an instructor-led (face-to-face) course, right?
    Q3:
    Can I just finish ONE course "Oracle 11g Database Administrator Workshop II" from an Oracle authorized education center to fit the " hand-on course requirement " ?
    Sorry I have to ask this because the budget consideration.
    Thank you very much!
    Steve C.

    Q1:
    Does 1Z0-001 fit the requirement of 11g DB OCP requirement (pass 1Z0-001 = pass 1Z0-051)?
    Q2:
    Please confirm that finishing the SSC (Self-Study Course) DOES NOT apply the "hand-on course requirement ".
    Q3:
    Can I just finish ONE course "Oracle 11g Database Administrator Workshop II" from an Oracle authorized education center to fit the " hand-on course requirement " ?
    A1 -- Yes, if you passed 1Z0-001, you do not need to take 1Z0-051.  When courses are retired, it simply means they are no longer given to *new* students.  Anyone who passed them still retains credit for having done so.
    A2 -- Self Study CDs do not count for the hands-in requirement.  On the approved courses page of OU, it specifically states: "Self Study CD-Rom and Knowledge Center courses are excellent study and reference tools but DO NOT meet the Hands-on Requirement for certification."
    A3 -- Only one course is required for the 11G OCP.  That one is on the approved list and so will be acceptable if the vendor is authorized by OU.

  • JDev 11g (Boxer) - ADF-Tree ExpandingProblem

    Hi,
    I use the Boxer (JDev 11.1.1.0.0) Edition.
    Technology: ADF Business Components (BC), ADF Faces
    Database: Oracle XE (HR Schema)
    I have created BC for the Departments- and Employees-table.
    I drag-and-drop the DepartmentsView1 from the DataControl to the JSF-Page (in the center of a PanelStretchLayout)
    and choose Create --&gt; Trees --&gt; ADF Tree.
    In the "Edid Tree Binding"-Dialog --&gt; Tree Level Rules, I add the EmployeesView (Code below):
    &lt;af:panelStretchLayout&gt;
    bq. &lt;f:facet name="center"&gt;bq. &lt;af:tree value="#{bindings.DepartmentsView1.treeModel}" var="node"selectionListener="#bindings.DepartmentsView1.treeModel.makeCurrent}" \\ rowSelection="single"&gt; \\ &lt;f:facet name="nodeStamp"&gt; \\ &lt;af:outputText value="#{node}"/&gt; \\ &lt;/f:facet&gt; \\ &lt;/af:tree&gt;
         &lt;/f:facet&gt;
    (Fetchsize and Rangsize are default (25), the department with ID=50 has more than 25 employees)
    Problem:
    I run the page, all works fine.
    1) First I expand the department (ID=50) --&gt;works
    2) then I retract the node (ID=50) --&gt; works
    3) I expand the department (ID=50) --&gt; problem
    ADF rendered only 25 elements (the Fetchsize) and shows the Text "Daten werden abgerufen..." (Retrieving data ...)
    Has anybody the same problem, anybody an idea?
    Many thanks!

    I believe this has already been fixed in our main code branch. I will enter a boxer bug and make sure that the fix gets backported to boxer so that it is available in the next boxer patch. If I remember correctly, the issue had to do with trees with a large display area (with default fetchSize of 25). The issue is that the tree has to make multiple round trips to the server in order fill the visible area (view port) on the page.
    Do either of the following workarounds work:
    1) Set a fetchSize attribute on the af:tree tag larger than 25 (<af:tree fetchSize="75">). You may want to increase the rangeSize in your pageDef file as well so that the model rangeSize matches the view fetchSize.
    2) Shrink the size of the tree on the page so that it does not have to make multiple round trips to the server to fill it's view port.

  • ADF &CSS :overriding the default ADF:tree icons and CSSs

    Hi,
    I have major layout issue regarding ADF:tree, how can I override the default icons?
    I override the oracle CSS with my own, but when I did that, the tree images has changed, its now small hideous triangles, I copied some lines from the oracle CSS and it worked, but the small triangles still show inside the images, how can I remove those triangles, or can I write something in my CSS to override them?
    Thanks in prior,
    Ahmad Esbita

    Ahmad,
    According to bug 5682799, you cannot work around this in the current JDeveloper release. It is fixed in 10.1.3.3 (due out "soon," perhaps as early as 15th June, according to another post on this forum)
    John

  • Is there a way to retain the focus of an expanded node in ADF Tree?

    Hi! All,
    We have a requirement that the tree nodes should be expanded and collapsed(traversed,in a word), not only by mouse clicks but also using Keys(Tab+Enter keys).
    This is working fine with ADF Tree, but the problem I'm facing is that the tree node that was expanded using keys is losing focus(though the node that is expanded using mouse click is retaining focus).
    Is there a way to programmatically access the node that is expanded and retain focus on that node, even if the node expansion is done through Key event rather than mouse event?
    awaiting your suggestions,
    Thanks and Regards,
    Samba

    There are some tricky ways to adjust settings within a template (see: this) I think an easier solution is to make 3 or four templates that cover the range you are likely to encounter.  Like a 2 second, 3 second, 5 second, etc... duration template. Label them appropriately and hand over that template toolset to your colleague.
    Patrick

  • ADF Tree 10.1.3.1, not highlighting the selected node.

    Hi,
    I'm having a problem highlighting the selected node in the ADF CoreTree.
    I use the treehandler and model as described in the link: http://technology.amis.nl/blog/2116/much-faster-adf-faces-tree-using-a-pojo-as-cache-based-on-read-only-view-object-showing-proper-leaf-nodes-again
    I use this objects because my tree was showing leaf node with the image to collapse.
    The tree now looks great, the only problem is that when i click on a node the focusRowKey is set accordingly(debugging the getter and setter) but is not show as the selected node.
    The tree jspx code looks the follow:
                   <!--TREE-->
                                     <af:tree value="#{ActosTreeHandler.treemodel}" var="node"
                                               focusRowKey="#{ActosTreeHandler.focusRowKey}"
                                               id="treeActos"
                                               varStatus="nodeStatus" binding="#{ActosTreeHandler.jsfTree}">
                                        <f:facet name="nodeStamp">
                                          <af:commandLink text="#{node.description}" partialTriggers="treeActos"
                                                          action="#{backing_documentos_detalhesDocumento.treeAction}">
                                            <!--disabled="#{node.nodeType != 'ACTO'}"-->
                                            <af:setActionListener from="#{ActosTreeHandler.jsfTree.rowKey}"
                                                                  to="#{ActosTreeHandler.focusRowKey}"/>
                                            <af:setActionListener from="#{node}"
                                                                  to="#{ActosTreeHandler.selectedNode}"/>
                                            <af:resetActionListener/>
                                          </af:commandLink>
                                        </f:facet>
                                      </af:tree>Does anyone know how this can be solved?
    Best Regards.

    Hi,
    is this the same as
    Re: Facing a problem in programmatically setting focus on a node in <af:tre
    Frank

  • ADF Tree table :  Target Unreachable, identifier 'node' resolved to null

    Hi, we are using a tree table:
    <af:treeTable value="#{bindings.FacilitySummaryVO1.treeModel}"
    var="node"
    emptyText="#{bindings.FacilitySummaryVO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    selectionListener="#{bindings.FacilitySummaryVO1.treeModel.makeCurrent}"
    rowSelection="#{pageFlowScope.facilitySummaryHelper.tableSelectionMode}"
    id="tt1" width="100%" contentDelivery="immediate"
    binding="#{backingBeanScope.facilitySummary.facilityTree}"
    autoHeightRows="#{pageFlowScope.facilitySummaryHelper.tableHeight}"
    columnStretching="column:c6">
    <f:facet name="nodeStamp">
    <af:column id="c8" width="5px" headerText=""></af:column>
    </f:facet>
    <af:column id="c5"
    headerText="#{facilitySummary_rb.COLUMN_LABEL_SELECT}"
    width="40" align="center"
    rendered="#{pageFlowScope.facilitySummaryHelper.showColumnSelect}">
    <af:group id="g1">
    <af:panelLabelAndMessage label="" id="plam1">
    <af:selectBooleanCheckbox text="" autoSubmit="true"
    rendered="#{node.ShowSelectCheckBox}"
    valueChangeListener="#{backingBeanScope.facilitySummary.facilitySelectCheckboxEventListener}"
    label="" id="sbc1"
    value="#{node.bindings.SelectedFacilityLandingPage.inputValue}"/>
    </af:panelLabelAndMessage>
    </af:group>
    </af:column>
    <af:column id="c6"
    headerText="#{facilitySummary_rb.COLUMN_LABEL_FACILITY}">
    <af:group id="g2">
    <af:panelGroupLayout layout="horizontal" id="pgl2">
    <af:spacer width="#{node.IndentationWidth}" height="10"
    id="s2"/>
    <af:commandLink text="" textAndAccessKey="#{node.FacilityName}"
    disabled="#{pageFlowScope.facilitySummaryHelper.itemReadonly}"
    visible="#{(node.NodeType == facilitySummary_rb.ACCOUNT_VALUE)? false : true}"
    actionListener="#{backingBeanScope.facilitySummary.treeExpandDiscloseActionListener}"
    id="cl2">
    <af:image source="#{node.NodeImgPath}" id="i2" shortDesc=""></af:image>
    </af:commandLink>
    <af:spacer width="10" height="10" id="s1"/>
    <af:commandLink text="#{node.FacilityName}"
    textAndAccessKey="#{node.FacilityName}" id="cl1"
    actionListener="#{backingBeanScope.facilitySummary.showDetailsActionListener}"></af:commandLink>
    </af:panelGroupLayout>
    </af:group>
    </af:column>
    <af:column id="c12"
    headerText="#{facilitySummary_rb.COLUMN_LABEL_ACTION}"
    width="110"
    rendered="#{pageFlowScope.facilitySummaryHelper.showColumnAction}">
    <af:selectOneChoice valueChangeListener="#{backingBeanScope.facilitySummary.nodeActionValueChangeListener}"
    value="#{node.bindings.SelectActionValue.inputValue}"
    label=""
    unselectedLabel="#{origination_rb.LBL_IB_UNSELECTED_VALUE}"
    readOnly="#{pageFlowScope.facilitySummaryHelper.itemReadonly}"
    id="soc1" autoSubmit="true">
    <f:selectItems value="#{node.NodeAction ==null? pageFlowScope.facilitySummaryHelper.defaultSelectItems : node.NodeAction}"
    id="si2"/>
    </af:selectOneChoice>
    </af:column>
    </af:treeTable>
    af:selectOneChoice has an option to remove the row in the tree table by clearing the VO and populate new data into it. (with the exception of the removed row)
    The row get removed from the vo and the screen but i got this error Target Unreachable, identifier 'node' resolved to null
    No stack trace got printed in the stack trace.
    It works with jdev/adf 11.1.1.1.4. only with jdev/adf 11.1.1.1.5 (JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013) we're having this error. FacilitySummaryVO doesnt have primary key attribute.
    Data got populated to VO programmatically
    All VO attribute value updatable value is always

    Hi,
    hard to say. Actually the "node" variable reference is only available during tree rendering. So if you have any reference to the "node" variable that is invoked after tree rendering then this would explain the exception
    Frank

  • ADF Tree Table Repeats Elements at All Levels in nodeStamp Facet

    Fusion Middleware Version: 11.1.1.5
    WebLogic: 10.3.5.0
    JDeveloper Build: Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013
    Project: Custom WebCenter Portal Application integrated with custom ADF task flows.
    Hi
    I have an issue with ADF Tree Table (af:treeTable) whereby if I add a component to a group under the 'nodeStamp' facet it repeats for all levels in the tree even those outside the group.
    Overview:
    - 3-level master-detail structure created using ADF Business Components (3 view objects connected by 2 view links)
    - ADF Tree Table based on master-detail
    - Requirement to show 3 levels of data in the first column as a tree
    - Tree table is rendering correctly showing values for 'node.FullName', 'node.DisplayValue' and 'node.HoursType' respectively in a 3 level tree.
    - When another component is added to the top node in the tree ('node.FullName') for example some output text ('node.TimeBuildingBlockId'), it is displayed along side components 'node.DisplayValue' and 'node.HoursType' as well.
    Code snippet:
          <af:treeTable value="#{bindings.PerPeopleFVO1.treeModel}" var="node"
                        selectionListener="#{bindings.PerPeopleFVO1.treeModel.makeCurrent}"
                        rowSelection="single" id="tt1" styleClass="AFStretchWidth"
                        horizontalGridVisible="true" verticalGridVisible="true"
                        disableColumnReordering="true" summary="Timecard Entry"
                        displayRow="selected" expandAllEnabled="false"
                        contentDelivery="immediate" autoHeightRows="24"
                        columnStretching="column:column1"
                        binding="#{pageFlowScope.TimecardMB.tree_binding}">
            <f:facet name="nodeStamp">
              <af:column id="c1" headerText="Partner Details" width="500">
                <af:group id="g4">
                  <af:outputText value="#{node.FullName}" id="ot3"/>
                  <af:outputText value="#{node.TimeBuildingBlockId}" id="ot1"/>
                </af:group>
                <af:outputText value="#{node.DisplayValue}" id="ot4"
                                inlineStyle="color:Green; font-weight:bolder;"/>
               <af:outputText value="#{node.HoursType}" id="ot5"/>
                <f:facet name="filter"/>
              </af:column>
            </f:facet>
            <f:facet name="pathStamp">
              <af:outputText value="#{node}" id="ot2"/>
            </f:facet>
       <af:column FROM HERE.........>
    Any ideas greatly appreciated.

    Hi,
    Try using a switcher to distinguish all three levels of a tree. You can have three different facets, three different af:group 's.
    When you add in one level, it will not repeat in the other level.
    Please see the below snippet.
    <af:tree value="#{bindings.RefBusinessUnitView1.treeModel}" var="node"
    selectionListener="#{bindings.RefBusinessUnitView1.treeModel.makeCurrent}"
    rowSelection="single" id="t1">
    <f:facet name="nodeStamp">
    <af:group id="g1">
    <af:switcher id="s1"
    facetName="#{node.hierTypeBinding.viewDefName}">
    <f:facet name="model.RefBusinessUnitView">
    <af:group id="g2">       
    <af:outputText value="#{node.Code}" id="ot1"/>
    </af:group>
    </f:facet>
    <f:facet name="model.RefProductFamilyView">
    <af:group id="g3">
    <af:outputText value="#{node.ProductFamilyName}" id="outputText1"/>
    <af:outputText value="#{node.PName}" id="outputText2"/>
    </af:group>
    </f:facet>
    </af:switcher>
    </af:group>
    </f:facet>
    </af:tree>
    Nitish

Maybe you are looking for

  • PopulateAttributeAsChanged() and primary keys

    I have a column on a table wich is populated from several entries into transient attributes eg. Field1 A Field2 B Field3 C postChanges() method in the entity has been overriden to concatenate these values together ie. A/B/C I call populateAttributeAs

  • Since Acrobat Pro XI can't print anymore !

    I updated few weeks ago Acrobat Pro. But since I intalled the XI version, the printer just block the application from  which I try to print the pdf. I need to force the software (Word, Excell, Illustrator...) to close because it is frozen... No issue

  • Moving imovie files out of home folder - thoughts?

    At the school I work, we use an Active Directory network and a program called Centrify to link all our Macs in. All the students' home folders are stored on a server, rather than on the individual computers, allowing them to access all their data whi

  • Trouble view Mac pdf

    I am having trouble viewing a pdf that has been created on a Mac.  The text is in the form and if I highlight the area, the text will appear. I am trying to view information in a pdf form that was created on a Windows based machine and then completed

  • NWDI connection with NWDS fails with CIM_ERR_FAILED

    Hello, I tried to import a development configuration from our NWDI. Before that I configured the URL in the preferences and could successfully ping the server. When I try to import a development configuration in the Development Configurations Perspec