Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9303367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T23:28:07+00:00 2026-06-18T23:28:07+00:00

This is the scenario: We have two fields on the Xpage to be filled

  • 0

This is the scenario:

We have two fields on the Xpage to be filled from an Ajax call.
The return from the Ajax call is a json structure.
In old school web development we are doing this using prototype.js:

$H( json ).each(function(pair){
    try {
        $( pair.key ).value = pair.value  
    }
    catch(err) { }
});  

Assumption here is that we have the fieldIDs equals the json keys.

{
    "fieldID1":"value1",
    "fieldID2":"value2"
}

Xpages CSJS needs to have the field ID placeholder present in the script to be able to convert to the actual ID that the field has on the Xpage:

$("#{id:fieldID1}").value = json.fieldID1;
$("#{id:fieldID2}").value = json.fieldID2;

How to determine the actual field ID in CSJS runtime using something like this:

$H( json ).each(function(pair){
    try {
        $("#{id:"+pair.key+"}").value = pair.value  
    }
    catch(err) { }
});  

Our actual form has +10 fields to be populated and depending on the circumstances the fields are dynamically “loaded” and therefor we have 2…n fields on the form to be populated by the ajax/json.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T23:28:09+00:00Added an answer on June 18, 2026 at 11:28 pm

    Here is a CSJS implementation of getComponent() method from SSJS:

    /**
     * getComponent
     *
     * CSJS implementation of SSJS's getComponent method
     *
     * @param serverId  ComponentId to search for
     * @param fromObj   DOM object to start with
     * @author Sven Hasselbach
     * @version 0.3
     */
    function getComponent( serverId, fromObj ){
    
        var found = false;
        var obj = fromObj;
        var id = "";
    
        while( obj ){
            try{
                id = obj.id.split(":").pop();
            }catch(e){}
    
            if( id == serverId )
                return obj;
    
            ret = findComponent( serverId, obj );
            if( ret )
                return ret;
    
            obj = obj.parentNode;
        }
    
    }
    
    /**
     * findComponent
     * 
     * searches the component tree for a specific
     * server id
     */
    function findComponent( searchId, parentNode ){
        var obj;
        var id = "";
    
        if( parentNode == null )
            return;
    
        if( parentNode.hasChildNodes() == false )
            return;
    
        for( p in parentNode.childNodes ){
            obj = parentNode.childNodes[p];
            try{
                id = obj.id.split(":").pop();
    
                if( id == searchId )
                    return obj;
    
                ret = findComponent( searchId, obj );
                if( ret )
                    return ret;
    
            }catch(e){}
        }
    }
    

    This allows you to search in the component tree for a specific server id.
    To use it you have to define a starting component first, because the tree is searched from a node to the top.

    To get your starting node:

    var obj = XSP.getElementById( "view:_id1:layoutMain:callbackMiddle:dataViewAllReportsByStatus:1_sumLink" );
    

    Then search for another component layoutLeft f.e.:

    var ret = getComponent("layoutLeft", obj );
    alert( ret.id )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider this scenario. I have an object, lets call it.... Foo. Foo raises a
i need to implement this scenario Brief about that is have two java based
I have two fields in my model CreateDateTo CreateDateFrom which renders like this <b>Start
Imagine this scenario: You have a desktop and a laptop. The desktop has a
Please Consider this scenario: We have a base class called clsMain : class clsMain
So I have this scenario <div id=editor contenteditable=true> <div id=list>Hello</div> </div> I want to
I have this scenario well, i'll let the model explain. public class ScheduleMonthlyPerDayModel {
I have this scenario. I want group on Country and Category. A store can
I have this scenario where I would like to redirect my domains using the
In my app, I have this scenario where I need to post an object

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.