How to set page direction to be right-to-left

I need to change the direction of the page to be right to left
how can i do that
I build my page using ADF UIX components
This is the source code of my page
<?xml version = '1.0' encoding = 'windows-1252'?>
<page xmlns="http://xmlns.oracle.com/uix/controller"
xmlns:ui="http://xmlns.oracle.com/uix/ui"
xmlns:data="http://xmlns.oracle.com/uix/ui"
xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el"
xmlns:myTemplate="selfservice">
<templates xmlns="http://xmlns.oracle.com/uix/ui">
<templateImport source="mainTemplate.uit"/>
</templates>
<content>
<dataScope xmlns="http://xmlns.oracle.com/uix/ui">
<provider>
<!-- Add DataProviders (<data> elements) here -->
</provider>
<contents>
<document >
<metaContainer>
<!-- Set the page title -->
<head title="General Manager"/>
</metaContainer>
<contents>
<body>
<contents>
<form name="form0">
<contents>
<myTemplate:SelfService title="General Manager">
<contents/>
<tabs/>
<pageButtons/>
<globalButtons/>
<pageHeader/>
<start/>
<end/>
<about/>
<copyright/>
<privacy/>
<corporateBranding/>
<productBranding/>
</myTemplate:SelfService>
<formValue name="${bindings.statetokenid}" value="${bindings.statetoken}" id="_uixState"/>
<table model="${bindings.HrsVEmpPhonesView1}" id="HrsVEmpPhonesView13" partialRenderMode="multiple" partialTargets="_uixState" showAll="yes" width="900">
<contents>
<column>
<columnHeader>
<sortableHeader model="${ctrl:createSortableHeaderModel(bindings.HrsVEmpPhonesView1,'EmpNameAr')}"/>
</columnHeader>
<contents>
<textInput model="${uix.current.EmpNameAr}" columns="10" readOnly="true" onMouseOver="&quot;showTooltip(event,'This is a tooltip with a transparent shadow effect. Can you see the letters underneath the shadow?');return false&quot;"/>
</contents>
</column>
<column>
<columnHeader>
<sortableHeader model="${ctrl:createSortableHeaderModel(bindings.HrsVEmpPhonesView1,'JobDescr')}"/>
</columnHeader>
<contents>
<textInput model="${uix.current.JobDescr}" columns="10" readOnly="true"/>
</contents>
</column>
<column>
<columnHeader>
<sortableHeader model="${ctrl:createSortableHeaderModel(bindings.HrsVEmpPhonesView1,'PhoneExt')}"/>
</columnHeader>
<contents>
<textInput model="${uix.current.PhoneExt}" columns="10" readOnly="true"/>
</contents>
</column>
<column>
<columnHeader>
<sortableHeader model="${ctrl:createSortableHeaderModel(bindings.HrsVEmpPhonesView1,'CntCellPhone')}"/>
</columnHeader>
<contents>
<textInput model="${uix.current.CntCellPhone}" columns="10" readOnly="true"/>
</contents>
</column>
<column>
<columnHeader>
<sortableHeader model="${ctrl:createSortableHeaderModel(bindings.HrsVEmpPhonesView1,'CntHomePhone')}"/>
</columnHeader>
<contents>
<textInput model="${uix.current.CntHomePhone}" columns="10" readOnly="true"/>
</contents>
</column>
<column>
<columnHeader>
<sortableHeader model="${ctrl:createSortableHeaderModel(bindings.HrsVEmpPhonesView1,'IaigcEmail')}"/>
</columnHeader>
<contents>
<textInput model="${uix.current.IaigcEmail}" columns="10" readOnly="true" />
</contents>
</column>
</contents>
<tableSelection/>
</table>
</contents>
</form>
</contents>
</body>
</contents>
</document>
</contents>
</dataScope>
</content>
<handlers>
<!-- Add EventHandlers (<event> elements) here -->
<event name="goto sort" source="HrsVEmpPhonesView13">
<invoke method="handleTableUiEvent" javaType="oracle.cabo.adf.rt.AdfUtils">
<parameters>
<parameter javaType="oracle.adf.model.binding.DCIteratorBinding" value="${bindings.HrsVEmpPhonesView1Iterator}"/>
<parameter javaType="oracle.cabo.servlet.expl.ControllerImplicitObject" value="${uix}"/>
</parameters>
</invoke>
</event>
<event name="select" source="HrsVEmpPhonesView13">
<set target="${bindings.HrsVEmpPhonesView1Iterator}" property="currentRowIndexInRange" value="${ui:tableSelectedIndex(uix, 'HrsVEmpPhonesView13')}"/>
</event>
</handlers>
</page>

Dear Shay
Thank You for your replay
I've read this link Before but i want an example
I'll be so grateful if you write me a sample code,because this is the first experience for me to do this.
Thanks in advance

Similar Messages

  • How to set Decimal Point position from right to left Serial Read Evaluate Number within Range over RS-232

    I am new to Labview, I am communicating with a TQ8800 Torque meter via RS-232. The 16 digit data stream is as follows:
    D15 D14 D13 D12 D11 D10 D9 D8 D7 D6 D5 D4 D3 D2 D1 D0
    Each digit indicate the following status :
    D0 End Word
    D1 & D8 Display reading, D1 = LSD, D8 = MSD
    For example :
    If the display reading
    is 1234, then D8 to D1 is :00001234
    D9 Decimal Point(DP), position from right to the left
    0 = No DP, 1= 1 DP, 2 = 2 DP, 3 = 3 DP
    D10 Polarity
    0 = Positive 1 = Negative
    D11 & D12 Annunciator for Display
    Kg cm = 81 LB inch = 82 N cm = 83
    D13 1
    D14 4
    D15 Start Word
    I am using a modified version of the basic_serial_write_read.vi. I am attempting to parse the 16 digit data stream extracting out the number and whether it is positive or negative. I am having trouble with the decimal point placement. Is there an example that could help me with this? After the number is parsed I am then comparing it to see if it is within +/- 9.2 N cm. If it is then the test passes. I am outputing the data to a file. I have included the vi. Also how can I check for different units of the annunciator. Any help would be appreciated.  Thank you.
    Attachments:
    basic_serial_read.vi ‏100 KB

    What is the definition of the End Word?  You will likely need to figure this out experimentally (the manual doesn't seem to define it).  Whatever it is, you should set that as the termination character and enable the termination character.  That will help you in keeping your messages in sync.  Just tell the VISA Reads to read more than a message should be, something like 30 should work nicely.
    The error you are seeing is a buffer overload.  This means that the instrument is sending data to you faster than you can process it.  So you need to figure out how to perform the read faster.  File IO is slow.  So you should put that into a seperate loop so that your loop does nothing but read the data from the port as quickly as the data comes in.  Use a queue to send the data from the reading loop to the logging loop.  This is known as a Producer/Consumer.
    And here is a cleaned up version of your code.  No need for your express VI or the formula node.  Some other general cleaning up also done to make it easier to read.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    serial read.png ‏80 KB

  • How to set page margins in Numbers 3

    I just migrated from MS Excel after decades of use. I can't find out how to set page margins using the new Numbers 3 version. I believe I've exhausted all reference materials and the most relevant was an method in Numbers 8 & 9... both of which have a different top menu selection.  The answer is probably right in front of me and simple as it sometimes happens when learning new software...

    Hi caforestfire,
    There is no direct equivalent to page margins in Numbers 3.0. It's more oriented toward sharing on the web and on iPad screens than toward traditional printing.
    However, there are ways to achieve the effect of margins.  The idea is to first position your content (tables, charts, etc) on the canvas of a sheet, using rulers and guides if you want (you can drag the rulers onto the canvas to help in placement):
    Then you File>Print and in Print Preview fiddle with the slider until you get the white space you want around your content:
    Then click Print.
    For many purposes it works quite well. It's just a different approach from what we're used to in Excel, and the old Numbers 2.3.
    SG

  • How to set page number & current date in sqlplus result

    how to set page number & current date in sqlplus result

    Hi,
    Use the TTITLE command. For example:
    SET     PAGESIZE     15
    TTITLE     LEFT  &_date     RIGHT  "Page:" FORMAT 999 sql.pno     SKIP 2
    SELECT     ROWNUM
    ,     ename
    FROM     scott.emp
    ;Output:
    12-Jan-2011                    Page:   1
        ROWNUM ENAME
             1 SMITH
             2 ALLEN
             3 WARD
             4 JONES
             5 MARTIN
             6 BLAKE
             7 CLARK
             8 SCOTT
             9 KING
            10 TURNER
    12-Jan-2011                    Page:   2
        ROWNUM ENAME
            11 ADAMS
            12 JAMES
            13 FORD
            14 MILLER 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and the results you want from that data. If your question is based on commonly available tables, like those in the scott schema, then you don't have to post any sample data: just post the output.
    Explain how you get those results from that data.
    Always say what version of Oracle (and other relevant softward, SQL*Plus in this case) you're using.

  • How to set page numbers in scripts

    Hi,
        i want page numbers at bottom of page,
      please tell me how to set page numbers in scripts?

    Hi,
    In footer
    use this
    &PAGE& / &SAPSCRIPT-FORMPAGES&
    &PAGE& of &SAPSCRIPT-FORMPAGES&
    reward if it helps..
    regards,
    Omkar.

  • How to set page break for Narrative view???

    Hi All,
    I have created a report in Narrative view using HTML code. I am stuck how to set page break based on a column in Narrative view. If anybody is aware of the issue pls let me know how to overcome this situation. Or if this can be done using HTML code itself pls let me know how to do it.
    Thanks & Regards
    Thenmozhi

    Hi Honey,
    I am not sure on ur requirement but you can achieve page break with a column using pivot view by dragging that column into section area and editing section properties to Insert Page break option.

  • How to view page info other then right click mathod

    how to view page info other then right click mathod

    I'm not sure exactly what you are after but if I remember correctly Fx3 Tools menu has "Page Info" with information the same, or at least similar, to that in '''the-edmeister''''s method.

  • Hi guys. Just a quick question. My wife has a Mac Book Pro and when she is browsing the web she can use a two fingered gesture to go back to her previous page (by swiping from right to left). Is there any way to set that up on my iPad Mini. Many thanks.

    Hi guys. Just a quick question. My wife has a Mac Book Pro and when she is browsing the web she can use a two fingered gesture to go back to her previous page (by swiping from right to left). Is there any way to set that up on my iPad Mini. Many thanks.

    Not in the Safari browser she can't. That is not supported on the iPad. There are other mobile browsers that do have that functionality - one is iCab Mobile.
    https://itunes.apple.com/us/app/icab-mobile-web-browser/id308111628?mt=8

  • New comer ask 2 simple questions:how to set the use of the right click of

    New comer ask 2 simple questions:how to set the use of the right click of your mouse?
    I don't know why when i click the right button of my mouse in logic, sometimes it's the same funcion as my left one, some times it's the same function that opens the tool menu....But in MacOSX,it's all okay.Just the weired thing in logic ,please help
    2.is there any kind of filter in Score? I mean, in midi track I have a C1 note, and I don't want the C1 note shown in my score, I want every note show which are above C2, like a filter. I think this is helpful dealling with some keyswich things,how can we do that?

    In Preferences -> Global -> Editing you can choose weather right click is assignable or opens the tools box.
    Not to sure about the score dude

  • How can i display at  JTextArea from right to left

    how can i display at JTextArea from right to left?
    i try to write setAlignmentX(JTextArea.RIGHT_ALIGNMENT)
    but this not help,
    thanks for help.

    use this
    JTextArea.applyComponentOrientation(java.awt.ComponentOrientation.RIGHT_TO_LEFT);

  • Do any one knows how to add those arrows from the right and left side of the screen in the youtube widget which allows you to navigate back and forth between video clips?

    do any one knows how to add those arrows from the right and left side of the screen in the youtube widget which allows you to navigate back and forth between video clips?

    do any one knows how to add those arrows from the right and left side of the screen in the youtube widget which allows you to navigate back and forth between video clips?

  • Set page direction in source code

    Hello,
    I would like to know how I can change the page direction in the source code of a backing bean.
    Thanks.

    I mean that the direction of the page has to be left-to-right or right-to-left.

  • How to set pages to export all doc's in PDF format as default

    Could anybody tell me how I can set pages to save/export all the documents produce in PDF format. I run a small plumbing company and like to send all my estimates in PDF.

    You can use Automator action –Launch AppleScript, insert following code into:
    set destF to (path to desktop folder)
    tell application id "com.apple.iWork.Pages"
      set fName to name of the front document as string
      set fName to text 1 thru -7 of fName
      set destLoc to ((destF as string) & fName & ".pdf")
      export front document to file destLoc as PDF
    end tell
    Select no input, you can limit this service for Pages only (not necessary), and save it as Service.
    In system Preferences you can now add shortcut for this action.
    Script always export front (active) document to PDF on your Desktop (overwrite existing!!).
    This could help: http://www.ostricher.com/2014/12/how-to-assign-keyboard-shortcuts-for-os-x-apps/

  • How to set page permission at runtime?

    Hi,
    I created a portal with several pages in a webcenter portal application.
    I have added most of the page in the pagehierarchy and I have set their required security permission.
    However, I forgot to add one page in my page hierarchy so what is happening is that the page is not being displayed.
    I actually wanted to users with anonymous role to be able to view this page.
    Now my question is, is there a way at runtime to set the page security of that page by using any tool such as console or em?
    I dont want to redeploy my application since it is already running
    I am just not sure how to set the page security at runtime.
    Thanks.
    Webcenter 11.1.1.6

    Neliel,
    You can use the Administration pages to do so.
    Go to the administration page, select the resources tab - Structure - Pages
    Highlight your page and select Set Access fromn the action menu.
    See also this section in the documentation.
    Kind regards,
    Rob

  • How to set page title at runtime

    Hi,
    I'm doing a simple Visual web JFS application that has 2 pages.
    Could you tell me how to set the second page title at runtime based on the input in the first page?
    now I always have the 'http://localhost:8080/myApp/faces.Page1.jsp' on the tab when it goes to second page.
    thanks!

    I am not at all familiar with JSF, but if it was JSP, I'd use this.
    [http://www.w3schools.com/TAGS/tag_title.asp]

Maybe you are looking for

  • Video Discolored

    Hi there...I am using a Sanyo VPC-TH1 camcorder. For reasons still unclear to me, I have been able to put a recent video into iMovie no problem, yet some from the summer (that went into iPhoto first) I was not able to import into iMovie '08. I've bee

  • Safari can't open a website because Mac OS X doesn't recognize Internet addresses starting with "http:". WHAT??

    Today I have been receiving intermittent error messages while running Safari v5.0.6 on my iMac running Mac OS X v 10.5.8 that Safari cannot open internet sites starting with https: or http: because OS X does not recognize https: or http:. It seems to

  • Kindly explain cenvat in this example

    Dear experts, I am an abapper.Recently i have a requirement to work on a cenvat report.So i am set forth to know what is cenvat first and i am more confused. I take this example here Manufacturer ---> Purchase raw material -> Make finsih product -> S

  • J_1IRG23D Excise Duty Base Value is not Updated

    Hi all, while doing the Depot sales after Depot Excise Invoice J1IJ the Excise Duty Base Value is not updated in J1iDEPOTSTOCK1 (display depot stock) and also in table J_1IRG23D.

  • Electronic batch Record

    Hi Experts,                 I have configured all the setting required for Electronic batch Record, & when i am trying to approve the batch record its gives me an error as Inspection lot status is not LOLK. UD & ICCO which is correct, But when go to