Calc integration w/ Ajax

I know I should be asking this in a Joomla forum but I wanted to make sure that Calc had the capability to do this. Would it be possible to set up a blank spreadsheet (instead of a form) and capture numerical data that way directly in a website? If so, how would one go about integrating such a thing? I am attempting to setup a census at [Assyrians Online|http://www.assyrians-online.org/] (url used for reference only) and I would very much like to use Calc to gather some numerical data. Is this possible or am I reaching?
Edited by: Lifeforce on Dec 14, 2009 4:51 PM

I agree-- I use Fireworks for all my web projects, and currently send .png files to clients. Integration with Fireworks would be GREATLY appreciated.

Similar Messages

  • Integrating the PHP Based Forum Component in CQ5 Pages.

    We have the requirement to integrate the Php based forum product (VBulletin) in our CQ5 pages. Have anyone already integrated the Php based prodcuts with CQ5? Especially i would like to know the feasibilty on the following point.
    A. Do we need to implement the Wrapper Service to interact with Php based products / APIs?
    Thanks,
    Thyshiva.

    There of course multiple ways to attempt to integrate with a service like this, the approriate approach will vary based on your requirements.
    The first question I would ask is what functionality are you trying to integrate into you CQ5 pages. Are you just trying list summaries of posts - say the 3 most recent posts on topic X, or are you attempting to display the complete forum functionality in a CQ 5 page.
    If you doing a light weight integration - for example displaying the most recent posts then I would explore the possiblity of a client side integration using AJAX to pull the data from your PHP system in JSON or XML format. This avoids any caching related issues and keeps the integration loosely coupled. There are of course variations on these methods that use CQ as a proxy to the PHP application, but then you end up having to write a OSGI wrapper service that talks to your PHP app over web services.
    If your integration is more complicated and you are looking to enable all the forum functionality. If your PHP app is visually the same as you CQ5 site you can make use of a iframe to include it in a CQ page. This obviously have potential issue (security, layout issues if sizes or CSS aren't consistent). CQ5 includes a foundation component to help with this - the External component which leverages an iframe.
    If an iframe or client side approach won't work then you would need to look at creating a set of OSGI wrapper services that communicate with your PHP application via web services. This obvious would be a singificant development effort, and depending on the capabilities of you PHP application may be difficult to implement. In particular user management and security integrations be complex (you can avoid these sorts of issues with a client side or iframe approach, especially if you can sub-domain the PHP app, or use the same apache server to host both dispatcher and you PHP app).

  • Uploading Multiple Documents To a List Item sharepoint 2010

    hi Guys ,
    Is there a way we can enable (out of the box )Uploading Multiple Documents To a List Item sharepoint 2010 ?
    cheers

    No, There is no OOB way to do the same you have to build a custom Page/Control OR customise OOB Form to attache multiple files and that will be through integration of ajax based control (multiple file uploader.)
    the other way to do the same is provision a custom field. we have done this for our many  clients.
    Hi, I also encountered the same problem, could u pls provide detailed information by a custom field?

  • How to display a short term lock in a view?

    Hello,
    I discovered recently the two checkin/checkout modes in sharepoint.
    The long term ckeckout that the user choose explicitly to have and the short term check out when the user open an office document for modification.
    This article describe the differences between the two modes: http://blogs.technet.com/harikumh/archive/2008/05/28/check-out-feature-of-sharepoint-2007.aspx
    The short term checkout is perfect for my client needs. He doesn't want to checkout a document every time he opens it + a lot of user doesn't understand why to check-in a document when they have done their works.
    Here is my problem: I would like to display the short term lock in my document library the same way the long term lock information is displayed.
    By code I'm able to see who has acquired the lock and if it is a short term or long term lock:
    SPFile.SPCheckOutStatus
    The column "CheckedOutBy" in by document library does not display anything for the short term lock. The document icon is not change to display a lock on it.
    So I'm searching for an idea, how to be able to display this information in my view?
    Best Regards,
    Py

    Hi,
    Theoretically you can do the following:
    Create a custom web service based on the object model to get the value of vti_sourcecontrollockexpires metadata of a file remotely.
    Create a custom field that display the information in edit and display view based on the of vti_sourcecontrollockexpires metadata using the object model in a label. Create a RenderPattern for the list view that contains a JavaScript block that calls your custom web service to display the short lock information.
    I suggest you to read these basic articles that describe the process of custom field type creation:
    Create custom field types for SharePoint
    http://www.sharepointblogs.com/nicksevens/archive/2007/08/31/create-custom-field-types-for-sharepoint.aspx
    Developing Custom Field Types for SharePoint 2007
    http://msdn.microsoft.com/en-us/magazine/dd727508.aspx
    Building Custom Field Types in Windows SharePoint Services 3.0
    http://msdn.microsoft.com/en-us/library/bb684919.aspx
    And an advanced one about Web Service - JavaScript - RenderPattern integration:
    Using AJAX Jquery-like in the CAML of Custom Field Types
    http://www.silver-it.com/node/34
    And about custom web services:
    Walkthrough: Creating a Custom Web Service
    http://msdn.microsoft.com/en-us/library/ms464040.aspx
    Creating a Custom Web Service for SharePoint
    http://it.toolbox.com/blogs/sharepoint-blog/creating-a-custom-web-service-for-sharepoint-13553
    SharePoint for Developers Part 6 – Custom web services
    http://blogs.msdn.com/kaevans/archive/2009/04/30/sharepoint-for-developers-part-6-custom-web-services.aspx
    Hope that helps. Sounds to be not easy, but technologically possible.
    Peter

  • Using JSP, how to add new items to Fuego Business Object "Group" ?

    Given the classic Fuego Business Object (FBO) example of an Order, which has a few attributes (orderNumber, customerName, Order Date) and a GROUP attribute called OrderItems (ItemName, ItemPrice, etc.), I want to use a JSP to allow user to submit order. My JSP has a form and uses the Fuego Tag Library. There are FORM INPUT elements for Order.orderNumber, Order.customerName, Order.OrderDate, and a table using dynamic HTML to add rows and INPUT elements for new items to add to the GROUP attribute OrderItems - ItemName, ItemPrice, etc.)
    But when the user wants to add "OrderItems" to the order, I don't know how to get Fuego to create OrderItem Objects to add to the array (aka GROUP).
    Thx in advance.

    ###### below is the response I response I received from a BEA Engineer. From looking at the html source of fuego presentations that implement desired functionality, it appears as though they handle it using the first suggested workaround below ######
    Hi,
    The short answer to your question is that there is no out of the box feature to support directly what you are asking for.
    The problem is that JSPs receives a Fuego Object that is accessed at rendering time (JSP compilation/ HTML rendering). And then all the updated values are sent back to the engine in a new request when you hit the submit button of a FOR tag that has the postResult tag in the action attribute. At this point all these values are automatically taken from the request and the Fuego Object instance variable in the screenflow is updated.
    After saying this you will notice that it doesn’t make sense to update the Fuego Object instance on the JSP. Because you only could do this ate rendering time and because this instance is not going back to the engine (just the values).
    Fuego Object tag Library was designed basically to be able to show Fuego Object data and invoke runs-on-server FO methods.
    I see 3 different approaches to solve the problem you have:
    1)Use JavaScript to call a runs-on-server method that recive the required arguments to extend the group and set the values. You should use the new tag called invokeUrl that allows you to use AjaX, in this way you could update the page with partial rendering.
    2)Use JavaScritp to submit the form when the user click the add row button. And have a loop in the Screenflow with an automatic activity that will extend the group and the go back to the component activity that now will show the page again but with one more row. The drawback is that each time the user wants to add a row, it will require the entire page to be refresh.
    3)Handle the table and values using JavaScritp and DHTML, and put all the new values in the request (input element), then in the Screenflow use an automatic activity to set this values to the Fuego Object.
    Look at the Samples of using Fuego Tag Lib and AJaX
    albpm5.7\studio\samples\Integration\Portlets\PFoodDelivery.fpr
    albpm5.7\studio\samples\Integration\ThirdParty\AJaX.fpr

  • DELETE function on list

    Hi,
    <br />
    <br />I have just got the toolbox extension for Dreamweaver &amp; I am playing round with the "Create Dynamic List Wizard". I can create the list fine but I notice it creates 2 links at the end of each row, "Update" and "Delete". I have played around with the update one and can get it to work but I cannot get the delete one working. It pops up with the "Do you want to delete option" but im not sure how to put the code behind this. What am I supposed to add to the list to <%=NXT_getResource("delete_one")%> to get the delete functioning?
    <br />
    <br />Thanks

    Peter, As you probably know, If you use the Dynamic List Wizard to create your List on your a main page, it automatically creates a new page for the Details (then you just open that detail page & run the Dynamic Form Wizard) and all of the Edit/Delete buttons work for sure. (at least they have for me)
    For me, I have created my own plain Update Pages and added the Delete behaviors. So far my forms are working ok for now.
    Regarding support & forums, where do I begin..?
    - From a developers point of view I think that ADDT as a product was better off being independent.
    - Currently there is limited "direct" answers to our "specific" questions
    - Using it for "Simple or Basic" sites works fine "Out of the Box" but if you need more functionality you're basically on your own.
    - The Documentation is good at explaining what each tool does; But "real use" & customization is not addressed very well.
    - Dreamweaver integration with Ajax & Spry has ZERO documentation. I have yet to find anyone in the forums or the Web in general who can or has implemented ADDT w/Spry.
    Overall, I'm thankful for ADDT, & working w/Dreamweaver, SPRY, & JavaScript has moved me quickly forward in the world of dynamic websites. Once I "learn" the Spry code and can produce functional pages, I may be letting ADDT go.
    jlig

  • WebLogic Portal 9.2 Gets Dojo AJAX Integration

    Hi All,
    There is a new project on CodeShare that provides WebLogic Portal 9.2 with Dojo AJAX integration. View the CodeShare Community Blog for more information.
    Take care,
    Jeremy Whitlock

    I too was facing this problem initially but on windows machine. This problem occurs because p13nDataSource is not configured and its still pointing to the POINTBASE data base. Point it to Oracle database and then test the connection. Once the Connection Test is sucessful go to Run Database Script. Select the correct version of Oracle i.e. 8i, 9i or 10g. Then select on DataSource from in the top left corner. Only two DataSource needs to be configured. cgDataSource-nonXA and p13nDataSource.Select these Data Source one after another and Run the scripts once this is done u can configure the WLI Domain.
    This is done once configuring the WLI Domain.
    I would post the corrective measure for the Domain which has been already created. If the issue is blocking u can create a new domain:-)

  • UCM integration sharepoint search webparts ajax error

    Context
    I am looking at an error with the Search page in the SharePoint web part integration with Oracle UCM.
    There are two web servers in the SharePoint web farm handing incoming requests.
    The search page has the Search Query and Search Results web parts on it.
    Problem
    When opening the Search page it contacts the Oracle server to populate the menu items: saved queries etc.
    Sometimes this causes an error...
    AJAX error:
    Status: 400
    Status Text: Bad Request
    Message:
    StellentWebRequestHandlers.SearchMgr error: The WSS cache file 'C:Program Files
    (x86)\Oracle\WSS\WebSupportServerCache\WSS<random characters>\SessionSearches_Name_
    Content_Cache.xml' could not be loaded. Requested as RequestResource.
    This appears in a dialog box over the browser presumably thrown by client AJAX code.
    The folder exists only on one of the two servers. The file is missing from that folder.
    Question
    I am looking for any information on the way the cache works. E.g.:
    - How it should be configured in a load-balanced web farm environment?
    - What permissions are required?
    Thanks for any advice and sources of information.
    Peter

    Can the images selected in wysiwyg editor come from external sources like sharepoint system?Yes and no. If you want to use UCM's features (like selecting the correct rendition, using UCM 's security model, etc.) you will have to check in the item to UCM. However, you can also use just a link to an external resource (with no guarantee that it will be available, though). I'm not sure how much this approach integrates with wysiwyg.
    Can the WCM content be pushed to sharepoint server on publish? Can webparts be used for this? What is the format of content that will be sent to sharepoint. I mean, can sharepoint understyand and create the imported content in it's system? Please help.In general, you can publish content from UCM almost anywhere - for instance, you can publish documents to create a static website, which is not run by UCM at all. However, you will most likely want to have not only the content itself, but also metadata.
    The cardinal question is: why do you want to have two repositories? If MSSO is a must, you could use it as front-end only and UCM would be back-end storing all the documents. This would resolve both problems in one go. And moreover, this is actually quite a common scenario, so there is an experience to support your implementation.

  • Jsf Ajax integration

    hello All
    Has anyone come across the issue with JSF ajax integration in JSF 2. When I try to use jsf 2 F:ajax TAG i GET THE following error
    JSF1064: Unable to find or serve resource, jsf.js.xhtml
    Thanks for your help
    Nek

    Unfortunately you are not giving us enough information. How are you using the tag?

  • Architecture question: Integrating AJAX and STRUTS

    I'm slowly growing in familiarity with STRUTS and I have the basics of AJAX down, certainly as far as the request-response-parse-do something useful with the data paradigm goes.
    My question is more about best practices in using an AJAX enable front-end with a STRUTS-based back-end.
    In a nutshell, each user action is handled by a STRUTS action subclass. Requests are picked up by the STRUTS front controller and passed on to the handler for processing. The handler is then able to tell the controller which jsp/resource to send back to the user.
    With AJAX, we are (generally) making specific data requests. We are essentially asking for data based on a set of parameters passed through on the request.
    In the case of a dynamic search table (containing no business logic), the AJAX request is simply asking for a set of results that match some parameters supplied in the criteria form.
    What should handle that data request?
    I was thinking about a specific "data-server" set of classes which STRUTS can pass AJAX requests to.
    NOTE: I'm thinking about this from the perspective of a new development, not tacking on to an existing application.
    Thoughts, anyone?

    So let me broaden the question slightly? What are the
    best practices for implementing an AJAX solution with
    STRUTS? I have looked around on the net but not found
    anything that constructive yet.
    Suggestions and/or pointers welcome.I have played around with AJAX just to understand how the technology works and how ajax can be integrated into a j2ee (or any other for that matter) web application. I havent worked on a project which has analyzed the best practises/pitfalls of ajax and implemented a solution.
    Having said that, here's my take -
    Ajax, as far as I know and have seen is a 'view' thinggy - enhanced user experience, lesser clicks, blah blah. The underlying XMLHttpRequest technology is just another way to hit the server with a request. And as I said before, once the server receieves a request, it really doesnt/shouldnt matter where and how the request originated from - it could a tunelled http request (as from an applet/swing app), a normal http request from a browser or a XMLHttpRequest (read ajax). The server validates incoming params if any and performs business logic.
    And here's when the similarity ends. The response (or the view) is entirely dependent on the 'requestor'. For browsers, the server would emit html, wap for cellphones, objects to a swing/applet program (possibly).
    The point I am trying to make is that this (the view part) is where you'll have to concentrate on tweaking (using the so called best practises) for ajax requests. For instance, there are a set of ajax tags already that you could reuse in your jsps which help developers build cool ajax enabled apps.
    (See http://ajaxtags.sourceforge.net/)
    There however are a few standard best practises for using ajax itself (and this is at a general ajax as a technology level) - see for example
    http://www-128.ibm.com/developerworks/library/j-ajax1/?ca=dgr-lnxw01Ajax
    ram.

  • AJAX Integration with ADF Components

    Please help me integrate AJAX with ADf Components
    Thanks in advance
    A sample code would be useful.

    Hi,
    Hope these links can help you
    http://www.oracle.com/technology/pub/articles/cioroianu-ajax-data.html
    http://www.oracle.com/technology/pub/articles/vohra-ajax.html
    http://www.oracle.com/technology/pub/articles/nimphius-ajax.html
    http://www.oracle.com/technology/products/jdev/tips/mills/AjaxAutoSuggest/AjaxAutoSuggest.html
    EronYang

  • Integrating sortables and mySQL (using AJAX?)

    Hi there. I have a rather specific requirement and I'm not necessarily looking for someone to tell me the exact code to use (though that would be nice too)... I mostly want to make sure I'm heading the wise way, and get some guidance on how i should tackle this problem.
    I have a database with a number of fields (16 in fact). I have a jquery "sortable" grid set up with 16 blocks, each of which represents one of the fields. field 1 = block 1, etc.
    I want to make it so that the end user can drag the blocks into a different order of their choosing and then click a button that will then rearrange the data in the 16 fields to fit the order in which the user specified. Basically allowing the user to rearrange the order of the data and then re-saving it. So if i drag the block so as to swap block 2 and 8 for example, and nothing else is changed, when saved i would want (behind the scenes of course) the function to swap the values of fields 2 and 8 and re-save the data.
    I am a php guy and not an ajax guy, but I understand it's likely an AJAX solution i need since it needs to be client-side. the question is 1st, is that a correct assumption, and b) what's the simplest most straightforward way for me to do this? Remember you're talking to someone who is an AJAX novice. :-)

    carunkumar wrote:
    function ajaxFunction(chz)
    jsnds = document.getElementById('snds');
    jmin = document.getElementById('min');
    var back;
    var ans = 'arunkumar c';
    try
    var xmlHttp=new XMLHttpRequest();
    catch (io)
    alert("Your might be using IE or your browser does not support AJAX!.");
    return false;
    }First thing is that the Ajax request you are building is not browser specific.
    Go to this site it will give you the specific code www.tizag.com/ajaxTutorial/
    And do try and test your program on diff browser from your pc only. Its a ajax world so be careful while dealing with browsers
    and there settings. Just check your browser setting on your pc and check the same setting at your college also.
    Buddy this ajax give a trick in big presentation also :) So no need to worry and test it and do it, its real fun when you just
    cross this browser secific dependencies.
    Cheers
    Sachin Kokcha

  • Ajax integration and CF 8 developer edition

    hello all,
    i'm trying to bind cfc to a <cfselect> over CF 8
    Developer edition, it is giving me "404 Error invoking CFC"[same
    case with autosuggest also]
    i tried doing the same on prod'n server - it worked fine.
    can any one please explain me, the difference between
    Developer edition and enterprise edition?
    Thank you
    Sanjay

    Sanjay k wrote:
    > hello all,
    >
    > i'm trying to bind cfc to a <cfselect> over CF 8
    Developer edition, it is
    > giving me "404 Error invoking CFC"[same case with
    autosuggest also]
    > i tried doing the same on prod'n server - it worked
    fine.
    >
    > can any one please explain me, the difference between
    Developer edition and
    > enterprise edition?
    >
    > Thank you
    > Sanjay
    >
    pertaining to your issue - there is no difference between cf8
    editions.
    your error is likely due to a wrong path to your cfc, but
    without seeing
    your code and more details on cfc location on your dev server
    it is
    impossible to say for sure...
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Integration: how to best access and run SAP through Portal

    We are currently using Oracle Portal for publishing reports directly from our EDW, for giving access to some applications and for delivering unstructured information.
    In the future we are very likely to give our suppliers and employees access to reports and interfaces for conducting transactions straight into SAP. This is most likely done via a web GUI.
    One way to do this of course is to implement the SAP Portals solution, the other is to keep using Oracle Portal and access SAP Portlets/iViews from there - the latter is to be preferred based on the cost of switching platforms, but we have also to take into account the cost of integration.
    So to my question: What would be the best way to integrate these to systems? Has it been done before? Is Web Services the way to go? ???????

    Ajax is a microsoft toolkit that the web site is using and is not compatible with Safari. They only support I.E. and windows.
    From the Safari menu bar click Safari / Preferences then select the Advanced tab. Enable the Develop menu. In the Develop menu select User Agent and then try Internet Explorer 9.

  • Is it possible to create a tree with drag-and-drop functionality using ajax

    I saw these samples;
    Scott Spendolini's AJAX Select List Demo
    http://htmldb.oracle.com/pls/otn/f?p=33867:1:10730556242433798443
    Building an Ajax Memory Tree by Scott Spendolini
    http://www.oracle.com/technology/pub/articles/spendolini-tree.html
    Carl Backstrom ApEx-AJAX & DHTML examples;
    http://htmldb.oracle.com/pls/otn/f?p=11933:5:8901671725714285254
    Do you think is it possible to create a tree with drag-and-drop functionality using ajax and apex like this sample; http://www.scbr.com/docs/products/dhtmlxTree/
    Thank you,
    Kind regards.
    Tonguç

    Hello,
    Sure you can build it, I just don't think anyone has, you could also use their solution as well in an APEX page it's just a matter of integration.
    Carl

Maybe you are looking for

  • How do I import emails from my old eMac to iMac G5

    I have recently upgraded to an iMac G5. I need to copy all my old emails (3 years worth) from my old eMac to the new computer. What options do I have? I don't want to copy anything else (applications or documents). I use Apple's Mail on both computer

  • Problems burning to Blu-Ray from PE10

    PE10 is very slow when encoding media while burning my "movie" to a Blu-ray disc, after 5 hours only 25% encoded, then computer shuts down, BTW I did render the movie before attempting burn Can anyone help?

  • Multi-value join

    Hi, There's something I need to do with the search APIs, and I'm not sure if it's possible. I need to join a table on itself. My problem is, the two columns I need to use for the join are not of the same data type. One of them is a String and the oth

  • Regardsin BDC

    what is the function module for back ground job sheduling could u plz tell me

  • New computer, new Ipod. How can I get my purchases back?

    I have an Ipod. I deleted all my music off it. I bought a new computer. I've logged back into Itunes but it hasn't got any of my purchases recorded. I had bought quite a lot of music, how can I get it back? I know it'd be easy to re-authorise if i ha