Accessing HTMLB from javascript

Hi expert,
Can someone explain how to access the attributes,methods avialable in javascript to access htmlb objects in a page,
Like for e.g.,
htmlbSL(this,2,'SUBMITVALUES:HandleSubmit')
Is there any document available?
Thank you
AP

Hi AP,
I believe there is no documentation avaliable about this.
Maybe because this accessing method is not right to do
but I can explaint about the function htmlbSL
function htmlbEL(this,2,'SUBMITVALUES:HandleSubmit');
this                      = HTML element.
2                         = event type index.
SUBMITVALUES:HandleSubmit = objectID:eventName
if you want to know list of event type index.
here the list:
<b>EVENT TYPE                  INDEX</b>
'htmlb:breadCrumb:click'      1
<b>'htmlb:button:click'          2</b>
'htmlb:checkbox:click'        3
'htmlb:image:click'           4
'htmlb:link:click'            5
'htmlb:radioButton:click'     6
'htmlb:tabStrip:click'        7
'htmlb:tree:click'            8
hope this can help you.
respeck,
-adyt-

Similar Messages

  • Access java from javascript in firefox

    Hi,
    I am trying to access java method from javascript.
    It works fine with ie, but firefox somehow brings up the error
    saying the method defined in java is not a function.
    I am calling like.
    document.applets["myapp"].soundAlarm();
    I have put MAYSCRIPT in the applet tag.
    still not works.
    Does anyone have idea ?
    Thanks

    Try with
    document.myapp.soundAlarm();I assume that the name attribute of the APPLET is myapp.
    Note the MAYSCRIPT is useless in your context. MAYSCRIPT is used when from Java you need to access the JSObject.
    See http://www.rgagnon.com/topics/java-js.html for examples.
    Bye.

  • Can I access servlet from javascript

    Hello everybody,
    I am trying to write on servlet in which first user add name and two Date
    [ fromDate and toDate] for this i used javascript Calendor control which show me
    the date calendor.
    Now i want to send request to server for checking date different when user click on
    day of that fromDate Calendor.
    How can i send request ? As using submit button it possible to send request.
    but using tht Calendor [JavaScript ] control How i submit request or is
    any javascript code i have to add ?
    waiting for reply,
    Thanks,
    Nil

    Hi razoredge,
    thank for reply,You right request go to server when i click on submit button.
    I want that action when user click in day of fromDate Calendor object [javascript].
    this show one calendor control and user select day,
    when user select day that window close and selected date display on textbox,
    I want after close that popup window,request goes to that submit request directly instead of
    user has to click on submit button,
    Can this work ?
    Thanks
    Nil

  • Access javabean from javascript

    Hi all,
    I have learned this code to generate a progress bar using javascript. However, whithin javascript, I can only simulate a constant time for the progress bar.
    In my web page, when the user click submit....a logic takes place in the back end for sometimes to finish. How do I tight that logic to my javascript to retrieve real time?
    Thank you very much for your time and assistance

    You have to call code on the server.
    See here for an example using Perl. You can use any server-side tech you want.
    http://www.ipwebdesign.net/kaelisSpace/useful_serverClientValidation.html

  • Access page item from Javascript

    I have searched the forum, and based on my findings this is what I've done so far:
    I have a page item where the Google Map key is stored. I want to access it from Javascript so that I can call the Google map with the key. (Note: The key can't be hardcoded as it will be pulled from DB according to the environment/url the app is running on. e.g. - dev, test, production.)
    Here's a javascript code block:
    <script>
       var google_key = $x('P1_GOOGLE_KEY').value;
       var l_url = "http://maps.google.com/maps?file=api&amp;v=2&amp;key=" +
                   google_key +
                   "&sensor=false";
    </script>I have tried, $v('P1_GOOGLE_KEY') , $x('P1_GOOGLE_KEY') , &P1_GOOGLE_KEY. and none of them work.
    How do I access a page item from Javascript?
    Thx!
    Marc

    Marc,
    I am going to take a shot in the dark, but are you referencing this item outside of a function in your head tag? So basically it tries to reference the item on load? If so this is not going to work because the item does not exist yet. If you are using jQuery change your code to look like:
    $(document).ready(function(){
       var google_key = $x('P1_GOOGLE_KEY').value;
       var l_url = "http://maps.google.com/maps?file=api&amp;v=2&amp;key=" +
                   google_key +
                   "&sensor=false";
    });This will tell the javascript to fire after everything has fully loaded. If you are not using jQuery then you can use a little javascript snippet from here to add a ready event to your page. or you can copy paste this into a script tag.
    (function () {
      var ie = !!(window.attachEvent && !window.opera);
      var wk = /webkit\/(\d+)/i.test(navigator.userAgent) && (RegExp.$1 < 525);
      var fn = [];
      var run = function () { for (var i = 0; i < fn.length; i++) fn(); };
    var d = document;
    d.ready = function (f) {
    if (!ie && !wk && d.addEventListener)
    return d.addEventListener('DOMContentLoaded', f, false);
    if (fn.push(f) > 1) return;
    if (ie)
    (function () {
    try { d.documentElement.doScroll('left'); run(); }
    catch (err) { setTimeout(arguments.callee, 0); }
    else if (wk)
    var t = setInterval(function () {
    if (/^(loaded|complete)$/.test(d.readyState))
    clearInterval(t), run();
    }, 0);
    document.ready(function (){
    var google_key = $x('P1_GOOGLE_KEY').value;
    var l_url = "http://maps.google.com/maps?file=api&amp;v=2&amp;key=" +
    google_key +
    "&sensor=false";
    Good Luck,
    Tyson Jouglet

  • Access CFC in Javascript

    Okay, so I did the whole
    <cfinvoke component="myCFC" method="init"
    returnvariable="myObj">
    Now is it at all possible to access this from
    JavaScript?

    it's no different than any other CF code.
    you can do:
    <script type="text/javascript">
    var myVariable = "#myObj.foo()#";
    </script>
    (assuming the foo() method returns a string... and that the
    code is within <cfoutput> blocks)
    but whether it's a CFC or any other CF code, you still have
    the client side (JS) / server side (CF) issues.

  • Access HTMLB controll in Javascript

    Hi,
    I am tring to access an HTMLB controll (InputField) from JavaScript, but having some problems...
    I have created a DynPage and created an InputField: InputField inField = new InputField("inField");
    Now, in the javascripts I am trying to access this InputField text with:
    var txt = document.form.inField.value
    but it does not work... I get a JavaScript error.
    Any suggestion how to access the InputField from the JS? maybe with getElementByid?
    Thanks in advance,
    Aviad

    Hi Aviad,
        Htmlb controls are not a direct reprsentation of html controls. The way to get hold of them is by following lines.
    function validateField()
    //htmlb_formid : this is automatically generated
    //the following lines will get you the javascript function
    //name to call to get hold of your input field
    var funcName = htmlb_formid+"_getHtmlbElementId";
    func = window[funcName];
    //The funtion is called with id of the input field
    //which returns the htmlb control object
    var inputfield = eval(func("fname_input"));
    //this will get you the value of inputfield
    var inputString = inputfield.getValue().toString();
    <b>Note: Make sure you set jsObjectNeeded = true for the htmlb control.</b>
    PS: Please consider rewarding points for helpful answer. thank you.
    Message was edited by: Prakash  Singh

  • Error while accessing a public method of applet from javascript.

    Hi,
    I am getting "Object doesn't support this property or method" error
    when accessing a public method of applet from javascript in IE 6 using
    document.applets[0].myMethod();
    The same is working in IE 7.
    Thanks in advance.
    Regards,
    Phanikanth

    I don't know why it happens, but this works for me in both versions:
    <applet ..... name="MyApplet">
    </applet>and in javascript use
    document.MyApplet.myMethod()

  • How can I access xml document from javascript whithin a JSP page

    how can I access xml document from javascript whithin a JSP page?
    I have a JSP that receives an XML document from a JavaBean, so I can access it within the entire JSP, but I need to access it from the javascript inside the JSP... and I have no idea how i can do this.
    Thanks in advance!

    The solution would only work on MS IE browsers, as other browsers do not support an XML DOM.
    It can be done, but you would be stuck with using the Microsoft broswer. If that is acceptable, I have some example code, and a book recommendation.

  • Is it possible to access an object inside a Captivate movie from Javascript?

    For example, my JavaScript performs some processing, based on which a particular button inside the movie needs to be hidden. Can I access a particular button from JavaScript to be able to do this? If not, then is it possible to be notified inside the Captivate movie, when a variable has been set by JavaScript?  I notice that the JavaScript interface in Captivate 8 provides an event (CPAPI_VARIABLEVALUECHANGED) which fires when the value of a variable inside the Captivate movie changes. If there was a similar event which would fire inside the Captivate movie, when a variable changes then I could have set a variable using JavaScript and hidden a particular button using an advanced action, when the event for that variable changing fires inside the Captivate movie.
    Articulate Storyline has an event which gets triggered when the value of a variable changes (either because of JavaScript executing or otherwise). If something similar was possible in Captivate, it would open up many possibilities.
    I am evaluating Captivate 8.
    Thanks in advance for any help.

    hi
    Yes. its possible but its not recom
    you can set in production system to allow changes to obj rsa1->transport connection->click 'object changeability', and look for object type , and set to changeable.
    pls refer these below posts
    transport a query backwards, from production to development
    Re: Transporting Process Chains from Production DOWN to QA and Dev
    assign points if useful.....
    Shreya

  • Access netui pageflow data from javascript in a response.jsp

    How do I access a pageflow variable from a javascript in a response.jsp page? I understand that the follow line can be used in a response.jsp:
    <netui:label value="{pageFlow.m_applicant.createdDate}"/>, but it can not be used in a javascript of that rensponse.jsp.

    Jack,
    You can't directly bind to a pageFlow variable but you can store the
    variable in the page using the getData tag and access it via javascript as I
    have done in this example.
    <netui-data:getData resultId="myId" value="{pageFlow.theString}" />
    <script language="javascript">
    function showAlert()
    var myJpfProperty = "<%=pageContext.getAttribute(
    "myId" )%>";
    alert( "Here is the Jpf property value: " + myJpfProperty );
    </script>
    Here is some related documentation, though it doesn't show a javascript
    example
    http://edocs.bea.com/workshop/docs81/doc/en/workshop/guide/netui/howdoi/howAccessDataBindingContextsScriptletJavaScript.html
    - john
    "jackz" <[email protected]> wrote in message
    news:4074251a$[email protected]..
    How do I access a pageflow variable from a javascript in a response.jsppage? I understand that the follow line can be used in a response.jsp:
    <netui:label value="{pageFlow.m_applicant.createdDate}"/>, but it can notbe used in a javascript of that rensponse.jsp.

  • Access report row data from javascript

    -- I have a report. Something like this.
    Select id, name, htmldb_item.checkbox(1, '#ROWNUM#')
    from test;
    -- I can get the rownum via javascript.
    var ml = document.wwv_flow;
    var i;
    for(i = 0; i < ml.elements.length; i++){
    alert("name = " + ml.elements.name);
    alert("value = " + ml.elements[i].value);
    -- I would like to access the other items I selected in the report from javascript. ie. id and name.
    -- So knowing the rownum how do i get those values for a given row?
    Thanks
    Jon

    hi jfortney,
    i have one problem in oa framework, ie i need to get the row number by javascript but could not do . my way is
    document.getElementById('tableid').rows.length.. but there is no id for that table when i c the view source. so please suggest me some idea as to how to get the row number of a table in oa framework page.
    thanks in advance...
    prabhakaran.p

  • Access PL/SQL Objects from JavaScript

    I have following Problem:
    I want to have access to a pl/sql object from javascript.
    for example:
    i have a procedure with a parameter called test from Type Test.
    PROCEDURE toTest (
    test Test)
    IS
    BEGIN
    htp.script('here i want the value of test', 'javascript');
    would be really great if somebody can help me fast.
    thanks a lot
    holger

    I think it might have something to do with htmldb_Get
    Hope that clue gets you somewhere. I would love to see a working example of this for 4.02 if anyone actually has one.
    Regarding dynamic actions there's a severe limit on the number of them I believe.29? Which is one reason I avoid them and
    just do things in javascript. Personally I think javascript is actually easier to understand because one does not have to
    divide an actiivity up into several pieces. But that might just be specific to my brain, I don't know.

  • Access ATG REST webservices from javascript..?

    Hi All,
    Can we access ATG REST web services from Javascript/jQuery..? If yes, then how..?
    Thanks,
    Vishnu

    Hi Nitin, I'm able to access /atg/dynamo/Configuration component's properties using REST services from following code -
    */atg/rest/security/restSecurityConfiguration.xml*
    <resource component="/rest/bean/atg/dynamo/Configuration">
         <default-acl value="[email protected]:read,write,execute"/>
         <property name="httpPort" secure="false"/>
    </resource>
    client Java code :
    public class RestClientRequest {
         public static void main(String[] args) {
              RestSession mSession = RestSession.createSession("localhost", 8180, "[email protected]", "chinna");
              mSession.setUseHttpsForLogin(false);
              try{
                   String loginStatus = mSession.login();
                   if(loginStatus == null || "null".equals(loginStatus)){
                        mSession=null;
                        System.out.println("Login failed");
                   else{
    RestResult result = RestComponentHelper.getPropertyValue("/atg/dynamo/Configuration", "httpPort", null, mSession);
    String test = result.readInputStream();
    System.out.println("\n\n"+result.readInputStream());
    but getting exception when i try to get repository item using the below code
    <rest-security>
    <resource component="/rest/repository/atg/commerce/catalog/ProductCatalog">
    <default-acl>[email protected]:read,write,execute"</default-acl>
    </resource>
    </rest-security>
    Client Java code:
    public class RestClientRequest {
         public static void main(String[] args) {
              RestSession mSession = RestSession.createSession("localhost", 8180, "[email protected]", "chinna");
              mSession.setUseHttpsForLogin(false);
              try{
                   String loginStatus = mSession.login();
                   if(loginStatus == null || "null".equals(loginStatus)){
                        mSession=null;
                        System.out.println("Login failed");
                   else{
    RestResult result = RestResult result = RestRepositoryHelper.getItems("/atg/commerce/catalog/ProductCatalog", "product", null, mSession);
    String test = result.readInputStream();
    System.out.println("\n\n"+result.readInputStream());
    Exception :
    Login successful
    Login Status : ATG3990000
    atg.rest.client.RestClientException: java.io.IOException: Unauthorized Server returned HTTP response code: 401 for URL: http://localhost:8180/rest/repository/atg/commerce/catalog/ProductCatalog/product
         at atg.rest.client.RestSession.createHttpRequest(RestSession.java:755)
         at atg.rest.client.RestSession.createHttpRequest(RestSession.java:722)
         at atg.rest.client.RestRepositoryHelper.getItems(RestRepositoryHelper.java:188)
         at in.vcarve.RestClientRequest.main(RestClientRequest.java:26)
    Caused by: java.io.IOException: Unauthorized Server returned HTTP response code: 401 for URL: http://localhost:8180/rest/repository/atg/commerce/catalog/ProductCatalog/product
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at atg.rest.client.RestSession.createHttpRequest(RestSession.java:745)
         ... 3 more
    Thanks,
    Vishnu

  • Access to Data from Javascript

    I have a propertie call it "country" in my "Data View" and I need access its value from javascript code to use in a IF sentence.
    I try thinks such as "xfa.node.getAttribute("country")" but doens't work.
    How can I access it?
    Thanks.

    You can try like this:-
    if(country.rawValue == "IN")
       xfa.host.messageBox ("You selected India");  // This will display a pop-up
    else
       xfa.host.messageBox ("You selected some other country");
    Chintan

Maybe you are looking for

  • Multiple devices, multiple users, multiple accounts.... unwanted merge

    My husband and I accidentally synced phones to each others iTunes account. I am 75% sure that I know how this happened, so that we can avoid it in the future. The problem is that his apps are mixed in with mine on all devices, the Mac, the iPad, and

  • FDM column width in Import and Validate Screens data table

    Hi all, is it somehow possible to influence the width of the columns in the Import and Validate/Export Screen in any way? I have the problem, that the column width is always a little bit to wide and so I have to scroll to the amount column everytime.

  • Listener Adapters in BPEL and ESB

    I created 3 BPEL Processes and 3 ESB's listening to OA Adapters. All of them listen to the same event. I found from the UI that only one subscription is created for all the 8 listener OA Adapters. When the event is raised all my BPEL Processes are in

  • Portal confused by window.open javascript command.

    To all, I am having difficulty trying to implement a javascript popup calendar. I am calliong a simple html page i have stored in avirtual direcytory on the web server. I have also moved it to the apache default html directory. When i issue the windo

  • Creating a java editor

    Hi, I am trying to make a java editor in java as my final year engineering project. Can anybody give me some help or a link to any tutorial that might help. The java editor should include a text editor with all the normal operations such as cut,copy,