Copied a page from a co-worker, but design tab is empty.

My co-worker sent me a jsp and java file for a page he's developing so that
I could review it and do a little work on it.
When I open the jsp, I see the 3 tabs: Design, Jsp, and Java.
The Jsp and Java pages work fine, but the Design page is empty.
How do I find out what the problem is and fix it?
Thanks.

Here's the jsp file, though it shows up funny in the forum.
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
        <ui:page binding="#{ActiveIncidents.page1}" id="page1">
            <ui:html binding="#{ActiveIncidents.html1}" id="html1">
                <ui:head binding="#{ActiveIncidents.head1}" id="head1">
                    <ui:link binding="#{ActiveIncidents.link1}" id="link1" url="/resources/stylesheet.css"/>
                </ui:head>
                <ui:body binding="#{ActiveIncidents.body1}" id="body1" style="-rave-layout: grid">
                    <ui:form binding="#{ActiveIncidents.form1}" id="form1">
                        <ui:checkboxGroup binding="#{ActiveIncidents.areaCheckBox}" id="areaCheckBox"
                            items="#{ActiveIncidents.areaCheckBoxDefaultOptions.options}" onClick="common_timeoutSubmitForm(this.form, 'areaCheckBox');"
                            style="height: 72px; left: 336px; top: 24px; position: absolute" valueChangeListener="#{ActiveIncidents.areaCheckBox_processValueChange}"/>
                        <ui:checkbox binding="#{ActiveIncidents.noPower}" id="noPower" label="No Power"
                            onClick="common_timeoutSubmitForm(this.form, 'noPower');" style="position: absolute; left: 432px; top: 24px" valueChangeListener="#{ActiveIncidents.noPower_processValueChange}"/>
                        <ui:checkbox binding="#{ActiveIncidents.hold}" id="hold" label="Hold" onClick="common_timeoutSubmitForm(this.form, 'hold');"
                            style="left: 432px; top: 48px; position: absolute" valueChangeListener="#{ActiveIncidents.hold_processValueChange}"/>
                        <ui:dropDown binding="#{ActiveIncidents.allFlagsList}" id="allFlagsList" items="#{ActiveIncidents.allFlagsListDefaultOptions.options}"
                            onChange="common_timeoutSubmitForm(this.form, 'allFlagsList');" style="left: 552px; top: 24px; position: absolute; width: 216px" valueChangeListener="#{ActiveIncidents.allFlagsList_processValueChange}"/>
                        <ui:dropDown binding="#{ActiveIncidents.everyStatusList}" id="everyStatusList"
                            items="#{ActiveIncidents.everyStatusListDefaultOptions.options}" onChange="common_timeoutSubmitForm(this.form, 'everyStatusList');"
                            style="left: 552px; top: 72px; position: absolute; width: 216px" valueChangeListener="#{ActiveIncidents.everyStatusList_processValueChange}"/>
                        <ui:table augmentTitle="false" binding="#{ActiveIncidents.table1}" id="table1" sortPanelToggleButton="true" clearSortButton="true" deselectMultipleButton="true" deselectSingleButton="true"
                            style="left: 124px; top: 144px; position: absolute; width: 3720px" title="Active Incidents" width="1116">
                            <script><![CDATA[
/* ----- Functions for Table Preferences Panel ----- */
* Toggle the table preferences panel open or closed
function togglePreferencesPanel() {
var table = document.getElementById("form1:table1");
table.toggleTblePreferencesPanel();
/* ----- Functions for Filter Panel ----- */
* Return true if the filter menu has actually changed,
* so the corresponding event should be allowed to continue.
function filterMenuChanged() {
var table = document.getElementById("form1:table1");
return table.filterMenuChanged();
* Toggle the custom filter panel (if any) open or closed.
function toggleFilterPanel() {
var table = document.getElementById("form1:table1");
return table.toggleTableFilterPanel();
/* ----- Functions for Table Actions ----- */
* Initialize all rows of the table when the state
* of selected rows changes.
function initAllRows() {
var table = document.getElementById("form1:table1");
table.initAllRows();
* Set the selected state for the given row groups
* displayed in the table.  This functionality requires
* the 'selectId' of the tableColumn to be set.
* @param rowGroupId HTML element id of the tableRowGroup component
* @param selected Flag indicating whether components should be selected
function selectGroupRows(rowGroupId, selected) {
var table = document.getElementById("form1:table1");
table.selectGroupRows(rowGroupId, selected);
* Disable all table actions if no rows have been selected.
function disableActions() {
// Determine whether any rows are currently selected
var table = document.getElementById("form1:table1");
var disabled = (table.getAllSelectedRowsCount() > 0) ? false : true;
// Set disabled state for top actions
document.getElementById("form1:table1:tableActionsTop:deleteTop").setDisabled(disabled);
// Set disabled state for bottom actions
document.getElementById("form1:table1:tableActionsBottom:deleteBottom").setDisabled(disabled);
}]]></script>
                            <ui:tableRowGroup binding="#{ActiveIncidents.tableRowGroup1}" id="tableRowGroup1" rows="10"
                                sourceData="#{ActiveIncidents.incidentDataProvider}" sourceVar="currentRow">
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn1}" headerText="incidentid" id="tableColumn1" sort="incidentid">
                                    <ui:staticText binding="#{ActiveIncidents.staticText1}" id="staticText1" text="#{currentRow.value['incidentid']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn2}" headerText="version" id="tableColumn2" sort="version">
                                    <ui:staticText binding="#{ActiveIncidents.staticText2}" id="staticText2" text="#{currentRow.value['version']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn20}" headerText="custaffectedmanuallycalced" id="tableColumn20" sort="custaffectedmanuallycalced">
                                    <ui:checkbox binding="#{ActiveIncidents.checkbox1}" id="checkbox1" selected="#{currentRow.value['custaffectedmanuallycalced']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn25}" headerText="onhold" id="tableColumn25" sort="onhold">
                                    <ui:checkbox binding="#{ActiveIncidents.checkbox2}" id="checkbox2" selected="#{currentRow.value['onhold']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn26}" headerText="onholdby" id="tableColumn26" sort="onholdby">
                                    <ui:staticText binding="#{ActiveIncidents.staticText24}" id="staticText24" text="#{currentRow.value['onholdby']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn27}" headerText="onholdwhen" id="tableColumn27" sort="onholdwhen">
                                    <ui:staticText binding="#{ActiveIncidents.staticText25}" id="staticText25" text="#{currentRow.value['onholdwhen']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn28}" headerText="onholdcomment" id="tableColumn28" sort="onholdcomment">
                                    <ui:staticText binding="#{ActiveIncidents.staticText26}" id="staticText26" text="#{currentRow.value['onholdcomment']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn29}" headerText="incidenttreeid" id="tableColumn29" sort="incidenttreeid">
                                    <ui:staticText binding="#{ActiveIncidents.staticText27}" id="staticText27" text="#{currentRow.value['incidenttreeid']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn30}" headerText="inactivityreport" id="tableColumn30" sort="inactivityreport">
                                    <ui:checkbox binding="#{ActiveIncidents.checkbox3}" id="checkbox3" selected="#{currentRow.value['inactivityreport']}"/>
                                </ui:tableColumn>
                                <ui:tableColumn binding="#{ActiveIncidents.tableColumn31}" headerText="outagestatus" id="tableColumn31" sort="outagestatus">
                                    <ui:staticText binding="#{ActiveIncidents.staticText28}" id="staticText28" text="#{currentRow.value['outagestatus']}"/>
                                </ui:tableColumn>
                            </ui:tableRowGroup>
                        </ui:table>
                    </ui:form>
                </ui:body>
            </ui:html>
        </ui:page>
    </f:view>
</jsp:root>

Similar Messages

  • How do I move or copy a page from one pages doc to another?

    I used to frequently move or copy a page from one multiple-page Pages document to another just but dragging and dropping the thumbnail.  Since I upgraded I can't do this anymore.  How can I do it now?

    Rhosh18 wrote:
    I used to frequently move or copy a page from one multiple-page Pages document to another just but dragging and dropping the thumbnail.  Since I upgraded I can't do this anymore.  How can I do it now?
    It never worked that way in Pages '09. You have to copy and paste the Thumbnails.
    That no longer works in Pages 5. Sounds like you are not copying and pasting content because that certainly works. Read what VikingOS wrote and do precisely what he said.
    Peter

  • How do you copy a page from preview to duplicate it?

    Hello,
    I want to copy a page from preview so that I have 2 pages that are the same. Before I upgraded to Maverik, I used to be able to right click on the page (in the sidebar) I wanted, click "copy" then right click in the sidebar and click "paste".
    Now when I right click on the page in the sidebar I don't get the option to copy and paste.
    I found that if I opened a new copy of the same document, I could import it into my working draft then delete all of the pages I didn't want, but that is way too much work. If someone could help I would be very grateful.
    Thank you so much!

    Not exactly what you want, but Preview/Edit/Insert/then select the file. Preview/Edit/Delete pages you don't want. That is the only way I could figure out how to do it from within Preview.

  • Copying a page from one picture book into another

    Does anyone know how to copy a page from one picture book into another. I have made 2 books and would like to make a third consisting of pages from the first 2 but seem unable to do it without starting again, or at least starting from a duplicate of one and re doing all the missing pages.

    Garageclan
    Welcome to the Apple user to user assistance forums
    print each page you want to include in "book 3" to a PDF and use the send PDF to iPhoto option - this will give you the pages as images in iPhoto that you can them place into "book 3"
    See Old Toad's tutorial #19 for more details - http://web.mac.com/toad.hall/OldToadsTutorials/No._19.html - note that it is slightly different - you are only using the beginning part
    LN

  • Copy a page from one Document to another

    Can anyone help
    In Pages '08 we had the ability to copy a page from one document to another.
    In Pages '09 this does not seem possible.
    Does anyone have anwser....
    Thanks
    Message was edited by: AJCUR
    OK my bad
    I just realized that I was in Word Processing in one document and Page Layout in another and you cannot do the copy between the two. Changed the Blank documentto word processing and voila it worked.

    I think this might help. Go to the document you want to copy the page from and go to the "View" menu and choose "page thumbnail" so you can see the thumbnails on the side of the document. Right click (or control click) on the thumbnail of the page you want to copy and choose "copy.
    Go to the document you want to paste the page into and make sure you have the "View thumbnail" option turned on. If you already have some pages click on the page you want the new page to follow and then right click and paste the page where you want it. (you have to do this in the thumbnail view area, not in the actual document itself.) If you have inserted the page in the wrong spot, just drag it to the right location. note: I have tried dragging the thumbnail from one document to another and it does not work. Too bad because it works that way with a PDF documents in "Preview" app.

  • Error while copying a page from one application to another application

    Hi All
    I am using Oracle Apex 4.0
    I getting the error ORA-06502 Pl/Sql Numeric error character string buffer too small when i copying a page from one application to another application.
    Thanks & Regards
    Srikkanth.M

    I'm having the same issue. How did you solve this?

  • Copy a page from one app to another

    Is there a way to copy one page from an Application into another Application ?
    Thanks
    Francis.

    Francis,
    Please see copy Page/region (incl. elements...) to application ( using exp/imp page) ?
    Scott

  • Copy a page from one page group to another

    Hi
    Is it possible to copy a page from one page group to another?
    Regards,
    Lene

    Hi ,
    Through Portal it is not possible to copy a page from one page group to another .
    There is a feature in Portal WebDav .
    Through a DAV client you can copy page to your local system as a folder and then drag the page to the pagegroup you want to copy .
    Regards
    Medini

  • How do I copy a page from one pdf  document to another?

    I am a newbe!

    That was easy.Thank you.
         Re: How do I copy a page from one pdf document to another?
    created by George Johnson in Creating, Editing & Exporting PDFs - View the full discussion
    If you open both documents, you can drag a page from the Pages panel (on the left of the window) of one document and drop it into the Pages panel of another.
    You can also extract one or more pages from a document to create a new document, and then insert the pages from this new document into another. In Acrobat 11 you 'd do this by doing:
    Tools > Pages > Extract
    and then:
    Tools > Pages > Insert from File
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6163925#6163925
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6163925#6163925
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6163925#6163925. In the Actions box on the right, click the Stop Email Notifications link .
    Start a new discussion in Creating, Editing & Exporting PDFs at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0 .

  • Elements 12 (PC) loaded from cd, organizer works but editor says it is loading, grinds for 20 secs then disappears

    loaded Elements 12 (PC),  2 months ago both organizer and editor fully functional. Got message today free trial ran out and i needed to buy it.
    Reloaded from DVD, organizer works but editor will not load

    Two suggestions:  the first one is a workaround. You just have to drill down your program file tree to Adobe Photoshop Elements Organizer and find the .exe file - the one specifically for Organizer, not Elements.  Make a shortcut to that file on your desktop and it will open Organizer. The second suggestion resolved the problem altogether for me. I actually called Dell and after working with several different techs over several different days, I talked to a tech in premium support who was excellent. I discovered from them that it is actually a problem with the windows system files. I have 8.1.  I went through a "refresh" on my computer which rebuilt all the files. Then reinstalled Adobe as well as my other programs again and Photoshop Elements Organizer works from the standard desktop shortcut.

  • I'm trying to share a web page from safari by email but the recipient only sees a ? when they receive the email any suggestions why?

    I'm trying to share a web page from safari by email but the recipient only sees a ? when they receive the email any suggestions why?

    Ok..   see if emptying the Safari cache helps.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Quit and relaunch Safari and try sharing a webpage.

  • How do I copy a page from one Pages document to another using Pages 5.0?

    I posted this question on another page, and haven't recieved an answer to it yet. However I have found a temporary solution, so I am posting this here in case anyone else has a similar problem.
    The issue here is that I have just upgraded from Snow Leopard to Maverick (10.9.1), and my Pages also upgraded (to 5.0.1), altering my Pages documents. This is the issue, as as far as I can see the new Pages does not offer some of the basic needs that the old Pages did! In other words it is worse than the previous version.
    Using the upgraded new Pages 5.0.1 seems to result in some major editing problems for me. If you upgrade, make sure you KEEP the old version of Pages 09 (v 4.3). That is what has saved me!  If you have the same problems I have had - explained below, you will still be able to close the new version and open your Pages document in the old version, provided it is not a new Pages document. If it is, it will be possible to export it as a Pages 09 document and edit properly.
    After upgrading to the new Pages 5.0.1, when I open documents in Pages and try and copy a section from one document to another (easy before using the thumbnails) many of the Menu items previously available are visible but appear faded and are not possible, including Insert>Section Break/Page Break/Page Number and Edit>Cut/Copy/Delete/Undo/Redo
    This even happens if I duplicate the Pages document and try and do any of these from the Duplicate (which should be an easily editable copy).
    My solution has been to simply open all Pages documents that Iwant to edit (or may want to edit in future) in the old Pages app (v 4.3), which I never got rid of. That has meant I can continue editing and copying a section (of 1 or more pages) from one Pages document to another.
    If anyone reading this has figured out a way to edit Pages documents using the new version 5.0.1 please post an explanation, and I will try it!

    And there are those who don't like me repeating the same message over and over again in this forum!
    Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • Copying iweb pages from one computer to another

    I have iweb pages operational on a G5.
    I want to transfer them to iweb on my macbook instead.
    I don't want to re-create them from scratch.
    I have a .mac account.
    Both iweb programs are the same version.
    This is a mac! There must be an easy way to copy the web pages from one computer to another!
    I explored the domain file route, copied the file from my G5 to the macbook, and did not get the pages I wanted. Instead I got the start page template. My information was not there.
    Any help out there?

    All your information is in a single file called "domain"
    By default it should be located in your
    user/library/application support/iWeb/ folder.
    Find it, copy it, and move it to the new computer.
    The first time you use it on the new computer double click the newly moved "domain" file to start up the iWeb application. Once you do that iWeb will remember that that is the file to open on start-up.
    I use multiple computers to edit iWeb and to avoid confusion as to which "domain" file is the most recent, I just keep it on a flash drive. Be sure to keep "domain" backed up safely on your computers and off (CD disks, external hard drives, etc) because if you lose that one file, you've lost all your work. iWeb cannot edit published pages.
    The reason you got blank pages is that you have to double click on the newly moved "domain" file to start up iWeb. Otherwise iWeb will start from the blank "domain" file that is already on the computer. You can have many "domain" files on the computer, If you start the iWeb application by clicking the iWeb icon, it will open the last "domain" file edited on that computer, which isn't the one you just moved. There is no other way to access your work.
    Good luck, David
    ibook & imac   Mac OS X (10.4.8)  

  • How can I copy a page from one wiki to another?

    Using the Wiki function in OSX server, I am able to move a page from one wiki to another by clicking the gear icon. Is there a way to copy the page to another wiki while leaving it intact in its existing wiki? I have tried to copy/paste while editing a page, however much of the formatting does not properly migrated to the pasted content.

    What you are looking for is how to "duplicate" ca page.

  • I am new with iMac and I am trying to copy some file from my external HDD but it does not let me also I can't delete anything from this HDD using the finder. Can somebody help me , please?

    I am new with iMac and I am trying to copy some file from my external HDD that a used with my PC but it does not let me also I can't delete anything from this HDD using the finder. Can somebody help me , please?

    No, unfortunately, when you format a drive, it will erase all the contents. So you will need to find a temporary "storage" place to put the stuff using a PC so you have access to it. Then reformat using Disk Utility (Applications > Utilities). If only using with mac, format Mac OS Extended (Journaled) and use GUID Partition scheme under Partitions/Options. After formatting, you can drag the files back.

Maybe you are looking for

  • Is there a way to force the charset to utf-8 with the IIS plug-in?

    We're using AJAX. The initial request for the HTML has charset=utf-8 set on the HTTP header as seen in this Live HTTP Headers capture: http://plper.mysite.com/mysupport/index.jsf GET /mysupport/index.jsf HTTP/1.1 Host: plper.mysite.com User-Agent: Mo

  • Different profit centers in 2 line item of a FI document

    Hi Experts, In FI document posted from billing has got 2 different  profit center on each line item,  I would expect to see same profit center on both line items,  can you please advise why they are different. We are working on 4.7 and no concept of

  • Ebflow: Problem defining an external service using WF_EXTSRV

    I'm trying to define an external service for the Webflow to use. In transaction WF_EXTSRV I have to provide details of the service. One field requires the Logical System to be nominated. The help says that this entry must be in table TWPURLSVR. In ou

  • Premier Pro CS3 crashes with Canon 7D HD files

    I am just putting together a promo for a client, shot in HD on my Canon 7D. Everything went fine until 3 minutes into the project when Premier Pro CS3 refuses to render more than 1:30 minutes. (I already changed preferences to "Optimize rendering for

  • System Error on MB51 (CI_COBL) (Error G_COBL_CORE001)

    The original change requested me to save the time and date when reservation is saved ( MB21). To enhance this, I have added 2 new entries to table include CI_COBL (RSTIME and RSDATE) on table RKPF ( to save the time and date when user creates reserva