Combine iWeb with Pages and ExcelMac

I would like to introduce a table with data and some functions in iWeb.
The objective is to let the user of the web change the data and let him/her to see the result in the cells where the functions are.
I've tried in the easy way: copy-paste and it doesn't work because iweb copy it as an image not as a excel/pages table.
Please help me,
Thanks you very much!

Read this : [Create and add a TABLE in iWeb|http://www.wyodor.net/blog/archives/2010/01/entry_297.html]
[sample 1|http://cafenoir.atspace.com/Maaskant/Seabreeze.html]
[sample 2|http://cafenoir.atspace.com/Maaskant/Experiment.html]
[sample 3|http://cafenoir.atspace.com/roodhout/Prices.html]
Visitors cannot change the data in the table.

Similar Messages

  • I purchased a IPad Air with Pages and Numbers included. I was told I could use these apps on my mac book and other devices. How do I sync or access these from my mac.

    I purchased a IPad Air with Pages and Numbers included. I was told I could use these apps on my other devices like my MacBook. How do I sync or add these to my macBook?

    the free apps are only for ios device (iphone ipad ipod touch) and do not work on mac computers. if you do get pages and numbers on your mac though you can sync the information using icloud

  • I have the lengthy code for a PayPal button. I tried to past it in an iWeb welcom page and all I get is the code. No button. Can you help me?

    I have the lengthy code for a PayPal button. I tried to past it in an iWeb welcome page and all I get is the code. No button. Can you help me?

    OT

  • Safari tries repeatedly to open a page. The page partially opens but then Safari reports that there's something wrong with page and I get an error message. This is happening at too many web sites for one site to be having issues.

    Safari tries repeatedly to open a page. The page partially opens but then Safari reports that there's something wrong with page and I get an error message. This is happening at too many web sites for one site to be having issues.

    I have a similar problem, Safari cannot load a complet page. It stalls e.g. ["38 of 42"]. sometimes it will complete loading after a long wait. just as often it will never complete the page,
    The same thing happens in chrome and firefox but safari on my iPad works just fine.
    I have the latest version of everything
    I assume there is a system problem but cleaning up permissions does not help

  • Can i safely trash Iwork '08 since i have already Installed Iwork '11 or will i loose my documents made with pages and numbers '08???

    can i safely trash Iwork '08 since i have already Installed Iwork '11 or will i loose my documents made with pages and numbers '08???

    You can have multiple versions installed simultaneously.  It won't hurt to delete the '08 apps, because the '09 apps will convert '08 to '09, but there is no reason to do the deletion.
    You say that you have iWork '11.  If that's true, it's really big news.  More likely, you have iWork '09.
    Jerry

  • Problems with page and event paramters in java portlets

    Hi there!
    Following the documentation in "A primer on Portlet Parameters and events" and "Adding Parameters an Events to Portlets" I tried to develop two portlets (who will be at the same page), one showing some content of a repository (with possibilities to browse throw it) and another showing a sitemap of the repositories whole content, presenting links to the content's pages to be shown in the content portlet.
    So I added:
    1. a page parameter called pageMenuID to identify the current content page to be shown in the content portlet
    2. an input parameter for content portlet called portletMenuID. This input parameter is mapped to the page parameter pageMenuID
    3. an event for content portlet called changeContent with output parameter contentMenuID. When this event rises, "go to page" is set to the current page and the output parameter contentMenuID is mapped to the page parameter pageMenuID.
    4. an event for sitemap portlet called changeContentFromSitemap with output parameter sitemapMenuID. When this event rises, "go to page" is set to the current page and the output parameter sitemapMenuID is mapped to the page parameter pageMenuID.
    This is the code for some constants and a function to build the links in the content portlet, that I want to use:
    // page parameter (shouldn't be used here)
    private final static String pageParamMenuID = "pageMenuID";
    // parameter names as given in providers.xml:
    // portlet input parameter
    private final static String inputParamMenuID = "portletMenuID";
    // event name
    private final static String eventName = EventUtils.eventName("changeContent");
    // parameter name for event parameters
    private final static String eventParamMenuID = EventUtils.eventParameter("contentMenuID");
    String getEventUrl( PortletRenderRequest portletRequest, long menuID) {
    NameValuePair[] eventParams = new NameValuePair[2];
    eventParams[0] = new NameValuePair(eventName,"");
    eventParams[1] = new NameValuePair(eventParamMenuID, "" + menuID);
    try {
    return PortletRendererUtil.constructLink(portletRequest, portletRequest.getRenderContext().getEventURL(),
    eventParams,
    true,
    true);
    } catch (Exception e) {
    return "null";
    This is the analog code from the sitemap portlet:
    // page parameter defined on "edit page mode" (shouldn't be used here)
    private final static String pageParamMenuID = "pageMenuID";
    // parameter names as given in providers.xml:
    // event name
    private final static String eventName = EventUtils.eventName("changeContentFromSitemap");
    // parameter name for event parameters
    private final static String eventParamMenuID = EventUtils.eventParameter("sitemapMenuID");
    String getEventUrl( PortletRenderRequest portletRequest, long menuID) {
    NameValuePair[] eventParams = new NameValuePair[2];
    eventParams[0] = new NameValuePair(eventName,"");
    eventParams[1] = new NameValuePair(eventParamMenuID, "" + menuID);
    try {
    return PortletRendererUtil.constructLink(portletRequest, portletRequest.getRenderContext().getEventURL(),
    eventParams,
    true,
    true);
    } catch (Exception e) {
    return "null";
    But what actually happens is nothing. I also tried to construct the links with EventUtil.constructEventLink() with the same result. Checking the produced html-code in the browser shows that the same URLs are produced. So I'm of the opinion, that proper event links are created.
    After checking the sent and received request parameters I came to the conclusion, that the event output parameters are never mapped to the page input paramters, as they should. So I changed the code to the following:
    // page parameter (shouldn't be used here)
    private final static String pageParamMenuID = "pageMenuID";
    // parameter names as given in providers.xml:
    // event name
    private final static String eventName = EventUtils.eventName("changeContentFromSitemap");
    // parameter name for event parameters
    private final static String eventParamMenuID = EventUtils.eventParameter("sitemapMenuID");
    String getEventUrl( PortletRenderRequest portletRequest, long menuID) {
    NameValuePair[] eventParams = new NameValuePair[1];
    eventParams[1] = new NameValuePair(pageParamMenuID, "" + menuID); <-- Note that the page parameter and not the event output parameter is used here -->
    try {
    return PortletRendererUtil.constructLink(portletRequest, portletRequest.getRenderContext().getEventURL(),
    eventParams,
    true,
    true);
    } catch (Exception e) {
    return "null";
    Now everything works fine, including addition of persistent private portlet parameters and further input/page/event parameters as well as working with a third portlet with performs a search (and presents the search results as links which change the content in content portlet).
    But this is actually NOT the way it should work: The names of the page parameters are hard-coded in the portlets, so the roles of page designer and portlet developer are not separated in the way it is presented in the documentation. I coulnd't find a way to map the event output parameters to the page parameters to work this out.
    Now I wonder whether there's some known bug in PDK or perhaps a mistake in the documentation or wether I'm just missing doing the right things. I've already read some postings in this forum concerning this problem (for example how to change the query??? but I think I've done all the things that are suggested there (checked the entries in provider.xml and the proper mapping of page parameters, public (input) portlet parameters and event output parameters, also the way I read the received request parameters and build the links)
    Has anybody an idea what's wrong here?
    Best regards
    Torsten

    Hi Amjad,
    thank you very much for time and effort you spent on helping me solving this problem.
    Unfortunately, I think I already tried what you suggest in your answer, but without success. From my experience, the following two calls:
    1.
    <%!
    private static String eventName = "changeContent"
    private static String eventParamID = "menuID"
    String getEventUrl(PortalRenderRequest prr, long menuID) {
    NameValuePair[] eventParams = new NameValuePair[1];
    // no addition of eventName in the array
    eventParams[0] = new NameValuePair(eventParamID, "" + menuID);
    return EventUtils.constructEventLink(prr, eventName, eventParams, true, true);
    %>
    <a href="<%= getEventUrl(portletRequest, 1234) %>">some link for ID 1234</a>
    2.
    <%!
    private static String eventName = EventUtils.eventName("changeContent");
    private static String eventParamID = EventUtils.eventParameter("menuID");
    String getEventUrl(PortalRenderRequest prr, long menuID) {
    NameValuePair[] eventParams = new NameValuePair[2];
    eventParams[0] = new NameValuePair(eventParamID, "" + menuID);
    eventParams[0] = new NameValuePair(eventName,"");
    return PortletRendererUtil.constructLink(prr, prr.getRenderContext().getEventURL(), eventParams, true, true);
    %>
    <a href="<%= getEventUrl(portletRequest, 1234) %>">some link for ID 1234</a>
    produce identical links. I took the second way because it is easer to add private portlet parameters to the link: just as additional NameValuePairs in the eventParam- Array (name constructed with HttpPortletRendererUtil.portletParameter()), instead of constructing the link "by hand" as mentioned in the javadoc for constructEventLink(). I have to add these private portlet parameters here because when an event from a private parameters owning portlet is fired, the private parameters are lost (in difference to when an event from ANOTHER portlet is sent).
    So I think, when you also look closely to the code snippet I added in the first posting, I made shure that I added the name of the event and not just the event parameters to the link.
    I hope that I understood your answer right. Perhaps you have another idea what might be wrong. Thank you again,
    best regards
    Torsten

  • Synching problems with pages and numbers

    After an initial problem with synching which was resolved with Yosemite Pages and Numbers have been synching across all my devices for a couple of weeks and now all of a sudden they have stopped again!! They synch across my phones and iPad but not to my macbook pro!! Very very annoying! How do I resolve it?

    Found a solution, but it is odd:
    On the 2008 Mac Pro, I UNCHECK the boxes beside Pages and Numbers in System Preferences > iCloud > iCloud Drive > Options. Now Pages and Numbers will properly save edited documents to the appropriate folders on iCloud Drive.
    Go figure ...
    Hope that this helps someone else.
    Jon

  • Problems with Pages and Numbers using iCloud Drive on early 2008 MacPro, Yosemite

    One of my computers, an early 2008 MacPro running Yosemite, will NOT save Pages or Numbers documents to iCloud Drive from within those applications.  I see the little iCloud Drive error badge next to the file name in Finder after I try to save.  However, on the SAME computer I can save Pages and Numbers documents to a local drive (e.g., to my Desktop) and then use the Finder to drag the documents to iCloud Drive successfully.  Another computer, a MacBook Pro running Yosemite, has no problems using iCloud Drive to create, edit and then save Pages and Numbers documents stored on iCloud Drive.  I have tried "turning off" iCloud Drive for Pages and Numbers in System Preferences on the Mac Pro and then turning it back on to no effect.  I have also logged out of iCloud Drive on all of my devices (which include two iOS devices) and then logging back in to ensure that I'm using the same login id on all devices, again with no apparent change.
    Any suggestions for my next steps in attempting to solve this issue?  Is there any way to get more information about precisely what type of error is occurring?  Hovering over the badge only shows "Error".
    Thanks in advance.
    Jon

    Found a solution, but it is odd:
    On the 2008 Mac Pro, I UNCHECK the boxes beside Pages and Numbers in System Preferences > iCloud > iCloud Drive > Options. Now Pages and Numbers will properly save edited documents to the appropriate folders on iCloud Drive.
    Go figure ...
    Hope that this helps someone else.
    Jon

  • When I purchased my Mac I bought it with "pages" and "iPhoto" and "iMovie" installed, but when i try to update it says that I need to update from another account, but I have only had one Apple account, what can I do?

    When I purchased my Mac I bought it with Apps installed, when I go to update them, it says I need to update on a different Apple account. I have only ever had one Apple account, what can I do? The Apps are iPhoto, iMovie, Pages, and Keynote. Thanks for your help. Looking forward to suggestions.

    Please take each of the following steps until the problem is resolved.
    Step 1
    Follow the directions in this support article.
    Step 2
    Associate your Apple ID with your user account. Then sign in to the App Store with the same ID.
    Step 3
    Triple-click anywhere in the line below on this page to select it:
    /Library/Caches/com.apple.appstore/adoption.plist
    Right-click or control-click the line and select 
    Services ▹ Reveal
    from the contextual menu.* A folder may open with a file named "adoption.plist" selected. If it does, move the file to the Trash. You may be prompted for your administrator password. Log out, log back in, and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Step 4
    Contact Mac App Store Customer Service.

  • Working with Pages and Word-questions!

    NOTE: Sorry for the similarity of this to my post a few minutes ago titled "Which do I use, Pages or Word)? I learned some things through experimentation and have created subtler and more challenging questions for you.
    Help me out here (please). I am now working with Pages, sharing documents with dozens of behind the times colleagues who are using some old program called "Word." It's my job to work with these people and I'm trying to make it as easy for everyone as possible.
    Do I have this right? When I create a document (or open an old Word document into pages), in order to be able to share it with people, I save it, and check the box to save a copy in Word format. Then when I send my documents, it works like a charm. Yes?
    If I start by opening a Word document, and every time I save I check "save copy to Word," I end up with only one document, no version in Pages. If I start with a Pages document, or save without checking the box, I end up with two separate versions of the document (like when I create a pdf)? It appears that if I I want to keep working in the Word format, every time I save it will give me a dialog box and make me check the box (and possibly select my location). This is cumbersome since I am now in the habit of saving often (you learn that when you work with Word for the Mac for any period of time--bomb, bomb, bomb). So, an I correct in assuming that if I want to save regularly, I really have to work in Pages, and then be scrupulous about saving into Word when I'm done for the day, or just before I send? It's sort of a pain in the butt, although I can learn to do it--I just want to make sure I'm not missing something here. Also, is there an autosave function so I don't have to rely on my discipline? Or does it never ever bomb?
    What happens if I open the Word version and make changes to it? Do I have to do something differently to make sure I have both versions identical? Am I better off always to open the Pages document to work on, then save and send?
    Do I always then have two versions of the same document (like I would if I did this same thing with pdf)?
    How do I make sure that the Word version is always up to date since that is the one I am sending to colleagues? Do I always have to save and check the box, and then select the correct document to send?
    I do see that when sending a single document I can easily send it while I am in the document itself. When I do this, selecting to send it as a Word document (or a pdf for that matter), will it send the version I most recently saved, or the version that is on my screen (if I forgot to save changes)?
    FInally, I'd be open to any tips from people working regularly with others who must use Word. I want it to work as simply as possible, but want to set up some good habits from the beginning.
    Finally, finally, have you had problems with compatibility. I have to say that there have been very few Word document yet that I've opened that I haven't gotten a message that says that Pages doesn't support some aspect of the document and formatting is removed, or spacing is different, etc. The most common is that "paragraph borders operate differently so all borders except outside borders have been removed." I'm a bit nervous about this--will I be getting documents from others that I can't trust? Will I have to ask them to send a pdf as well so I can confirm that I got it right? Can anyone ease my mind? Or am I living in reality?
    Thanks a million!
    EagerLearner
    Message was edited by: eagerlearner

    Well yes they are not the same program so there will be differences.
    For example Pages only allows a border all the way around a paragraph with few options on the style of line, which is why you got the warning.
    A workflow would consist of you doing your work in Pages however you like it and when you have finished and saved, making a Word copy which you despatch to your colleagues and then throw away.
    Of course this is more cumbersome than sticking with MsWord which is another option. You choose. It comes down to whether or not you have to tightly conform and interact with Word users. Maybe Pages is not for you, or even NeoOfffice which is a clone of MsOffice.
    Test it. If it works and you like it stick with whatever solution works for you.

  • Problems with pages and mail merging from Address Book

    hey guys. I have just created an invitation using one of the templates in Pages. this template is for four postcard size invites on one sheet of A4. i want to merge addresses from my address book. i can do the merge except that rather than four different contacts on each page i end up with four of the same on each page before it moves on the next contact on the next page. what i want to do is for it to merge one address per postcard. in Word i would put 'next' as the last field in the merge fields but i cant find a similar command in Pages. please can some advice?

    I don't use Address Book for mail merging, but I tested this on a four page document and it worked for that so maybe it will work for your postcards. First, do your merge with full size pages and one address per page. Then in the print menu select Layout (drop down from Copies and Pages) and set it for 4 per Page (any direction you wish). That should print four different addresses on one sheet.
    Walt

  • Problem with pages and kontakte

    On my macbook (OSX 10.6.8) with "Pages '08 (3.0.3)" and "Adressbuch (5.0.3)", personalizing documents with contacts data works very well (e.g. "Mit Adressbuch-Daten zusammenführen..."). However, on my iMac (10.8.5) there is no "Adressbuch" but "Kontakte (7.1)" and personalizing does not work ("Keine Einträge im Adessbuch"). It looks like Pages tries to find "Adressbuch" and ignores "Kontakte".
    Please help to solve this problem. Thanx

    I found the solution to my problem in the discussion
    Contacts to Pages Mail Merge in Mountain Lion Broken?
    So I need no further help as to this tpic. Thanx

  • Beginner needs slideshow with pages and hyperlinks

    I've used Adobe PS, PSE, Fireworks, Dreamweaver, etc. now have cloud.
    All I want to create is a simple SWF the moves a picture from right to left, holds a few seconds so that a person can click the page to go to a linked page, exit, enter two more pages that also hold and link to pages.
    I used to create this slideshow in Powerbullet Presenter (www.powerbullet.com a free swf producer) but the software won't export the finished slideshow properly with 64 bit.
    Surely something this simple could be done somewhere in the Adobe Cloud set of programs.
    I've tried Flash, InDesign, Fireworks. But now I'm frustrated.
    Hope someone can point me in the right direction with words and/or a tutorial.
    thanks in advance!
    C

    Thank you both, John Waller and kglad.
    Bridge was easy, but didn't do the job either.
    I'm looking for a non-asp.net Homepage AdRotator type something to put on my homepage.
    You have a page/photo that you can link a web page to, it rotates to a new page/photo with a new link to web page, and on for however many pages. I don't have ASP.
    My site is www.cara4webshopping.com and the current slideshow is the crippled powerbullet swf output. At this point I'm thinking of finding someone with an XP computer and just doing what I have to do with powerbullet presenter since it does it so easily. <SIGH>  All this big "adobe" software, and an older free program does it easier? faster? <SIGH>
    Please if any one knows Powerbullet Presenter alternative for 64 bit, especially in Adobe, let me know.

  • Application problems with pages and numbers after Yosemite install

    Since upgrading to Yosemite and updating my applications, I have problems opening some documents in Pages and Numbers and get a message
    You need a newer version of Numbers to open this spreadsheet.
    I also have 2 icons for Pages? The old icon and the new?
    When an upgrade occurs doesn't the old version normally get "absorbed" by the new version?
    What do I need to do to resolve this?

    There are other problems in Pages and Keynote and Numbers.  When you use the Share tool, and choose Open In Another App...... no apps are listed except for iTunes U.   This is an error, as there are several apps available on the ipad that open Pages.  Also, in the Share tool, if I select  Send a Copy,  the email option is not available.  We have checked with app developers who say they their most recent app version addresses this issue, but it doesn't.
    We have tried to erase and reset the ipad, put everything back, and the problem still exists.

  • Does digital vga cable link from ipad2 to external  monitor  work with pages and numbers

    Are you able toutilize pages and numbers on an external monitor with and ipad2 by utilizing a digital VGA cable

    Hi ederg:
    You may want to download/update: Monitor file for Windows 7 (Thinkpad)
    The reason I say that is because the readme it states, "If you use the preload environment, you do not need this package. This package is required when you install Windows OS without the preload image."
    Since you setup the Thinkpad with Windows 7 Pro CD and no longer have the preload image, this may fix the problem.
    Also, have you checked the website for the displayport manufacturer? They may have updated drivers there that wouldn't have been on the update tool you used.
    *Edit* You can also check the: External monitors issues section here. It goes over some basic troubleshooting you may want to try first (I just came across it now)
    Let us know how it turns out!
    Was this or another post on the forum helpful? Click the star on the left side of the screen to give kudos! Did someone solve a problem you encountered? Mark it as "solution provided" to help others with the same problem.

Maybe you are looking for

  • Generate PO from third party sale order

    Hi expert, When we save a Third Party sale order, it will generate a purchase requisition to buy items for us. I wonder if there are any methods to generate Purchase Order directly (Not via PR) from sales order ? Thanks so much. Edited by: Truong Tra

  • OnRowUpdating Event not firing in my DataGrid in custom web part in my production SharePoint 2013 Foundation instance

    Hi, I have a custom visual web part that I've developed for SharePoint 2013 Foundation.  I am using Visual Studio 2013 to develop this web part.  In my visual web part I have GridView that I use to update data in a SQL 2008 R@ Server Database.  In de

  • Multiple workspaces or multiple applications

    Hi, I made an invoice application in APEX and will start to sell to multiple customers and am wondering what the best way is to implement this : a) one workspace one application with multiple schemas (one for each customer), don't know whether this i

  • Importing LTPA key in Sun Java Directory Server

    hi all, is it possible to import a LTPA token into Sun Java Directory Server? havent found any helpful docs on the net regarding the same. We want the users to get authentication from a Sun Directory when he login from a Domino HTTP server thanks Pra

  • Com.apple.apple account error 403

    salve,provo ad accedere ad icloud sul mio dispositivo IOS ma mi da il seguente errore com.apple.appleaccount error 403 qualcuno puo aiutarmi ?