How to make our own Ajax based custom compnent

hi
i want to make my own Ajax based custom compnent.
i know JSF custom comppnents, but dont know how to add Ajax functionality in it.
what should i have to learn for this.
can any one guide me. if some one have code example it will be appreciated
br,
Haroon

You can read tutorials or manuals from the suppliers of AJAX for JSF components. And of course take a look into the code.
Examples:
http://getahead.ltd.uk/dwr
http://icefaces.org
http://www.exadel.com/web/portal/products/VisualComponentPlatform
https://bpcatalog.dev.java.net/ajax/jsf-ajax/
Overview:
http://www.jsftutorials.net/
http://www.jsfmatrix.net/

Similar Messages

  • How TO make our own EventListener ?

    Hello,
    I am in very difficult stage.
    I n a while loop , I received a String against a function call
    and nedd to add some action listener so that in Receiving Listener i
    can find what the emessage is ?
    Please help
    Thanks.

    Your question is not clear. But I will guess as to what you are asking and to the solution.
    Do you know what type of listener you need? ActionListener, WindowListener, etc.
    If yes: then just create a non-intialized listener object of that type, when the request is made
    then just initalize it, attach it, pump the event tree and then let the requester take care of business.
    If no: I have no clue what you want. Need more information.

  • How to add our own applications to Cisco Connect Cloud?

    How to add our own applications to Cisco Connect Cloud?

    You might find this interesting.
    http://newsroom.cisco.com/press-release-content?type=webcontent&articleId=926074
    Interested developers are invited to visit the Linksys Developer Community at http://developer.cisco.com/web/ldc to register and develop apps for Linksys Smart Wi-Fi Routers. Cisco empowers developers with technical, marketing, and sales resources to help support every phase of their developmental and business cycles.

  • HT5293 how to make our folder hidden, without writing in terminal console in apple mac book air OSX10.8.5

    Hey all users
    I am using this mac book air OSX10.8.5.
    i NEED TO ASK THAT HOW TO MAKE OUR FOLDER HIDDEN IN THIS , WITHOUTING PUTTING ANY COMMAND IN TERMINAL CONSOLE.
    PLS SUGGEST . WHAT IS THE PROCEDURE IF ANYBODY KNOW ABOUT THIS .

    First don't write in all caps, that's tantamount to shouting and hurts our eyes. You can't. Using the Terminal app is simple and detailed in https://discussions.apple.com/message/16507198#16507198

  • How to develop our own provisoning process

    Hi,
    Please tell me step by step how to develop our own provisioning process .

    try below
    1. create it resource
    2. create Resource Object
    3. create Process Form using Form designer
    4. Create adapters (You must have java code ready)
    5. create Process Definition
    6. add process task by associating adapter under process definition
    below link will help to do above
    http://docs.oracle.com/cd/E14571_01/doc.1111/e14309.pdf
    Its better Go with OOTB connector and see how OOTB works and that will give you the proper idea
    You can install any OOTB connector for this
    regards,
    Nishith Nayan
    Edited by: Nishith Nayan on Jan 30, 2012 10:08 PM

  • How to create our own XML Schema (.xsd) in Weblogic WorkShop

    Hi,
    I am new to Weblogic Workshop.I want to create one xml schema with custom elements.
    when I am creating a file xml schema(.xsd).The file contains default namespace and no child elements in it.I don't know how to add elements to that file.
    please tell me how to add parent elements and child elements and also our own xml namingspace.

    Hi Sivaram,
    Unfortunately, the 8.1 IDE did not have special tooling for schema generation.
    You will need to create it by hand or using an external tool
    If you are using an external tool to create the file within the schema project, you might want to disable the schema project auto build, which will be triggered every time a file save takes place
    cheers
    Raj

  • Should we just use SparkSkins, or make our own new Theme?

    I'm starting to think more and more about application loading performance and RSL.  Still don't quite have my head wrapped around it.
    I would like to make a completely new look and feel for a flex app.  Is it wise to create all new skins (assuming I have no issue with how many there are), or is it more wise to just try to hack together something using CSS?
    I'm asking because, are the spark skins included in the signed swz RSL?  If they are, then it seems like there'd be a decent performance gain to just try to modify your skins vs. creating our own.

    The Spark Skins will be included in the RSL,but the minute you make changes to them you won't get the benefit of the RSL (unless you're just mucking with colors via styles).
    Matt

  • How to define our own selection screen for logical database  in abap-hr?

    Hi Friends,
    Can u please help me
    How to define your own selection screens for  logical database.
    we use to do like(goto->attributes-HRReportcatagerious ).but How to desin using  customer table like t599c, t599f and how to add to my logical database?
    Thanks in advance
    charan

    check out this online help
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/dba65c35c111d1829f0000e829fbfe/frameset.htm
    Regards
    Raja

  • How to make fields editable in an custom enhancement

    Hi Experts,
    My requirement is to perform some custom validations against a field FKONT(BSEG) at the line item level of FB60 and display appropriate message and make the incorrect field editable.
    I have implemented an implicit enhancement point in include MF05AFGENJ.
    The error messages are coming but I am unable to make the GL account, cost center and profit center fields editable.
    Please let me know how to make the above fields editable after displaying the error message.
    For reference, I have done the coding like this:
    IF sy-tcode = 'FB60' .
    CHECK GL_ITEMS IS NOT INITIAL.
    DATA: L_COUNT TYPE I,
          L_STRING TYPE STRING,
          L_FKONT TYPE FIPLS,
          L_TABIX TYPE SY-TABIX,
          G_FLAG TYPE C.
    DATA: WA_ZZFSTP LIKE ZZFSTP.          "Work area for ZZFSTP table
    CONSTANTS:C_MK TYPE TXJCD VALUE 'MK0000000'.
    *-- Validating the Financial budget item field
    IF GL_ITEMS-FKONT IS NOT INITIAL.
    SELECT SINGLE FKONT
                        INTO L_FKONT
                        FROM ZFSTP
                        WHERE FKONT = GL_ITEMS-FKONT.  "cost center
    IF SY-SUBRC NE 0.
       CLEAR: G_FLAG.
       G_FLAG = 'X'.
       MESSAGE W003(ZZFI) WITH 'Please enter 'Financial' 'Budget Item Field' DISPLAY LIKE 'E'.
       EXIT.
    ENDIF.
    *-- Copying the first line item financial budget item field to all the line items in the internal table
    DESCRIBE TABLE GL_ITEMS LINES L_COUNT.
    IF L_COUNT > 1.
      READ TABLE GL_ITEMS INDEX 1.
      IF SY-SUBRC = 0.
            CLEAR: L_FKONT.
            L_FKONT = GL_ITEMS-FKONT.
    *-- Assign the tax jurisdiction codes in all the line items
             LOOP AT GL_ITEMS.
               CLEAR: L_TABIX.
               L_TABIX = SY-TABIX.
               GL_ITEMS-FKONT = L_FKONT.
               GL_ITEMS-TXJCD = C_MK.
    *-- Copy the first financial budget item number and tax jurisdiction code MK0000000 in all line items
               MODIFY GL_ITEMS INDEX L_TABIX TRANSPORTING FKONT TXJCD.
    *-- Populate tax jurisdiction and FKONT financial budget item number in XBSEG table
               L_TABIX = L_TABIX + 1.  "top record in XBSEG is for header
               READ TABLE XBSEG INDEX L_TABIX.
               IF SY-SUBRC = 0.
                 XBSEG-FKONT = L_FKONT.
                 XBSEG-TXJCD = C_MK.
                 MODIFY XBSEG INDEX L_TABIX.
               ENDIF.
             ENDLOOP.
      ENDIF.
    ENDIF. "describe statement
    CLEAR: WA_ZZSTP.
    *-- Validate the amount and GL account against the FKONT(financial budget item) number
    SELECT SINGLE FKONT
                  ZZWRBTR
                  ZZHKONT
                  ZZKOSTL
                  ZZPRCTR
           INTO CORRESPONDING FIELDS OF WA_ZZFSTP
           FROM ZFSTP
           WHERE FKONT EQ GL_ITEMS-FKONT.
    IF sy-subrc EQ 0.
    IF BSEG-WRBTR > WA_ZZFSTP-ZWRBTR.
           CLEAR: G_FLAG.
           G_FLAG = 'X'.
           MESSAGE W003(ZZFI) WITH 'Amount entered' 'cannot be' 'greater than ' WA_ZFSTP-ZZWRBTR DISPLAY LIKE 'E'.
           EXIT.
    ELSE.
             CLEAR: G_FLAG.
            G_FLAG = 'X'.
            SET CURSOR FIELD 'GL_ITEMS-HKONT'.
            MESSAGE W003(ZZFI) WITH 'Incorrect GL account' 'number entered for' 'given financial' 'budget item number'.
            EXIT.
           ELSE.
    *-- Check for cost center and profit center at line item level
             LOOP AT GL_ITEMS.
    *-- Both cost center and profit center is initial.
                IF GL_ITEMS-KOSTL IS INITIAL AND GL_ITEMS-PRCTR IS INITIAL.
                    CLEAR: G_FLAG.
                    G_FLAG = 'X'.
                    SET CURSOR FIELD 'GL_ITEMS-PRCTR' LINE SY-STEPL.
                    SET CURSOR FIELD 'GL_ITEMS-KOSTL' LINE SY-STEPL.
                    MESSAGE W003(ZZFI) WITH 'Please enter' 'cost center' 'or' 'profit center'.
                    EXIT.
    *-- Either cost center or profit center is initial
                ELSEIF GL_ITEMS-KOSTL IS INITIAL AND GL_ITEMS-PRCTR IS NOT INITIAL.
                    CHECK GL_ITEMS-PRCTR NE WA_ZZFSTP-ZPRCTR.
                      CLEAR: G_FLAG.
                      G_FLAG = 'X'.
                      SET CURSOR FIELD 'GL_ITEMS-PRCTR' LINE SY-STEPL.
                      MESSAGE W003(ZZFI) WITH 'Incorrect profit' 'center entered' 'for given' 'financial budget item' DISPLAY LIKE 'E'.
                      EXIT.
                ELSEIF GL_ITEMS-KOSTL IS NOT INITIAL AND GL_ITEMS-PRCTR IS INITIAL.
                   CHECK GL_ITEMS-KOSTL NE WA_ZFSTP-ZKOSTL.
                      CLEAR: G_FLAG.
                      G_FLAG = 'X'.
                      SET CURSOR FIELD 'GL_ITEMS-KOSTL' LINE SY-STEPL.
                      MESSAGE W003(ZZFI) WITH 'Incorrect cost' 'center entered' 'for given' 'financial budget item' DISPLAY LIKE 'E'.
                      EXIT.
                ENDIF.
             ENDLOOP.
           ENDIF. "GL Account
    ENDIF. "Amount check
    ENDIF. "SY-SUBRC check
    ENDIF.
    EXPORT G_FLAG FROM G_FLAG TO MEMORY ID 'ZER'.
    Please let me know how to make GLaccount,cost center and profit center fields editable.
    Regards,
    Sangeeta.

    Hi.. chaek the below links. may be useful to u.
    Making Table control records Editable / Non-editable
    Table control with both Editable and non Editable fields
    Regards,
    KP.

  • How to find our own postings

    Hi
    Can any one let me know how to find your own postings in this forum, before the updates on this forum
    it was esy by giving our handle name in search options we can find it, but now am facing problems to find it.
    can anyone let me know about it.
    thanks in advance. :-)

    There may be (and hopefully is) an easier way, but this seems to work:
    1. In the URL of the page that's returned by clicking <b>Search for all user messages</b>, find your user ID. The URL should look something like this:
    http://forums.oracle.com/forums/search.jspa?userID=<your user ID>
    2. Add the "userID=<your user ID>" as a parameter in the URL of any search results page to filter the results for your own postings only. For example, to see all your postings, the following URL seems to work:
    http://forums.oracle.com/forums/search.jspa?userID=<your user ID>&dateRange=all
    Hope this helps.

  • How to create our own web application on apache tomcat

    I am using Tomcat's default location to place my servlets.
    "E:\Program Files\Apache Group\Tomcat 4.1\webapps\ROOT"
    But day by day my classes are increasing. Now i am feeling to have my own location to place my servlets.
    Ex. "E:\myservlets"
    How to create and activate our own web application on apache tomcat except from tomcat's directory structure? Please guide me in this regard.
    Thanks in advance.

    hi,
    you can place your own application in any where
    then you to open under tomcat/conf/server.xml file
    add
    <Context path="/examples" docBase="e:/examples" debug="0"
             reloadable="true" ......./>

  • How to create our own fields in workarea in internal tables

    hai
    can u help me out in creating our own fields in workarea in an internal table (without header line..................)

    what kinda theory do u want???
    * Internal table with HEADER LINE
    DATA : BEGIN OF it_output occurs 0 with header line,
              c_icon  TYPE icon-id,
              bukrs   TYPE anla-bukrs,
              anln1   TYPE anla-anln1,
              anln2   TYPE anla-anln2,
              grufl   TYPE anla-grufl,
              grufl_n TYPE anla-grufl,
              leabg   TYPE sy-datum,
              leabg_n TYPE sy-datum,
              message TYPE bapiret2-message,
            END OF it_output.
    The above declaration is same as the below declaration in relation to the previous thread.
    * Data declarations for ty_output
    DATA : it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0, " Internal table declaration
           is_output TYPE ty_output." Work Area declaration
    Please reward for useful answers with appropriate points
    Regards
    Gopi
    "  Internal table without HEADER LINE
    DATA : BEGIN OF it_output occurs 0,
              c_icon  TYPE icon-id,
              bukrs   TYPE anla-bukrs,
              anln1   TYPE anla-anln1,
              anln2   TYPE anla-anln2,
              grufl   TYPE anla-grufl,
              grufl_n TYPE anla-grufl,
              leabg   TYPE sy-datum,
              leabg_n TYPE sy-datum,
              message TYPE bapiret2-message,
            END OF it_output.
    Message was edited by:
            Gopi Narendra

  • How to make my own music videos?

    Ok,
    so this might be a rather stupid question.
    But I gotta ask.
    I would very much like to use the TV shows and music that I bought via Itunes to make
    my own music videos. I just got a new macbook pro...
    Is there a way to do that?
    Do I need a complicated/expensive software?
    Is itunes locked against such use?
    Does Mac come with it's own software for that?
    I would be very grateful if somebody could help me out.
    Even if just to say ..no way girl!
    Thanks ahead
    J

    Your assumption is incorrect. Whether the content is being used to make money or not doesn't matter, nor does it matter whether you paid for the content or not. You get rights only to play the content, not to repurpose it and use it for something else without a license to do so, though again "fair use" comes into play. In addition, the terms of sale for the iTunes Store prohibit use of anything obtained from them for other than your own personal use, which therefor prohibits posting or distributing in any fashion to anyone else.
    And yes, at least some videos in YouTube may well be illegal, which is why the content owners such as Viacom have filed lawsuits against YouTube over the years. Or the creators of the videos may have obtained permission to use the content, or the video may fall within the "fair use" guidelines. This isn't the place to disuss "fair use" since it is too complex and vague a subject to address without a lot of discussion.
    Finally, again, TV shows from the iTunes Store are copy protected and cannot be edited even if you believe they would fall under "fair use", as are a number of music videos, though not all.
    Regards.

  • How to make my own custom photo album background from scanned image?

    I know how to use the custom backgrounds within photoshop elements 5.0 but I would like to create my own. I have scanned a map of Big Bend National Park that I used as a DVD title menu and would like to make a photo album and use the same scanned map as the backgroud for all pages. Is that doable in elements 5.0? Can I just add the scanned image into the custom folders somehow?

    My thought is to create a single thread, and within
    that thread continually pull from a static array
    casting each to an EventObject type. But I am confused
    also as to how to dispatch the events to their
    appropriate listeners.This is commonly known as a ProducerConsumerQueue: you have multiple sources of events, and multiple consumers for those events. The queue mediates between producers and consumers.
    In the case of an event thread, the queue runs in one thread, and all the producers run in other threads. In the case of the Swing/AWT event thread, the producer is the GUI code in the JVM, which receives OS-level (considering X an OS for the moment!) window events and then puts them on the queue, associated with the correct object.
    You'll find a LinkedList a better choice for the queue than a static array, as it can grow or shrink without bounds. The consumer side calls removeFirst(); if nothing's in the List, it calls wait(). The producer side calls addLast(), followed by notify(). Needless to say, you'll need synchronization, but you don't want to synchronize your listeners ... that's a fun problem that's left for the reader.
    The various listener lists can be maintained with Maps, where the event object is used to lookup a list of listeners. In a GUI environment, the event object has to maintain the source as well as the event object; in a non-GUI environment, it typically only holds the event type.

  • HT204053 How do my husband and I make our own passwords and user names? We are Shari

    My husband and I have the same user names and password for our iPads 4and iPhones. When one of downloads onto a device, it goes to both devices. Also, he gets my reminders. I want to keep the user name and password and he will then get his ow ones. How do we go about doing this?
    When I looked into doing this on apple site, it seemed to show that I can change them, but not just change one of them

    He should go to http://appleid.apple.com and create a new ID - it's best to have a non-Apple address to do this with but it must be one that hasn't been previously associateds with an Apple ID. A free one from GMail or Yahoo would do.
    He should then sign out in System Preferences>iCloud, whereupon all the contact, calendar and Mail data from your iCloud account will disappear. He can then sign in with the new ID and create a separate account. He can share some of your data if he wants to by signing in with your account in System Preferences>Mail, Contacts and Calendars and checking just that sort of data there.
    None of this affect iTunes Store purchases. He will need to sign out in the iTunes Store (click the name at left of the black toolbar and choose 'Sign out' and then sign in with his new ID. However if he has made app purchases on your ID he will not be able to update them, or view films: you can't move purchases from one account to another and you can't keep changing the sign-in to the Store either. It's quite possible for him to retain your ID in iTunes but have his own in iCloud as the two are not connected.

Maybe you are looking for

  • Unable to print to office jet pro 8600 over wifi from a laptop running vista, basic home edition

    Have a new officejet 8600 pro and am able to print via wifi from laptop running windows 7 and hp touchpad running webos, so all is working fine. However, I am unable to print via wifi from a laptop running Vista Home Basic, 32 bit OS. I can see the p

  • White icons on ipod touch

    I have an ipod touch and have just noticed that some of the app icons have turned white otr blank. Anyone have the same problem and know of a fix. I have restarted the ipod. Many thanks

  • File searching

    Dear all, Can you help me ? Let's say in a folder contains : - A.doc - B.txt - C.dat How can I get filename, based on the extension (e.g. "doc" or "dat") ? Thank you

  • LMS 4.2 Portlets

    I installed lms 4.2 and ran the first discovery.  Everything looks good.  What I am seeing is under My Menu -> My Dashboards -> Click on Functional, I am seeing a some strange screens I have never seen before.  I have attached a screenshot of what I

  • Blank Page Showing for ESS iView in Portal

    Dear All, I have here ECC 6 and EP 7, i have uploaded Business Package for ESS named BP ERP05 ESS 1.0 Support Package 07. I have configured the Post Installation Steps and SLD. I have Created System and system aliases in System Landscape in portal an