BUG - JSF InputText boxes not populating properly

Okay,
Here's the situation:
I have an edit page (JSF Web) that allows the user to pick an item to edit from a SelectOneMenu tag. When they pick the item the page rerenders and shows the object associated with the selected item allowing the user to edit the object in various InputText controls.
First of all the ValueChangeListener event doesn't work for the SelectOneMenu tag - the event is not recognized in the backing bean (with or without immediate set, the event code is never accessed.) - and so I had to tie the change to the pressing of a command button.
Upon pressing the command button, in the action event, I find the object from the selected item. Now I want to set the input text boxes in the screen to the various values of the object. There are two ways to do this. I either set the value property of the bound (using the binding property) backing bean to the objects property - the code looks like this:
<h:inputText binding="#{EditCalendarBean.name}"
value="#{EditCalendarBean.name.value}"/>
This results in a fatal error that halts the OC4J.
Alternatively; I added various properties to the backing bean one for each property of the object and bound the object's properties to these and then bound the user interface's value properties to the bean properties. For example, imagine a user interface control InputText tag called "name" has it's value property bound to a property on the bean called Name which returns String. This configuration runs but the InputText control when the page is re-rendered (after the submit), is empty even though I've set the value property. However, if I add an OutputText control to the page and bind it's value property to the same String property of the bean, the outputText control correctly shows the value of the object.
The code looks like this:
<!-- code in the page -->
<h:inputText id="name" binding="#{EditCalendarBean.name}"
value="#{EditCalendarBean.nameValue}"/>
// Code in the Backing bean:
// Find the Bean from the submitted id from the SelectMenuTag.
CalendarData data = manager.getCalendarById(calendarID) ;
// Set value of the UITextInput components on the page.
this.getName().setValue(data.getName());
this.getDescription().setValue(this.getDescription());
// This results in a fatal error that halts the OC4J
// Method 2: declare two String properties on the bean and set them
// Then, in the page use the Value property of the InputText control.
// This runs but doesn't populate the controls. It does populate them if
// the contols are OutputText controls though!!!
this.setNameValue(data.getName());
this.setDescriptionValue(data.getDescription());
Best regards,
Nigel

Yes - this really is a bug. Any changes to make to the selectItems tag through the properties dialog rewrites the tag source code to seperate the selectOne tag and the selectItems tag. For example, before you use the dialog, you tag code could look like this:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1">
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems2}"
id="selectItems2"/>
</h:selectOneMenu>
After the use of the dialog the code will be rewritten as:
<h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
id="selectOneMenu1"/>
<f:selectItems value="#{backing_showFactory.allFactories}"
binding="#{backing_showFactory.selectItems2}"
id="selectItems2"/>
Notice, the tags are now seperated instead of the selectItems tag being encased in the selectOneMenu tag.

Similar Messages

  • BUG JSF Select Item not binding properly

    Dear Oracle,
    I'm running JDeveloper 10g version 10.1.3.0.3.3412 early access 1. If you create a HTMLMenu1 select list in a JSF Page and use the properties dialog to bind the values to a backing bean, the binding get's lost and the page doesn't call the value binding. What's more, if you try to rebind the values using the dialog, JDeveloper repeatedly inserts a new SelectItems tag for the menu.
    For example, if you create the SelectMenu1 and then use the dialog to bind the selectItems to a backing bean property, you will end up with code something like this:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1"
    valueChangeListener="#{backing_showFactory.selectFactoryEvent}"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems1}"
    id="selectItems1"/>
    Now, click on the newly created menu item in the design window of the JSP editor and bring up the properties dialog. You will see that the value binding is blank. If you reenter the value binding information, JDeveloper creates a new tag so you end up with the following:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1"
    valueChangeListener="#{backing_showFactory.selectFactoryEvent}"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems2}"
    id="selectItems2"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems1}"
    id="selectItems1"/>
    Each time you repeat the process, JDeveloper creates another tag:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1"
    valueChangeListener="#{backing_showFactory.selectFactoryEvent}"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems3}"
    id="selectItems3"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems2}"
    id="selectItems2"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems1}"
    id="selectItems1"/>
    Either way, if you clean up the JSF page with the spurious tags, the value binding (in the example above backing_showFactory.allFactories), is never called.

    Yes - this really is a bug. Any changes to make to the selectItems tag through the properties dialog rewrites the tag source code to seperate the selectOne tag and the selectItems tag. For example, before you use the dialog, you tag code could look like this:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1">
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems2}"
    id="selectItems2"/>
    </h:selectOneMenu>
    After the use of the dialog the code will be rewritten as:
    <h:selectOneMenu binding="#{backing_showFactory.selectOneMenu1}"
    id="selectOneMenu1"/>
    <f:selectItems value="#{backing_showFactory.allFactories}"
    binding="#{backing_showFactory.selectItems2}"
    id="selectItems2"/>
    Notice, the tags are now seperated instead of the selectItems tag being encased in the selectOneMenu tag.

  • Amount field is not populating properly

    Expert's,
    Here is an issue where one of the amount field not populating properly.For some opportunities the amount field will be just displyed as'0' but for some opprtunities the amount field is displaying as'$0'.The data we are pulling is from CRM.
    Thanks in advance.
    vasu.

    Hi,
    looks like extenstion of your last thread
    did you already have a look in data in cube?just to make sure,try to display cube's data using List cube transaction .Take this amount field,corresponding Currency Key,and you rmost impotant characteristics...and check whether all records are having entry in 'currency' column?

  • JSF - UICommand component not rendering properly

    2:12 PM 7/11/2007
    by Nirav Assar
    Overview
    It was discovered that in certain situations a UICommand component does not bind properly to its associated action method in the managed bean. The symptoms of this situation occur when you have a page with an action, and you click the action and nothing occurs. The page seems like it submits, but no code inside the action method of the managed bean gets executed and no errors are generated in the console!
    Problem
    The problem arises when you have a managed bean in request scope and you have a UICommand, either a commandLink or commandButton, associated to the bean. In addition this UICommand component has a rendered attribute tag (boolean value) that uses a managed bean method to tell it whether is renders or not. Even if the component gets rendered to the screen, the component does not get binded to the action method in the request scoped bean. This is a problem with JSF and may be due to the fact that the component gets rendered, but since the bean is not created until a request is submitted, the component never gets binded to an action. Therefore, nothing in the action method ever gets executed.
    Analysis
    Thus is seems like if you want to dynamically render a submit type component, such as a button or a link, you cannot effectivley do that with a bean in request scope. You'll have to place it session scope, which will work fine. Another option is to render the buttons all the time, but based on some scenario, using the "disabled" attribute to prevent a user from using the action. The "disable" attribute can access a boolean method in the managed bean.
    You could also use Javascript to hide the already rendered button on certain circumstance. However this would require javascript knowing the state of the domain objects/and or managed bean state.
    References:
    http://forum.java.sun.com/thread.jspa?threadID=5127437&messageID=9461810

    RamondDeCampo hit the nail on the head. If the bean used for the rendered attribute is request scope and the value differs between requests, you're going to see this type of behavior.
    Search the forums, there have been many similar reports as well as suggested solutions.

  • Values are not populated properly - if then else conditon

    Hi,
    I 've a requirement like...
    If meinh = ZTU then lfimg/umrez else display the values of lfimg
    I 've used if then else condition afterthat i mapped to target field lfimg. But, when i check the queue the result displays correctly, but when i execute the mapping from Test tab it displays all the values for LFIMG
    My question here is ...Why the output is not display properly after i use if then else condition
    Help me how can i get proper values to display at target
    Kind regards,
    Y.Raj

    hi
    As my understanding you are giving both cases true and false the same input.
    If meinh = ZTU then lfimg/umrez else display the values of lfimg
    if meinh = ZTU
    then  umrez
    else  lfimg
    try this
    if still its not working write a simple UDF for the same.
    Regards
    Vijay

  • Chain and store data not populating properly in BPARTNER

    Hi all,
    There is a field 0bpartner2 in the data source name 0BP_RELATIONS_ATTR. This field is also there in DSO1 which fetches the data from the mentioned datasource. Then using routines this field 0bpartner2 splits into two-->chain and store which are getting populated in the next level of DSO, DSO2 which finally goes into 0bpartner infoobject.
    But for two particular bp nos the values of chain and store are not getting populated.
    Checked in RSA3, the data is OK, but in the PSA level the data is not there.
    This is happening only for this two particular bp nos.
    Kindly help.

    Hi,
    at info package data selection don't have selection please check the below options.
    1. go to ECC -> enter the t code- RSA5 -> select the data source -> go to change mode -> select the check boxes possibility.
    2. if not there come to BI system select the data source go to change mode -> select selection menu -> browse and choose the X- selection possible.
    now it available selections at info package - while seeing the RSA3 data give the selection at info package
    Thanks,
    Phani.

  • Dependent LOVs not populated properly

    Hi,
    I have an issue regarding dependent LOVs in one of our pages.
    1. Child Lov is unable to fetch the results depending on Parent Lov value. Parent Value is not added to the where clause in the query while getting results for child lov.
    This is happening only when the user enters some value like (%) in child text box and tab out.
    2. If the user directly clicks on child lookup and then enter some search criteria and Click Enter. It works as expected. In this case it is taking the parent lov value and giving the results properly.
    I think we may be missing some property to be set in case1. If anyone aware of this issue please help me out with a solution.
    It is related to banks and branches in banks... Due to this issue when I search for branches after selecting a bank.... all the branches are shown in the results.
    Regards,
    Pavani
    Thanks in Advance,
    Pavani

    MY pg.xml with bank and branch LOVs :
    <oa:rowLayout id="BankBranchRowRN" width="100%">
    <ui:contents>
    <oa:cellFormat id="BankBranchCellFormatRN">
    <ui:contents>
    <oa:tableLayout id="BankBranchTblLayoutRN" hAlign="center" width="100%">
    <ui:contents>
    <oa:rowLayout id="BankBranchRow1RN">
    <ui:contents>
    <oa:cellFormat id="BankRN" hAlign="start" vAlign="top">
    <ui:contents>
    <oa:header id="BankHeaderRN" text="Bank">
    <ui:contents>
    <oa:messageRadioGroup id="BankSelectChoice" pickListViewDef="" pickListDispAttr="Name" pickListValAttr="Code" defaultValue="OLD" viewName="SuppNwActPVO" viewAttr="BankSelectFlag" serverUnvalidated="true" pickListViewName="IbyBankSelectVO" shortDesc="Select Bank" rendered="${oa.SuppNwActPVO.ShowChoiceList}">
    <ui:primaryClientAction>
    <ui:firePartialAction event="BankSelect" unvalidated="true">
    <ui:parameters>
    <ui:parameter key="Selected" value="${oa.current.BankSelectFlag}"/>
    </ui:parameters>
    </ui:firePartialAction>
    </ui:primaryClientAction>
    </oa:messageRadioGroup>
    <oa:messageComponentLayout id="BankMasterRN">
    <ui:contents>
    <oa:messageTextInput id="BankNameInput" maximumLength="360" viewName="SuppNwActVO" viewAttr="BankName" prompt="Bank Name" rendered="${oa.SuppNwActPVO.BankNewFlag}"/>
    <oa:messageLovInput id="BankNameSelect" prompt="Bank Name" viewName="SuppNwActVO" viewAttr="BankName" maximumLength="360" rendered="${oa.SuppNwActPVO.BankOldFlag}" externalListOfValues="/oracle/apps/pos/lov/webui/ExtBanksLovRN">
    <lovMappings>
    <lovMap id="lovMap2" lovItem="BankName" resultTo="BankNameSelect" criteriaFrom="BankNameSelect"/>
    <lovMap id="lovMap3" lovItem="BankNumber" resultTo="BankNumber"/>
    <lovMap id="lovMap7" lovItem="AddressLine1" resultTo="BankAddress1"/>
    <lovMap id="lovMap8" lovItem="AddressLine2" resultTo="BankAddress2"/>
    <lovMap id="lovMap9" lovItem="AddressLine3" resultTo="BankAddress3"/>
    <lovMap id="lovMap10" lovItem="City" resultTo="BankCity"/>
    <lovMap id="lovMap11" lovItem="State" resultTo="BankState"/>
    <lovMap id="lovMap12" lovItem="AltBankName" resultTo="AltBankName"/>
    <lovMap id="lovMap13" lovItem="ZipCode" resultTo="BankZipCode"/>
    <lovMap id="lovMap14" lovItem="Country" resultTo="BankCountry"/>
    <lovMap id="lovMap28" lovItem="BankPartyId" resultTo="BankId"/>
    <lovMap id="lovMap31" lovItem="AddressLine4" resultTo="BankAddress4"/>
    <lovMap id="lovMap32" lovItem="HomeCountry" resultTo="Country" criteriaFrom="Country"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageTextInput id="BankNumber" prompt="Bank Number" viewName="SuppNwActVO" viewAttr="BankNumber" maximumLength="30" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageLayout id="bankHiddenFieldRN">
    <ui:contents>
    <oa:formValue id="BankId" viewName="SuppNwActVO" viewAttr="BankId" dataType="NUMBER"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    <oa:hideShow id="BankDetailHideShowRN" disclosedText="Hide Bank Details" undisclosedText="Show Bank Details" serverUnvalidated="true" unvalidated="true" viewName="SuppNwActVO" viewAttr="BANKHIDESHOW">
    <ui:contents>
    <oa:header id="BankDetailsHdrRN" text="Details">
    <ui:contents>
    <oa:messageComponentLayout id="BankDetailsRN">
    <ui:contents>
    <oa:messageTextInput id="AltBankName" prompt="Alternate Bank Name" viewName="SuppNwActVO" viewAttr="BankNameAlt" maximumLength="320" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>
    <oa:header id="BankAddressHdrRN" text="Address">
    <ui:contents>
    <oa:messageComponentLayout id="BankAddressRN">
    <ui:contents>
    <oa:messageTextInput id="BankAddress1" prompt="Address Line 1" viewName="SuppNwActVO" viewAttr="BankAddressLine1" maximumLength="240" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankAddress2" prompt="Address Line 2" viewName="SuppNwActVO" viewAttr="BankAddressLine2" maximumLength="240" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankAddress3" prompt="Address Line 3" viewName="SuppNwActVO" viewAttr="BankAddressLine3" maximumLength="240" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankAddress4" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}" maximumLength="240" viewName="SuppNwActVO" viewAttr="BankAddressLine4" prompt="Address Line 4"/>
    <oa:messageTextInput id="BankCity" prompt="City" viewName="SuppNwActVO" viewAttr="BankCity" maximumLength="60" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankState" prompt="State" viewName="SuppNwActVO" viewAttr="BankState" maximumLength="60" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankZipCode" prompt="Zip Code" viewName="SuppNwActVO" viewAttr="BankZip" maximumLength="60" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageLovChoice id="BankCountry" prompt="Country" viewName="SuppNwActVO" viewAttr="BankCountry" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}" externalListOfValues="/oracle/apps/pos/lov/webui/CountryLovRN" pickListDispAttr="TerritoryShortName" pickListValAttr="TerritoryCode" rendered="false">
    <lovMappings>
    <lovMap id="lovMap4" lovItem="TerritoryCode" resultTo="BankCountry"/>
    </lovMappings>
    </oa:messageLovChoice>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>
    </ui:contents>
    </oa:hideShow>
    </ui:contents>
    </oa:header>
    </ui:contents>
    </oa:cellFormat>
    <oa:cellFormat id="BranchRN" hAlign="start" vAlign="top">
    <ui:contents>
    <oa:header id="BranchHeaderRN" text="Branch">
    <ui:contents>
    <oa:messageRadioGroup id="BankBranchSelectChoice" pickListViewDef="" pickListDispAttr="Name" pickListValAttr="Code" defaultValue="OLD" viewName="SuppNwActPVO" viewAttr="BranchSelectFlag" serverUnvalidated="true" pickListViewName="IbyBankBranchSelectVO" shortDesc="Select Branch" rendered="${oa.SuppNwActPVO.ShowChoiceList}">
    <ui:primaryClientAction>
    <ui:firePartialAction event="BankBranchSelect" unvalidated="true"/>
    </ui:primaryClientAction>
    </oa:messageRadioGroup>
    <oa:messageComponentLayout id="BranchMasterRN">
    <ui:contents>
    <oa:messageTextInput id="BranchNameInput" viewName="SuppNwActVO" viewAttr="BranchName" prompt="Branch Name" maximumLength="360" rendered="${oa.SuppNwActPVO.BranchNewFlag}"/>
    <oa:messageLovInput id="BranchNameSelect" prompt="Branch Name" viewName="SuppNwActVO" viewAttr="BranchName" maximumLength="360" rendered="${oa.SuppNwActPVO.BranchOldFlag}" externalListOfValues="/oracle/apps/pos/lov/webui/ExtBankBranchesLovRN">
    <lovMappings>
    <lovMap id="lovMap15" lovItem="BankBranchName" resultTo="BranchNameSelect" criteriaFrom="BranchNameSelect"/>
    <lovMap id="lovMap16" lovItem="Address1" resultTo="Address11"/>
    <lovMap id="lovMap17" lovItem="Address2" resultTo="Address21"/>
    <lovMap id="lovMap18" lovItem="Address3" resultTo="Address31"/>
    <lovMap id="lovMap19" lovItem="City" resultTo="City1"/>
    <lovMap id="lovMap20" lovItem="State" resultTo="State1"/>
    <lovMap id="lovMap21" lovItem="ZipCode" resultTo="ZipCode1"/>
    <lovMap id="lovMap22" lovItem="Country" resultTo="Country11"/>
    <lovMap id="lovMap23" lovItem="BranchNumber" resultTo="BranchNumber"/>
    <lovMap id="lovMap24" lovItem="AltBranchName" resultTo="AltBranchName"/>
    <lovMap id="lovMap25" lovItem="EftSwiftCode" resultTo="BIC"/>
    <lovMap id="lovMap26" lovItem="BankBranchType" resultTo="BranchType"/>
    <lovMap id="lovMap27" lovItem="RFCIdentifier" resultTo="RFCIdentifier"/>
    <lovMap id="lovMap29" lovItem="BankBranchPartyId" resultTo="BranchId"/>
    <lovMap id="lovMap30" lovItem="Address4" resultTo="Address41"/>
    <lovMap id="lovMap42" lovItem="BankName" resultTo="BankNameSelect"/>
    <lovMap id="lovMap43" lovItem="BankNumber" resultTo="BankNumber"/>
    <lovMap id="lovMap47" lovItem="BankAddressLine1" resultTo="BankAddress1"/>
    <lovMap id="lovMap48" lovItem="BankAddressLine2" resultTo="BankAddress2"/>
    <lovMap id="lovMap49" lovItem="BankAddressLine3" resultTo="BankAddress3"/>
    <lovMap id="lovMap410" lovItem="BankCity" resultTo="BankCity"/>
    <lovMap id="lovMap411" lovItem="BankState" resultTo="BankState"/>
    <lovMap id="lovMap412" lovItem="AltBankName" resultTo="AltBankName"/>
    <lovMap id="lovMap413" lovItem="BankZipCode" resultTo="BankZipCode"/>
    <lovMap id="lovMap414" lovItem="BankCountry" resultTo="BankCountry"/>
    <lovMap id="lovMap428" lovItem="BankPartyId" resultTo="BankId" criteriaFrom="BankId"/>
    <lovMap id="lovMap431" lovItem="BankAddressLine4" resultTo="BankAddress4"/>
    <lovMap id="lovMap432" lovItem="HomeCountry" resultTo="Country" criteriaFrom="Country"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageTextInput id="BranchNumber" prompt="Branch Number" viewName="SuppNwActVO" viewAttr="BranchNumber" maximumLength="30" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    <oa:messageTextInput id="BIC" prompt="BIC" viewName="SuppNwActVO" viewAttr="Bic" maximumLength="30" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    <oa:messageChoice id="BranchType" prompt="Branch Type" viewName="SuppNwActVO" viewAttr="BranchType" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}" pickListDispAttr="DisplayedField" pickListValAttr="LookupCode" pickListViewName="BankBranchTypeVO" allowBlankValue="false"/>
    <oa:messageLayout id="branchHiddenFieldRN">
    <ui:contents>
    <oa:formValue id="BranchId" viewName="SuppNwActVO" viewAttr="BranchId" dataType="NUMBER"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    <oa:hideShow id="BranchDetailHideShowRN" disclosedText="Hide Branch Details" undisclosedText="Show Branch Details" serverUnvalidated="true" unvalidated="true" viewName="SuppNwActVO" viewAttr="BRANCHHIDESHOW">
    <ui:contents>
    <oa:header id="BranchDetailsHdrRN" text="Details">
    <ui:contents>
    <oa:messageComponentLayout id="BranchDetailsRN">
    <ui:contents>
    <oa:messageTextInput id="AltBranchName" prompt="Alternate Branch Name" viewName="SuppNwActVO" viewAttr="BranchNameAlt" maximumLength="320" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    <oa:messageTextInput id="RFCIdentifier" prompt="RFC Identifier" viewName="SuppNwActVO" viewAttr="RfcIdentifier" maximumLength="30" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>

  • Authentication dialogue box not displaying properly in 10.6.5

    I've updated to 10.6.5 last night. Everything seems to work just fine except for the authentication dialogue box. All letters turn out to be capital A's in boxes. Authentication itself still works, but the improper displaying of characters just bugs me. Does anyone have that problem? Thanks guys!

    Wow thanks! It wasn't a 10.6.5 bug after all. I downloaded a Leopard UI set, and thought it would be nice to include the Lucida fonts in my OS. I didn't see the fonts in the fonts folder, but it turned out that they were there and I just duplicated them. Thanks

  • WGM Home directory full path not populating properly

    I'm setting up WGM with mobility as all of my network users are on laptops. For some reason some of the users are working and others not. When I try to log in with some I just get told that the user couldn't log on because an error occured. As far as I can work out this is because the home directory for the user on the network can't be found and so a local one can't be created either.
    The only difference I can see between the users (bearing in mind this is a brand new network set up so I haven't made many changes) is that for the users that do work when I select the SharePoint I want to use under the home tab in user settings, the Full Path has ...er ...well the full path in it: /network/servers/mynetwork/Volumes/myharddrive/myfolder/myuser
    whereas ones that don't work just have the folder name: myuser
    This not only happens when I use the auto populated list as well as when I create one from scratch.

    You're right, DNS implementation in Leopard server is very poor, especially considering how critical it is.
    Time Machine for every user is a bit of a tricky one - I've been thrashing this one out in another thread, and there is an answer, but it's not ideal.
    Here's the thread: http://discussions.apple.com/thread.jspa?threadID=2034769&start=0&tstart=0
    The answer on how to do it is at the end of the thread, but make sure Time Machine isn't used as the only method of Disaster Recovery on a corporate network, it's really only good for a useful extra.
    As for an internal and external DNS server, the answer I'm afraid is "not really". The way you have it set up is pretty good, from a redundancy point of view. However, if you have to use an external DNS server, it's always going to be slower, because of the extra distance over slower links that the DNS request has to travel.
    Bear in mind, it has to go through your router and/or firewall, all the way out to a busy DNS server somewhere out on the net (probably over a number of routers on the way), then it has to come back the same way before your client can actually resolve the URL to an IP address.
    Compare that to internal where it has to travel a matter of metres over a (I assume) 100mbps network to a DNS server that's not processing very many requests.
    The only workaround I could suggest would be to employ a second DNS server (perhaps a proxy?) within your network assuming you can separate it from whatever causes your primary DNS server to go down. The costs aren't prohibitive - you could do it on a Mac Mini + cost of a second Leopard Server license.
    Oh, and your English is just fine, lol.
    Message was edited by: MattLucas1505

  • Navigation Attiributes not populated properly

    Hi,
       I am trying to create a POS. I am assigning the Object which has navigational attributes to the POS. When I click on the display navigation attributes, the attributes are not being displayed properly in the POS. Is there something I need to do to display the attributes properly ?
    I am on SCM 5.1
    Regards,
    Ranjini.

    Try activating the POS.
    Right click on the POS you will get 2 options Activate and Deactivate, Donot Deactivate just press activate button.
    Then you should be able to see the activated POS and all the navigational attributes in the navigational attributes button, by the way you will have to go into the tab / button which says navigational attributes on top of all the characteristics. I think there you should find your navigational attribute.
    By the way did you activate the info object once you said this attribute is a navigational attribute, did you give any text to the attribute once you declared it as navigational attribute??
    Let me know if it works.
    Thanks,
    M

  • Drop Down Boxes not Populating on the SCM business package through EP7

    Hi ,
           All would greatly appreciate if any of you out there has experinced this problem
    We are using the Enterprise Portal which has recently configured using https or SSL. we are using the Business package SCM 5.0.
    When we use the SCM system directly and we go to any iViews we have all the drop down boxes work perfectly well . If the user selects the Value help (drop down boxes) they all show the value and then the selected value populates back to main screen. However, using the Enterprise Portal if the User goes to the SCM business Package iView the value help shows up all the value, but the value that is selected does not populate back to main screen.
    Now again if we use http as opposed to https we do not have any issue.
    Thanks . Any help on this will be greatly appreciated.

    I don't have a clue, but figured I might make a suggestion. Did you touch and hold the pick box? Hope that works for ya.

  • Captivate 7 question - slide with audio and light boxes not functioning properly

    I am currently working a project and cannot figure something out. 
    I have a slide with 9 smartshape buttons on it.  When each button is clicked it brings up a lightbox.  Each lightbox has it's own close button. When the lightbox is closed by the user then the user immediately sees the 9 button screen and can choose another button to view and read, and so forth.  I have the lightboxes working fine.
    Now, I added text to speech.  It is a mere 15 seconds in length, but it contains some important content and the directions.  I want the text to speech audio to stop playing if the user goes ahead and clicks on one of the 9 buttons which then brings up a lightbox.  I want the audio to then resume when they close the lightbox.  OK I have all of that working in a technical sense.
    I've also tried this advanced action, but this stops the Audio entirely, however it does solve the autoadvance issue. so I am just trading issues.
    I also have  "back and next" nav buttons on the slide, so the user must click one or the other to proceed off the slide.  Ok those worked.
    Here is the issue.  Once I added the text to speech audio, at the end of 17.3 seconds, whatever lightbox the user may be viewing and they hit the close lightbox button, captivate automatically sends the user to the next slide.  No clicking "Next" or anything.  I can't figure out why this is occurring. 
    Prior to adding audio the slide worked as it should with the user being able to click each of the 9 buttons to "read some info" then close it and click another button on the slide, etc.  They could do this in any order they wanted. 
    When I added the audio, I set the advanced actions so if a user clicked on one of the buttons, the audio would stop playing until they came back to the main screen.  Ok no problem getting that to function - except it stops functioning at the end of 17.3 seconds. 
    What am I missing?
    Thanks for any help!!!
    Michelle

    Correct I have only 15 seconds of audio with the slide.  no audio with any of the light boxes.  Those are "read only" light boxes.
    If the user clicks a shape button early, before the entire audio has played, I want the audio to stop, so the user can read the lightbox info, then as they click back to the slide away from the lightbox, I want the audio to resume playing - so they can hear the rest of the audio.  But,  this is where is doesn't function properly as when the audio finishes playing at 15 seconds.  The next shape button the user clicks on to shows the lightbox, but when they click to close the lightbox, the lightbox closes then sends the user to the next slide.  They haven't had a chance to view any of the other shape buttons and the information found in those corresponding light boxes. 
    I hope this clarifies.
    Any thoughts?
    Michelle

  • Click box not functioning properly the second time it's clicked

    I have put a click box on a slide and picked the following
    properties:
    ON success open a url or file
    Infinite attempts
    display for rest of slide
    show hand cursor over "hit" area
    stop slide audio when clicked
    The slide itself is set up to progress when a button is
    selected labeled next
    There are other slides in the project that have the exact
    same click box and they function in the published project fine. In
    fact, I deleted the one that does not work and copied and pasted
    one from another slide. Is there some hidden function on the slide?
    Thank you,
    Karen

    Can you elaborate on what you mean by "doesn't work the
    second time"?
    Are you expecting it to launch a URL and it's not? Stop slide
    audio and it's not?
    Typically, most "open a URL" issues have to do with not
    unchecking the "Continue playing project" option in the Click Box
    properties. The button only pauses until the user clicks, then
    continues playing on the timeline.
    If you want the slide to pause indefinitely, you need to
    click the down arrow button to the right of the URL field and
    deselect "Continue playing project".

  • Swatch Option Dialog Box Not Displaying Properly

    Whenever I open a Swatch Options Dialog box the Pantone preset colors overlay on the slider bars so that I cannot access the slider bars.
    I've posted a screenshot of what I'm talking about at www.cranstoninc.com/screenshot.jpg
    I tried trashing the com.adobe.indesign.plist file to resolve the issue but that didn't help.
    Any ideas on how to resolve this would be appreciated.

    I found the answer in another post by nread so I am posting his solution here as well.
    I went into my Configure plug-ins, disabled the swatches plugin and its dependancies (created a new plugins set config), then quit and restarted InDesign. After that, I re-enabled all the plugins I disabled (by reloading the default configuration) and restarted InDesign again. Now my swatches work perfectly!
    This worked for me as well.

  • ALV selection field of displayed table is not populated properly

    Hi,
    I am using OO ALV in my screen. I have two tabs. In one tab I display one ALV output in edit mode with selection option and passing internal table field for box_selection. In the other tab I am displaying another ALV output but in display mode.
    My problem is when I switch from tab in edit mode to tab in display mode and back to tab in edit mode, then select a line on the tab in the edit mode, the method I am calling:
      CALL METHOD grid1->get_selected_rows
        IMPORTING
          et_index_rows = i_sel_alvrows[].
    would return table "i_sel_alvrows" empty.
    If i do not switch between the tabs, the ->get_selected_rows logic works perfectly.
    You reply will be greatly appreciated.
    Thanks.

    Oleg,
    I have doubt ,
    This is example:--> if you have selected a line in edit tab and going to display tab and coming back to edit tab, at the point your selected line is there in edit tab as in selected mode ?
    After freeing the container?
    aRs
    Message was edited by:
            aRs

Maybe you are looking for

  • How to Restict number of rows to download data in excel sheet

    hi, my requirement is that i m showing top 50 seller in my dashboard. but when we click on download to excel then all 500 rows are downloading. i want to restrict downloading all data and want show only displayed data of dashboard in excel sheet.(ex

  • Pop-up menu to list multiple time values (8:00 AM etc.) ?

    I was looking at the option of using a pop-up menu to select times (8:00 AM etc.) from to keep from having to enter all the times in my spreadsheet manually. Has anyone done this before and is there a download or widget for this? Unfortunately for me

  • NO SERVICE FOR A WEEK!!!

    I called with my first service request on July 16, letting them know my phone/internet box was hanging off my wall outside.  They have since scheduled to come 4 different times over the last week but never showed up and never called (including one ni

  • How do I recover a deleted item?

    I deleted a video by accident.  I have a pavilion dv5-2135dx entertainment notebook.  Can I recover it?

  • How to save after effects into video

    i need help soon!!!!