Pages Templates still reset currency...

Is there anybody who is struggling with this as well?
I thought this would be a really obvious bug and they's fix it in 09, but nothing.
Whenever I create a Pages Template with a currency other than British Pounds and save it, after opening it is reset to Pounds - it's a simple and obvious bug and I wrot eto Apple as well, so they should be aware of it, but nothing happens - am I the only one here?
Cheers - Christoph

Hi Fruhulda
If you insert a table in a Pages document (same behavior with Numbers) and set a cell as currency one using $ if your system's setting is €,
if you save the document as a template, the documents created from this custom template will contain a currency matching your system's setting.
It's really odd.
I wish to know if the OP used the Feedback link or if he reported to the BugReporter area.
There is a quick and dirty workaround.
Don't save as a template but as a standard document and create new documents with this script.
--[SCRIPT openFakeTemplate]
Enregistrer le script en tant que Script ou Progiciel : openFakeTemplate.xxx
Sous 10.6 un progiciel se nomme Application.
Si c'est un Script, déplacer le fichier créé dans le dossier
<VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:
Il vous faudra peut-être créer le dossier Applications.
menu Scripts > openFakeTemplate
Si c'est un Progiciel, laissez le sur le bureau pour y glisser l'icône d'un pseudo_modèle Numbers ou Pages.
Dans les deux cas, un clône du pseudo_modèle sera ouvert avec un nom horodaté.
--=====
L'aide du Finder explique:
L'Utilitaire AppleScript permet d'activer le Menu des scripts :
Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case "Afficher le menu des scripts dans la barre de menus".
+++++++
Save the script as Script or Application Bundle: openFakeTemplate.xxx
Under 10.6, Application Bundle is named Application.
If you saved as Script, movethe newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:
Maybe you would have to create the folder Applications by yourself.
Go to menu Scripts > openFakeTemplate
If you saved as Application (bundle), leave it on the Desktop so you will be able to drag & drop on its icon a fakeTemplate's one.
In both cases, a dateTime stamped clone of the fakeTemplate will be open.
--=====
The Finder's Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the "Show Script Menu in menu bar" checkbox
--=====
Yvan KOENIG (VALLAURIS, France)
2009/09/29
property permitted4 : {"com.apple.iwork.pages.sffpages", "com.apple.iwork.numbers.sffnumbers"}
property permitted5 : {"com.apple.iwork.pages.pages", "com.apple.iwork.numbers.numbers"}
property permitted : permitted5 & permitted4
--=====
on run (*
lignes exécutées si on double clique sur l'icône du script application
• lines executed if one double click the application script's icon *)
tell application "System Events"
if my parleAnglais() then
set myPrompt to "Choose an iWork’s document"
else
set myPrompt to "Choisir un document iWork"
end if -- parleAnglais
if 5 > (system attribute "sys2") then (*
if Mac Os X 10.4.x *)
set allowed to my permitted
else (*
it's Mac OS X 10.5.x with a bug with Choose File *)
set allowed to {}
end if -- 5 > (system…
my commun(choose file with prompt myPrompt of type allowed without invisibles) (* un alias *)
end tell
end run
--=====
on open (sel) (*
sel contient une liste d'alias des élémentsqu'on a déposés sur l'icône du script (la sélection)
• sel contains a list of aliases of the items dropped on the script's icon (the selection) *)
my commun(item 1 of sel) (* an alias *)
end open
--=====
on commun(source)
tell application "System Events" to tell disk item (source as text)
set typeID to (type identifier) as text
set nomSource to name
set ext to name extension
end tell
if typeID is not in my permitted then
if my parleAnglais() then
error "“" & (source as text) & "” is not a Numbers or Pages document!"
else
error "«" & (source as text) & "» n’est pas un document Numbers ou Pages !"
end if -- my parleAnglais()
end if -- typeID
set nomCourt to text 1 thru -(2 + (length of ext)) of nomSource
set nouveauNom to nomCourt & my dateTimeStamp() & "." & ext
tell application "Finder"
set dupli to (duplicate source) as alias
set name of dupli to nouveauNom
set dupli to dupli as alias
open dupli
end tell
end commun
--=====
on dateTimeStamp()
return (do shell script "date +_%Y%m%d-%H%M%S")
end dateTimeStamp
--=====
on parleAnglais()
local z
try
tell application "Pages" to set z to localized string "Cancel"
on error
set z to "Cancel"
end try
return (z is not "Annuler")
end parleAnglais
--=====
-- [/SCRIPT]
Yvan KOENIG (VALLAURIS, France) mardi 29 septembre 2009 18:46:11

Similar Messages

  • Hi, I've tried resetting ipad as advised, but pages app still shows waiting

    Hi I've tried resetting ipad as advised, but pages app still shows waiting on it.

    Connect to iTunes via USB. That's what worked for me.

  • Page Template Popup with Dynamic Region TaskFlow

    Hi.
    I have a Page Template that is used extensively in my application to provide a consistent explorer panel containing tree links to various pages in the application. I'm trying now to enable users to edit configuration via a tree link. I would like to implement this as a Popup in the page template which contains a dynamic region that contains a bounded Task FLow (so I can control the transaction for the edit activity). I'm running into all manner of issues...
    The Tree node is defined as follows:
    <f:facet name="cognition_model_view.viewRepListVO">
           <af:group id="pt_g4">
              <af:commandImageLink id="pt_ot15" text="#{node.Viewname}"
                                                action="callRouter"
                                                actionListener="#{backingBeanScope.templateBacking.viewsGoActionListener}"
                                                icon="/pics/folder-icon.png"
                                                shortDesc="View: #{node.Viewdesc} | Filter: #{node.Filtername}"
                                                partialSubmit="true"/>
              <af:commandImageLink id="pt_ot16"
                                                icon="/pics/edit1.png"
                                                shortDesc="Edit View Config"
                                                partialSubmit="true">
                     <af:setPropertyListener from="#{node.Appname}"
                                                       to="#{backingBeanScope.templateBacking.editViewAppName}"
                                                       type="action"/>
                     <af:setPropertyListener from="#{node.Viewname}"
                                                       to="#{backingBeanScope.templateBacking.editViewName}"
                                                       type="action"/>
                     <af:setPropertyListener to="#{backingBeanScope.templateBacking.editViewType}"
                                                       from="#{node.Sourceview}"
                                                       type="action"/>
                     <af:showPopupBehavior popupId="::pt_p_edView"
                                                       triggerType="click"/>
              </af:commandImageLink>
            </af:group>
    </f:facet>The property listeners are to hold values that will be passed as parameters to the region's task flow.
    The Popup is defined here:
    <af:popup id="pt_p_edView" contentDelivery="lazyUncached"
                  popupCanceledListener="#{backingBeanScope.editPopupTFHandler.cancelPopup}"
                  popupFetchListener="#{backingBeanScope.editPopupTFHandler.showPopup}"
                  binding="#{backingBeanScope.editPopupTFHandler.editPopup}">
            <af:panelWindow id="pt_pw1"
                            title="#{backingBeanScope.templateBacking.editViewName} - Edit View Configuration"
                            contentHeight="250" contentWidth="500" stretchChildren="first" modal="true">
                <af:region value="#{bindings.dynamicRegion1.regionModel}" id="pt_r1"/>
            </af:panelWindow>
        </af:popup>The taskflow binding for the template is as follows:
        <taskFlow id="dynamicRegion1" taskFlowId="${backingBeanScope.editPopupTFHandler.dynamicTaskFlowId}" xmlns="http://xmlns.oracle.com/adf/controller/binding">
          <parameters>
            <parameter id="inputApplicationName" value="#{backingBeanScope.templateBacking.editViewAppName}"/>
            <parameter id="inputViewType" value="#{backingBeanScope.templateBacking.editViewType}"/>
            <parameter id="inputViewName" value="#{backingBeanScope.templateBacking.editViewName}"/>
          </parameters>
        </taskFlow>The managed bean to hold the dynamic taskflowId (editPopupTFHandler) is referenced in the adfc-config.xml file at "backingBean" scope, and looks like this:
    public class editPopupTFHandler {
        private String taskFlowId = "/WEB-INF/editViews/editViewsTF.xml#editViewsTF";
        private String emptyTaskFlowId = "";
        private String currentTaskFlowId = taskFlowId;
        private RichPopup editPopup;
        public editViewPopupTFHandler() {
        public String getDynamicTaskFlowId() {
            return currentTaskFlowId;
        public void cancelPopup(PopupCanceledEvent pce) {
            currentTaskFlowId = emptyTaskFlowId;
        public void showPopup (PopupFetchEvent popupFetchEvent) {
               currentTaskFlowId = taskFlowId;
        public void setEditPopup(RichPopup editPopup) {
            this.editPopup = editPopup;
        public RichPopup getEditPopup() {
            return editPopup;
    }If I don't define the bean at backingBean scope, I get a Target Unreachable error from any page using the template.
    When I attempt to use the link to the popup, the popup displays but the region content does not. Is this a scoping issue?
    Additionally, after pressing combinations of the 2 commandimagelink components, the first link stops submitting... this may be a side-effect of the region display though?
    Again, as I'm quite new to ADF I don't know how to overcome or avoid these issues, or whether there is a better method to achieve an edit capability in a popup window from a page template.
    Thanks for your help. I'm using JDeveloper 11.1.2.1.0 by the way.

    Hello again. I've managed to get the dynamic region displaying once I restarted JDeveloper and re-created the Region and backingBean. This has happened before - is JDeveloper known to get "confused" (like me!) in this way?
    There are still issues though. The backingBean contains a PopupCanceledListener as follows:
        public void cancelPopup(PopupCanceledEvent pce) {
            System.out.println("CANCEL POPUP - Current Task FLow now empty");
            currentTaskFlowId = emptyTaskFlowId;  // where emptyTaskFlowId = ""
            System.out.println("CANCEL currentTaskFlowId = " + currentTaskFlowId);
        }Simple enough, but the dynamicTaskFlowId is not holding its cleared value. Subsequent call to the getter shows a non-null value...?
    The Popup has the ContentDelivery="lazyUncached" and ChildCreation="deferred". The TaskFlow Binding has Refresh="default" and activation="deferred". With these property values the Popup is displays the correct value on its first use but then keeps that same value on any subsequent selection. I don't know whether this is because of the TaskFlow not correctly resetting or something else...
    Can anyone help me please. This is beyond frustrating. The behaviour of these various property settings is not at all predictable for me... Thanks.

  • How to package a page template as a reusable component??

    Hello, i need to package a page template as a reusable component, this template has images and lot of parameters.
    Any suggest?

    carlson.steve wrote:
    So I have done as you suggested and created a new and separate application to hold not only my jsf template files but also my trinidad-config and trinidad-skins xml files, packaged it into an ADF library Jar and then added that jar to the libraries of my forward facing public app but still can't get the public app to see either the jsf template or trinidad skinning files... what am I doing wrong here?Hi,
    I suggest that you verify that both pagetemplate-metadata.xml and oracle.adf.common.services.ResourceService.sva service resources file are packaged in the META-INF directory of your Template Project ADF Library JAR.
    Cheers,
    Nick

  • Page designer show small view when using page template and cannot be run

    Dear Experts,
    I need to make some page templates.
    I have build 2 simple page templates, let say template0 & template1 which template1 using template0.
    It show no any problem until I close my Jdeveloper & reopen it.
    When I reopen template1, it show so small in designer (Jdeveloper window).
    Is there any wrong?
    I have build another template, just 1 template.
    When I used it at the first time, no any strange behavior occur.
    After ... (I don't exactly when), it give me the same view in my designer.
    Then I force to use my first tempate (template1 which used template0 inside), I cannot run my application at all.
    After wait several minutes, I found error log in my log messages.
    *#### Server Instance DefaultServer could not be started: Server Instance was terminated.*
    Above the message, I found another error messages:
    *Jun 7, 2009 5:40:19 PM ComponentMetadataHandler _error*
    WARNING: error parsing component tag in file: null/tag:xmlContent/id:dte_160d74a
    org.xml.sax.SAXParseException: <Line 69, Column 7>: XML-20100: (Fatal Error) Expected 'EOF'.
    *     at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)*
    Is there anyone that can help me to find out why this error occured?
    Should I raise this problem to metalink or just can post it in this forum?
    Many thanks for your supporting...
    N.B: Below I attach my template0 (AHM000.jspx) and template1 (AHM001.jspx)
    Best regards,
    Dominic Chandra
    AHM000.jspx
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:c="http://java.sun.com/jsp/jstl/core">
    <c:set var="ahmwebtemplateBundleAHM000"
    value="#{adfBundle['com.ahm.lib.view.template.AHMWebTemplateBundle']}"/>
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <af:pageTemplateDef var="attrs">
    <af:panelSplitter orientation="vertical" splitterPosition="60">
    <f:facet name="first">
    <af:decorativeBox theme="dark" topHeight="0px">
    <f:facet name="center">
    <af:panelHeader text="#{attrs.pageTitle}">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar"/>
    <f:facet name="legend">
    <af:panelGroupLayout>
    <af:outputText value="#{attrs.pageName}"/>
    <af:outputText value="#{sessionScope.userState.userName}"/>
    <f:facet name="separator">
    <af:spacer width="10" height="10"/>
    </f:facet>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="info">
    <af:statusIndicator/>
    </f:facet>
    </af:panelHeader>
    </f:facet>
    <f:facet name="top"/>
    </af:decorativeBox>
    </f:facet>
    <f:facet name="second">
    <af:panelSplitter orientation="vertical" positionedFromEnd="true"
    splitterPosition="20">
    <f:facet name="first">
    <af:decorativeBox theme="light" topHeight="0px">
    <f:facet name="center">
    <af:facetRef facetName="mainArea"/>
    </f:facet>
    <f:facet name="top"/>
    </af:decorativeBox>
    </f:facet>
    <f:facet name="second">
    <af:panelGroupLayout inlineStyle="text-align:right;">
    <af:outputText value="#{ahmwebtemplateBundleAHM000.VERSION} #{attrs.appVersion}"
    inlineStyle="color:Navy;"/>
    <af:outputText value="© 2009 PT Astra Honda Motor"
    inlineStyle="color:Navy; font-weight:bold;"/>
    <f:facet name="separator">
    <af:spacer width="10" height="10"/>
    </f:facet>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    </af:panelSplitter>
    <af:xmlContent>
    <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
    <display-name>AHM000</display-name>
    <facet>
    <description>Main Area</description>
    <facet-name>mainArea</facet-name>
    </facet>
    <attribute>
    <attribute-name>pageTitle</attribute-name>
    <attribute-class>java.lang.String</attribute-class>
    <default-value>Page Title</default-value>
    <required>true</required>
    </attribute>
    <attribute>
    <attribute-name>
    pageName
    </attribute-name>
    <attribute-class>
    java.lang.String
    </attribute-class>
    <default-value>
    ahmxxyyynnnznn
    </default-value>
    <required>
    true
    </required>
    </attribute>
    <attribute>
    <attribute-name>
    appVersion
    </attribute-name>
    <attribute-class>
    java.lang.String
    </attribute-class>
    <default-value>
    1.0.0
    </default-value>
    </attribute>
    </component>
    </af:xmlContent>
    </af:pageTemplateDef>
    </jsp:root>
    AHM001.jspx
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:c="http://java.sun.com/jsp/jstl/core">
    <c:set var="ahmwebtemplateBundleAHM001"
    value="#{adfBundle['com.ahm.lib.view.template.AHMWebTemplateBundle']}"/>
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <af:pageTemplateDef var="attrs">
    <af:pageTemplate viewId="/template/AHM000.jspx">
    <f:facet name="mainArea">
    <af:panelSplitter splitterPosition="#{attrs.searchAreaPosition}">
    <f:facet name="first">
    <af:facetRef facetName="searchArea"/>
    </f:facet>
    <f:facet name="second">
    <af:panelSplitter positionedFromEnd="true"
    splitterPosition="#{attrs.infoAreaPosition}">
    <f:facet name="first">
    <af:facetRef facetName="mainArea"/>
    </f:facet>
    <f:facet name="second">
    <af:facetRef facetName="infoArea"/>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    <f:attribute name="pageTitle"
    value="#{attrs.pageTitle}"/>
    <f:attribute name="pageName" value="#{attrs.pageName}"/>
    <f:attribute name="appVersion" value="#{attrs.appVersion}"/>
    </af:pageTemplate>
    <af:xmlContent>
    <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
    <display-name>AHM001</display-name>
    <facet>
    <description>Search Area</description>
    <facet-name>searchArea</facet-name>
    </facet>
    <facet>
    <description>Main Area</description>
    <facet-name>mainArea</facet-name>
    </facet>
    <facet>
    <description>Info Area</description>
    <facet-name>infoArea</facet-name>
    </facet>
    <attribute>
    <attribute-name>pageTitle</attribute-name>
    <attribute-class>java.lang.String</attribute-class>
    <default-value>Page Title</default-value>
    <required>true</required>
    </attribute>
    <attribute>
    <attribute-name>
    pageName
    </attribute-name>
    <attribute-class>
    java.lang.String
    </attribute-class>
    <default-value>
    ahmxxyyynnnznn
    </default-value>
    <required>
    true
    </required>
    </attribute>
    <attribute>
    <attribute-name>
    appVersion
    </attribute-name>
    <attribute-class>
    java.lang.String
    </attribute-class>
    <default-value>
    1.0.0
    </default-value>
    </attribute>
    <attribute>
    <attribute-name>
    searchAreaPosition
    </attribute-name>
    <attribute-class>
    java.lang.Integer
    </attribute-class>
    <default-value>
    200
    </default-value>
    </attribute>
    <attribute>
    <attribute-name>
    infoAreaPosition
    </attribute-name>
    <attribute-class>
    java.lang.Integer
    </attribute-class>
    <default-value>
    200
    </default-value>
    </attribute>
    </component>
    <af:decorativeBox>
    <f:facet name="center"/>
    <f:facet name="top"/>
    </af:decorativeBox>
    </af:xmlContent>
    </af:pageTemplateDef>
    </jsp:root>

    Hi...
    Thanks for asking....
    As I put in my post before, I include template0 in my template1, as seen in template1 (AHM001):
    <af:pageTemplateDef var="attrs">
    *<af:pageTemplate viewId="/template/AHM000.jspx">*
    I use AHM000 inside AHM001. I use this approach to build many template based on one basic design.
    Actually, I don't think the problem is in page template usage because as I submitted paralel to Metalink, I've already not called template0 in template1 but I copy template0's contents to template1.
    Unfortunately, page designer show small view and below error messages still occured.
    *Jun 7, 2009 10:25:20 PM ComponentMetadataHandler _error*
    WARNING: error parsing component tag in file: /AhmTestTemplate-ViewController1-context-root/template/AHM001.jspx/tag:xmlContent/id:null
    org.xml.sax.SAXParseException: <Line 115, Column 51>: XML-20100: (Fatal Error) Expected 'EOF'.
    Fortunately my application can be run already altough the error message still logged.
    Many thanks,
    Dominic C.

  • Adding Pages Templates

    Using Pages 1.0.2. Just downloaded new Pages templates from KeynotePro but can't figure out how to load them.
    I created a Templates folder in the Pages>iWorkfolder, but still I don't see the new templates.

    Hello DarqDiva,
    go to the folder "<YourHD>/Users/<YourAccount>/Library/Application Support/iWork/Pages/Templates/My Templates" and save the templates there or create a new folder beside the "My Template" folder and save them inside. It is important that you don't save the templates in the folder "Templates", because Pages will not see them there. They have to be saved inside of a folder inside of "Templates".
    This folder name will be displayed in the bottom half of the left list column in the template choosing window.

  • Update on all pages but still editable

    I have a navigation bar that is slightly different for each page of the site.  Based on the current page you are on, the corresponding navigation button is "pressed".  The problem is that I need to change parts of the entire navigation bar a lot.  For example, I may need to add a new button, or change the name on something.  Is there any way to update all the pages, but still maintain the ability to edit them?  It seems that when I try to use a template in order for it to update I cannot then customize it on specific pages.

    A persistent page indicator on your site-wide menu would be a better option.  That way you don't need to customize menus on each page.
    http://alt-web.com/Articles/Persistent-Page-Indicator.shtml
    DW Templates are OK for small sites -- under 50 pages.  But you must re-publish every page that uses the Template.
    Look at Server-Side Includes.  With SSIs you open the file containing your menu HTML.  Make changes.  Save and upload to server.   Done!  A huge timesaver.
    Server-Side Includes
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    More on Server-Side Includes
    http://forums.adobe.com/message/2112460#2112460
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Error page template

    Hi
    We've recently upgraded to APEX 4.2.1 from APEX 4.1.1 and are updating our themes to take advantage of some of the new features.
    Previously we've used an error page template to display a nice error page when something has gone wrong. An easy way for us to test this, as most things are handled nicely within the application, is to manipulate the URL to go to a page that doesn't exist. In 4.1.1 this took us to a nice looking page, which used our template, saying that the page could not be found and to contact the application administrator. However in 4.2.1 it doesn't use the template and takes us to the standard error page which has no styling.
    I've tried searching for changes in this version that might cause this, but haven't found anything to explain it. The theme is still setup to use the Error Page template we've created which has the Error Page Template field entered.
    Does anyone know why it would stop using our error page template? And what we could do to correct it?
    Many thanks for your time,
    Sara

    SaraB wrote:
    Hi
    We've recently upgraded to APEX 4.2.1 from APEX 4.1.1 and are updating our themes to take advantage of some of the new features.
    Previously we've used an error page template to display a nice error page when something has gone wrong. An easy way for us to test this, as most things are handled nicely within the application, is to manipulate the URL to go to a page that doesn't exist. In 4.1.1 this took us to a nice looking page, which used our template, saying that the page could not be found and to contact the application administrator. However in 4.2.1 it doesn't use the template and takes us to the standard error page which has no styling.
    I've tried searching for changes in this version that might cause this, but haven't found anything to explain it. The theme is still setup to use the Error Page template we've created which has the Error Page Template field entered.
    Does anyone know why it would stop using our error page template? And what we could do to correct it?
    Many thanks for your time,
    SaraWhat I have found is that even though you define an error page template it will only be used by the errors that are set to display on error page. Eg. Validation error set to 'On Error Page'
    As the help text says:
    <ul>Specifies a page template to use for errors that display on a separate page as opposed to those that display inline. Leave this attribute blank if you do not wish to use a template designed to display errors.</ul>
    But if you use an error handling function you can probably decide this dynamically based on your page or error description etc in PL/SQL.
    But I never thought this will be used in case you try to access an invalid page because it is an 404 error

  • ADF Page templating vs Facelets

    Hi,
    We are considering to use templates for standardization of the layout of JSF pages. Until now we used to include header and footer jsp-fragments.
    Both ADF 11g and Facelets provide mechanism to create page templates. Has anybody experience with these methods?
    Are there known arguments when it's best to use one instead of the another?
    Regards,
    Arjan Jorritsma

    Hi All and Thanks Frank,
    I still having confusion with my project.
    I have created a template name templateChets.jspx and then i want to put searching functionality (It will search for patient mrn). Then I want the result of searching according to mrn will be pass to the main facet (that will be use by many pages). As i know template can't do it. So I'm trying to put page fragment into my template and using ADF TaskFlow. But i'm really unsure how to do after trying several times.
    The idea is other pages will use the template and in the same time they can use search functionality in my template.
    Is it, i'm doing the correct thing?
    Anyone can assist me?

  • Change the Page Template

    I can change the Page Template, for example, "One Level Tabs" to "Popup" at runtime?

    (sorry to budge in!)
    The question still remains: why would you want to do this? Or maybe, why not either make the page tab-based OR pop-up? My worry would be that your user opens the popup page, then navigates back to wherever the 'tabbed' version is and attempts to load that - what would happen then?
    If there is a solid design reason to do this, you could probably achieve it by making two copies of the same page - one being the 'tab' version and one the 'popup' (although further changes to the page would require double the work).

  • Any good online resources for pages templates?

    I typically use Google docs for basic word processing. Needed some more robust features from time to time, but I hate having to run Word in VM Ware and not a fan of Word anyway. Really loving Pages so far.  Any good online resources for pages templates?
    Trent
    < Edited By Host >

    There are several options for templates you can use in Pages. First, there those submitted by other users & available at iWork Community.
    You'll find some links in the Resources section  here.
    I haven't tried these Microsoft sites for awhile, so I'm not sure if these steps are still valid, but it does give you a starting place.
    Try Microsoft Office templates. to find links to many PC templates. Then comes the Microsoft trickery part. Choose the category then sub-category & then click the name of a template. Next is a page with a "download" button that takes you to the "Your operating system doesn't meet system requirements" page. All that means is that you can't use their automatic download service. Click the "download now" button in the section to manually download. Somewhere along the process was a license agreement. The file I chose downloaded as 06369101.cab. Double-clicking it launched Stuffit & resulted in a folder. I then had to change the .dot file in the folder to have the .doc extension. It then opened in Pages with only one unsupported warning.
    The Mactopia site has a lot less templates to choose from, but was less involved to download. Most templates for Word will open nicely in Pages. I haven't come across one that doesn't, but that doesn't mean someone else might. The only thing to watch for is the file extension. Some Word templates have an extension other than .doc. You will still be able to use them, just change the extension to .doc in the Finder or Pages won't recognized them as Word files. Of course, you can't change just any file's extension to .doc & have Pages open it. It must be a Word document.

  • Customising Webcenter Spaces Page Templates - "Import Portal Resource" N/A

    Hi,
    I am attempting to customise a Page Template for Webcenter Spaces, and I am trying to do so in JDeveloper.
    I have successfully opened the WebCenterSpacesResources project in JDeveloper, and also successfully downloaded the page template resource (.ear file).
    I am now trying to import this webcenter spaces resource (page template) into the project, as described in this step:
    http://download.oracle.com/docs/cd/E21764_01/webcenter.1111/e10148/jpsdg_wcsres.htm#CIHJFGJI
    The problem is, the "*Import Portal Resource*" option does not appear in the menu when I right-click on WebCenterSpacesResources project.
    I am using JDeveloper version 11.1.1.5.0.
    I have also downloaded and installed WebCenter Framework and Services Design Time extension.
    Any reason why I cannot see this option?
    Amanda.

    Hi,
    I have installed both of the extensions, but I went to:
    http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/156082.xml#oracle.webcenter.cust
    and dowloaded both (latest):
    WebCenter Framework and Services Design Time
    WebCenter Customization Framework Design Time
    and then installed them manually in my JDeveloper.
    I have restarted and the option still does not appear:
    http://oi52.tinypic.com/13yo02b.jpg
    How do I know that the extensions are installed? They seem to be when I look at the Help > About > Extensions
    http://oi51.tinypic.com/244xylh.jpg
    I have tried this with versions 11.1.1.5 and 11.1.1.4.
    Amanda.

  • Pages Template file size?

    I am using a Pages template to do a newsletter.  The file is so huge (19 MB) I can't email it out.  I have reduced the image sizes, I have reduced the number of pages (it's only 17 pages), I have taken out photos.  Still too big.  What more can I do?  Is the template itself causing this issue? 

    Are you running Pages for mac OS X or Pages for iOS ?
    As you give only infos upon iOS, I guess that it's Pages for iOS.
    If I am right, it would be more efficient to ask in the forum dedicated to Pages for iOS.
    Yvan KOENIG (VALLAURIS, France) mercredi 8 juin 2011 21:49:03
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Page template not loading into BC

    HI there
    I have created a new template by creating a page (not from masters) and have added {tag_pagecontent} by adding HTML, and uploaded it to BC. The template is not ppearing in templates.
    Can anyone please help me? Has something changed with last update?
    Thanks so much
    Bec.

    ok so I have create a page in my muse file and called it template_recipes
    Last time i did this I was told not to use a master page. So i created this page from scratch using no master, and embedded the html code tag {tag_pagecontent]
    Published it to BC and no template was found in "Page Templates" in BC
    So then i did the same steps but created the page with a Master and published it to BC.... Still no template in "page templates"
    Nothing is working and I am tearing my hair out... can anyone lhelp me please????

  • SharePoint Foundation 2013 - Wiki Page Template

    Hi there,
    is there a way to have templates for Wiki pages with SharePoint 2013 Foundation? We have a specific layout and want to have it on every new wiki page.
    Thank you!

    Hi 
    pls check this
    http://mosshowto.blogspot.in/2011/11/custom-template-wiki-foundation_01.html
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/ae453550-8503-4531-b4cf-50a4d157e36c/is-it-possible-to-create-wiki-page-templates-with-sharepoint-2010-foundation?forum=sharepointcustomizationprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

Maybe you are looking for

  • Software updates taking a very lonf time to download

    I am deploying patch Tuesday software updates and I am seeing the download of updates to the clients taking a very long time (7 hours to download 11 updates). I have set BITS throttling to 100 Kbps in my Default Client Settings policy but I didn't th

  • G/L a/c not dispalying in invoice posting (MIRO)

    Hai Guru's while posting invoice in MIGO, gl a/c not showing. For this any configaration needed. i want to show gl a/c also. Regards valluri

  • Resolutions no longer good?

         I had a couple calendar projects assembled prior to Photos update.  Now, all the images that were just fine in iPhoto all have the yellow triangle on them.  All the sudden, these images are considered "low resolution".  Really?  I took them with

  • Oracle 9.2.0.1 Standard Edition Silent Installation using Response file

    Does Oracle 9i Standard Edition come in 3 CDs??. I heard problems about providing response files to silent install Oracle 9.2.0.1 server. I am about receive a licensed copy of Oracle 9i and I am looking at creating a response file for silent installa

  • Setting Primary Language in a multilanguage OSD in Windows 8.1

    Hi! I use unattended xml file to add the keyboard languages during OSD, here is a snippet of the xml file:             <InputLocale>0409:00000409;0406:00000406;040b:0000040b;041d:0000041d;0414:00000414</InputLocale>             <SystemLocale>en-US</S