Refer to Tabular Form field in Condition of Dynamic Action

I tried to filter on this topic but didn't come up with anything.
Is there a way to refer to a field in a tabular form as a condition of a dynamic action?
For example, I want to pop up a message (javascript 'alert') when the value of one field in a tabular form is changed, but only if another field for that same row meets a certain condition.  So let's say the field in the condition is XYZ.  So in the condition section, i would have PL/SQL Expression - XYZ IS NULL.  Something like that.  How would I refer to that XYZ field from my tabular form in the condition section of a dynamic action?
Thanks in advance.
John

Thanks for your help on this.  I think going with the action being an 'execute javascript code' is a good approach.  So here is my situation - I have a tabular form.  I have 2 fields (among others) - SPECIES and WEIGHT.  The SPECIES is a select list in the tabular form.  The WEIGHT is a text box in the tabular form.
To make this simple, let's say this is for only one species - SNSG.  If the person changes the select list to SNSG and the associated WEIGHT field is NULL, I need to pop up a message that says 'Fill in weight field if selecting SNSG'.
So here is what I have:
Event: Change
Selection Type: jQuery Selector
jQuery Selector: :.speciesClass
Condition: In List
Value: SNSG
True Action: Execute JavaScript Code
** Here is where I am stuck: In the JavaScript code I need to this:
If WEIGHT is null THEN:
confirm('Warning: Enter weight if entering SNSG species.');
I am not sure how to write that "If WEIGHT is null THEN" part in javaScript and be able to refer to the WEIGHT field associated with the SPECIES value I just changed in the tabular form.
I hope that makes sense!
I appreciate your help!!
Thanks,
John

Similar Messages

  • How To Make A Tabular Form Field Conditionally Readonly

    Hello.
    I am using Apex 4.0.1. I've created a tabular form on the EMP table and have made the ENAME column a select list that is being sourced from a simple SELECT query like:
    select distince ename d, ename r from emp order by 1
    When a user selects "KING" as the value, I would like this ENAME field on this specific row in the tabular form to become readonly. If some other value is chosen from the ENAME drop down, then this ENAME field should remain "changeable".
    If the user clicks the "Add New Row" button on the form, a new row should be added to the bottom of the form with this ENAME field as "changeable". Only if the user selects the "KING" value from this ENAME drop down should this filed become readonly.
    Does anyone know how to go about doing this kind of conditional readonly on a tabular form field?
    Thank you for any help.
    Elie

    Hi Little Foot (I do like that name).
    Here's the link to my thread: "How to conditionally make a specific row in a tabular form readonly":
      Re: How To Conditionally Make A Specific Row In A Tabular Form Read Only.Hope this helps you as much as it does me.
    Elie

  • Tabular Form - Read only condition for certain users

    Is it possible to make a select list field in a tabular form read-only to certain users? Here's the situation:
    The tabular form lists the users who need to select "Approve" or "Reject" in that field (they are approving or rejecting an engineering change)
    I want all of them to see the approval/rejection of their team, but only have access to edit the select list associated with their record.
    Thanks in advance.
    Apex 4.0.0.00.46

    You could use either "authorisations" tab or "conditional display" for the relevant column attribute.
    Report Attributes->Column Attributes->authorisationsIt would be better to have some more detail about what you are trying to get (maybe a quick mock up of the form, for example) but, I can envision something along the lines of the following:
    For each approval/rejection field:
    1. Create an authorisation appropriate for access to to each approval/rejection field e.g. authorisation scheme "FOO"
    2. In the relevant fields column attributes, set the authorisation to "FOO"
    3. now create a read only "public" copy of the above field, using the "display as text (based on LOV does not save state)" - set the authorisation for this field as "{NOT FOO}"
    (if you don't want to use authorisations, you could build an equivalent using "conditional display" instead, which is basically the same thing, except column specific)
    The downside is of course that you're duplicating fields in your query, which creates a bit of redundancy. There may be better ways to achieve this (maybe you could make use of the APEX_ITEM api, for example) but this is fairly easy to set up IMO.

  • Issue with setting a default value to a Tabular Form field

    Hi -
    I'm running into an issue setting the default value of a tabular form column. I'm trying to set the default value to the row number (#rownum#). This used to work in previous versions, but now it's returning 0. Is there a was to set this value in the default value attribute of the field with a substitution string?
    Thank you in advance for help!

    Share with us what worked in previous versions.
    Jeff

  • Dynamic action on tabular forms fields

    Hello guys.
    As I can see on the tabular form's fields I can't perform dynamic actions. What I want is to have a select list item when at the event Change it changes the values for all the records in that report. For example if I have 40 records in that tabular form and I change the value from "Open" to "Close to the field called Status, I want to see that change (Status value from "Open" to Close") reflected in all the rows of that tabular form. Is that make sense?
    Thank you, Bernardo.

    Hi Bernardo,
    There are several ways to accomplish what you want.
    - You can create a PL/SQL procedure to handle an update on all rows based on the value of your changed column value. I once wrote a blog post that might help you with that:
    http://vincentdeelen.blogspot.nl/2013/06/custom-multi-row-processing-using.html
    -You can create a dynamic action with javascript or jQuery to handle the change event.
    The first option is more secure since it's handled by the database, the second one is simpler and can instandly set all the entire column for all displayed rows, without the need to refresh your tabular form, or your entire page. For a secure working you should however have some validation at the database end. Also I think it is not possible to set the values for rows that are not displayed, that again would require some PL/SQL for handling.
    If you need any help setting up the dynamic action, please put up an example on apex.oracle.com.
    Regards,
    Vincent

  • Set value in tabular form field with dynamic action

    Hi Guys,
    I have a dummy field in a tabular form which I am trying to use to populate another field in the tabular form when it is changed.
    In the tabular form I have an ITEM_ID field. Each item_id has an ITEM_NAME which is the dummy field as it is not a field in the database table.
    When the user enters an item name, I would like something like a dynamic action to fire, populating the ITEM_ID.
    e.g User enters part no ABC into the dummy field. When they tab out, I want the value to the item_id field on the tabular form row to be populated based on a SQL query in a similar fashion to how it can be done with dynamic actions on text items on a form.
    I am using APEX v4.0.0
    Thanks in advance
    Chris

    Hello Chris,
    Why can't you use Select List Item on tabular form, which will display all item_names and return item_ids?
    If the list is huge and you need users to type & search, then you can use Pop-up LOV item.
    Regards,
    Hari

  • Tabular form - field to open explorer select file name to same in field

    Hi
    I am using apex 4.1 and would like some help with a tabular form I have created.
    It is based on a table which has two fields
    description
    path_of_source_file
    in the form I would like to be able to open windows explored to select a file name and save the path in the path_of_source_file field
    Does anyone know how to do that
    Many thanks
    Jayne

    >
    Start by editing your forum profile with a real handle instead of "user1647153".
    I am using apex 4.1 and would like some help with a tabular form I have created.
    It is based on a table which has two fields
    description
    path_of_source_file
    in the form I would like to be able to open windows explored to select a file name and save the path in the path_of_source_file fieldYou need to seriously rethink what you're trying do. Not only does APEX not provide support for file browse items in tabular forms (which are horrible anyway; even more so with an ugly file picker in every row), but file path information is not available in standard browser configurations (or at all in most browsers). As has been noted in many previous threads on this topic:
    >
    For security/privacy reasons recent versions of browsers by default do not send local file path information from File Browse items to the server, nor expose the file path in the control's JavaScript methods. Firefox, Safari and Chrome only provide the filename. IE6 & IE7 still yield the path in Windows format. IE8+ and Opera have adopted an irritating approach of replacing the path with a wholly imaginary "C:\fakepath\"—and this monstrosity has sadly had to be enshrined in the HTML5 spec...
    Changing IE's security config setting "Include local directory path when uploading files" enables the path to be exposed in IE, but unless you're working in an intranet environment where: IE is the only browser used; it's possible to make remote changes to this setting on every desktop; and this won't break/expose anything else, then trying to achieve this is pointless.
    >
    For more information see:
    http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2009-March/018980.html
    http://blogs.msdn.com/ie/archive/2009/03/20/rtm-platform-changes.aspx
    http://developers.whatwg.org/number-state.html#file-upload-state
    {thread:id=2385659}
    Go right back to the start and explain what this is all about. We need to know what the ultimate goal is in order to determine what use—if any—can be made of APEX here.

  • Refer to a Form Field in a Crystal Report

    Hello!
    For a customer I need to set up a Layout in Crystal Reports for Asset History Sheet in Fixes Assets.
    Depending on the Depreceation Area (IFRS, HGB) the (printed) report contains different data, I need to filter the data in the Asset History Form that is shown on the screen in different ways.
    I have to make sure that no HGB report can be printed with IFRS numbers (and vice versa).
    The information about the Depreceation Area is written in a field in the Asset History Form on the screen, it is not stored in any table.
    Is it possible to check the content of this field in my Report?
    Thanks and best regards
    Peter Ganserer

    Hi Peter,
    If the Form Field is a direct field from table, you can add the field from table. However, if it is a calculated field, you may not have option to put it into Crystal Report.
    Thanks,
    Gordon

  • Conditional on dynamic action result?

    I have a form that has a dynaminc action on it that sets the value for an item P2_Date. The value is queried from another table. In most cases, the query will return a date for the item and it works out well. This item is triggered upon picking a DA_Number. Once the DA_Number is selected from the form, the dynamic action is summoned, the query does its querying and populates the date field with a date (P2_Date). However, there are some cases that the query will return a NULL value (there is no date associated with the selected DA Number). On the form, the request field looks blank, like there's nothing there. So once I hit submit, the date is left blank on my report
    Is it possible to place a conditional on that value that is queried (P2_Date)? Once I select a a DA Number, if it returns a NULL/blank for the P2_Date field, I want the user to be able to select the value/date and capture that date to be submitted. I already have the date field set as a "DatePicker", but when I enter in a date, it is not being captured
    Is there anyway to capture this? Thanks in advance.

    Hi again,
    Thanks for helping out!
    this is how it is now, and it is working a bit to well;).
    Now the rule applys for all company codes so the check on company code is not working.
    As long as the action is SD they get the 2PEN subtype in IT2010.
    Any suggestions to what is wrong now?
    Thanks
    0001                   04     403     P     *UPDATE IT2010 WHEN ACTION SD
    0001                   04     405     P     PSPAR-MASSN='SD'
    0001                   04     407     P     P0001-BUKRS='1200'/X
    0001                   04     410     P     P0001-BUKRS='1035'/X
    0001                   04     411     P     P0001-BUKRS='1147'/X
    0001                   04     412     P     P0001-BUKRS='1001'/X
    0001                   04     413     I     INS,2010,2PEN,,(P0000-BEGDA)/D
    0001                   04     414     W     P2010-BETRG='1'

  • Unable to refer a OAF form field value and pass it as a parameter

    Hi,
    I have a requirement to call a custom Oracle form from a OAF Page (Purchase Agreements form).
    Using personalization I have created a button on the OAF page and have set its Destination function to
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=5307
    BA_TYPE and BA_VALUE are two parameters defined on the Oracle form.
    I am able to see th Button on the OAF page and when i click on it, it opens up the custom form.
    The issue is that I am currenctly passing a hard coded value (5307) to the form parameter.
    I actually would like to use the field name on the OAF page and pass the value in it to the form parameter.
    I tried doing it the following few ways, but i get an error messageas
    FRM-47023: No such parameter named G_QUERY_FIND exists in form <Form Name>
    FRM-40105: Unable to resolve reference to item PARAMETER.G_QUERY_FIND.
    FRM-47024: Parameter BA_VALUE type does not match definition in form <Form Name>
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=poHeaderId
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=&poHeaderId
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=pageContext.getParameter("poHeaderId")
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE="{@poHeaderId}"
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=pageContext.getParameter("PoHeadersSummaryVO.poHeaderId")
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=pageContext.getParameter("oracle.apps.po.document.server.PoHeadersSummaryVO.poHeaderId")
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=PoHeadersSummaryVO.poHeaderId
    form:PO:XXOX_PO_SU_OCM_FG:STANDARD:XXOX_QTY_ADJ:BA_TYPE=BPA BA_VALUE=oracle.apps.po.document.server.PoHeadersSummaryVO.poHeaderId
    Any help on this will be great
    Thanks
    Srinivas Reddy

    Hi,
    I have a similar issue.
    The data type of the form parameter is Number
    where that of the page paramenter is oracle.jbo.domain.Number
    I hav converted the datatype using to_number via form personalization. There is no error but value is not getting passed.
    pls let me know if anyone has a workaround/solution for this.
    Thanks,
    Pragati

  • Re-enable column values in tabular form before submit

    Hi,
    I am using Apex 4.1. I have a tabular form. I created a dynamic action to disable some of the columns on page load.
    It works fine and I am able to add new rows. But when I click submit, all the column values are null and it is throwing validation error.
    I need to enable all the columns before submit. I invoked a javascript to enable all the fields, but still i get the validation error.
    I also tried creating dynamic action to enable the values but still I get the validation error becuase the values are all null.
    Please help me to resolve this issue.
    Thanks
    SR

    Per HTML standards, disabled items are not submitted. Therefore if they are disabled at the point of submit, their corresponding session state values will be null (as you discovered). Apex validates against what is is session state, not against what is on your screen, so since the values didn't get submitted (per standards for HTML disabled items) that's why Apex thinks they are null.
    Before submit, re-enable the items/columns and it should work fine.
    Edit: Sorry, looks like you are doing this already. But are you doing it in the right order?
    How I have done it is:
    1. Change the save/apply changes button (whatever is doing the submit) to call a URL.
    2. Make the URL call javascript, such as:
    javascript:formSave('SAVE');
    3. Put a javascript function on your region or page (hypothetical example):
    <script type="text/javascript">
    function formSave(pRequest)
    { //Put all checking and processing prior to form save here.
      var vRequest="SAVE"; //default value taken from orig. "apply changes" button
      if(pRequest)
        vRequest=pRequest;
      enableAllCells(gMaintActionCol); //Put whatever code you have to re-enable your tabular form items here, must fire before apex.submit.
      //Do the save
      apex.submit(vRequest);
    </script>Edited by: gti_matt on Dec 1, 2011 3:04 PM

  • Copy Paste On Tabular Form

    I have a great need to produce an APEX (version 2.2.1) tabular form in
    which users would be able to do Excel-like copy/paste of tabular form
    fields from one part of the form to another.
    For example, a user would want to somehow (ideally highlight with the mouse - not sure if this is possible) select the first 2 rows of the form and then
    copy/paste these to, say, rows 7 and 8, overwriting any values in
    those form fields. Or, select field 2 (this would be on row 2) under column A and then copy/paste this field to, say, fields 3 through 10 under the same column A.
    I am currently trying to do this using javascript, but am not sure how to go
    about it and would appreciate any help or advice.
    Thank you very much.
    Elie

    Hello Vikas.
    Thank you very much for creating your sample page. I liked the way you're
    duplicating entire rows in the form.
    I'm sorry for not responding sooner. I have been under the gun, sort-to-speak
    at my work place. I've been playing with another tool (explained below) to see
    if it could help me out with my application.
    The issue before me is that users need the flexibility of an Excel like interface
    in which they are able to do any sort of copy/paste/fill operations as desired
    prior to submitting their changes to Oracle. This kind of functionality is what
    I've been trying to, if not duplicate, at least get part way there in Apex. And
    this is what spurred me on to post my question to you and to this Forum.
    I went ahead and dabbled my way through all sorts of javascript (learned an awful lot, I might add) and have come up with a sample tabular form in which I'm able
    to copy a single form field to any selected row / column combination in the form.
    I've copied my app ( App 19379, Page 12 ) up to the Apex forum.
    Here's the link:
    http://apex.oracle.com/pls/otn
    Workspace = play
    Login username = [email protected]
    Login password = playtoo
    Originally, this app brought up a second page (Paste Page) as a popup in which
    users could select which columns and rows they wanted to copy a form field to.
    They would then click a "Go" button on this Paste popup page. This "Go" button
    would then run a javascript function "do_paste()" in the calling page. This function
    would copy the form field to the designated columns and rows. This worked fine.
    However, I wanted a solution in which everything is entirely on a single page
    rather than having a popup page appear.
    And so, I modified my page 12 so that the user could designate the target
    columns and rows entirely on the same page (page 12), and so, eliminate
    the popup page.
    This works to a point.
    The user first clicks "Copy". This displays (via a javascript function) the
    contents of the selected form field in a text box. This also displays the
    target fields "From Column", "To Column", "From Row", "To Row".
    The Copy button is replaced with a "Go" button. The user then designates
    target columns and rows and clicks "Go". This causes the selected form
    field to be copied to the designated targets.
    Unfortunately, clicking the "Go" button also causes the page to be submitted.
    This submit operation causes the form to be refreshed which then completely
    erases the copy action and the form ends up with the original data. The user
    does not see that anything has happened. However, under the wraps, my
    javascript do_paste() function was invoked but then it's result was reversed
    by the submit action.
    I do not know how to get around this submit action (which refreshes the form,
    thereby reversing my do_paste() function). I could, of course, bring back the
    popup page. The paste does work with that. I was just hoping I could do the
    copy/paste all on one page.
    In any case, this represents my current state with respect to an Apex solution
    to my need.
    I did in the meantime find another interesting solution to my problem.
    Years ago in another job I had worked with a tool called Oraxcel (now
    called SQLXL - www.oraxcel.com). This tool is an add-in into Excel and provides an API between Excel and Oracle (as well as various other dbms systems: mysql, sql server, db2, etc.).
    Well, I downloaded a free trial copy and have been playing with it.
    In a nutshell, I can now allow users to continue using Excel to do
    copy/paste/fill operations and provide [ via VBA buttons and macros
    that interface with Oracle - actually it is using Oracle's product "Oracle
    Objects For OLE (OO4O) ] them the ability to upload the excel data (new and
    modified and deleted rows) to Oracle tables, download from Oracle tables (from a package/ref cursor or a table), create Excel LOVs that are dynamically populated from Oracle, and provide validations run from a package and display error
    messages to the Excel page.
    In effect, Excel becomes the "front end" to my Oracle schema.
    As it turns out, in my particular application, Apex pages still play a critical role
    as users need to interface with these as well. However, the SQLXL product
    appears to be a neat solution allowing users Excel like flexibility to copy,
    paste, fill, and other operations that Excel does so well while still interfacing
    with Oracle.
    Am still playing with this tool and built a small "proof of concept".
    In any case, thank you again so much for your help and your sample page.
    I would like to incorporate the neat way you're duplicating rows in the form
    as I believe this will come in handy in naother APEX app I'm currently
    working on in another project at my work place.
    Elie

  • Select list enable / disable in tabular form

    Hi,
    I have created report on (ACT_COA_SEGMENT_MAS) table and this is master table , and created link on this report, when i click on report link, control moves to tabular form that is based on detail table (ACT_SEGMENT_VALUES_MAS)
    In master table there is column,
    SEGMENT_ID number primary key;
    QUALIFIER varchar2(1);
    If in master table qualifier column value is 'N' then
    then in detail table (ACT_SEGMENT_VALUES_MAS) column account type cannot be null and column should enable.
    If in master table QUALIFIER column value other than 'N' then Account column in detail table should disable . and value should not be enterable.
    and ACCOUNT_TYPE column in deatil table is a select list.
    How i can do this?
    Thanks & Regards
    Vedant
    Edited by: Vedant on Jan 10, 2013 10:14 PM

    Vedant wrote:
    If in master table qualifier column value is 'N' then
    then in detail table (ACT_SEGMENT_VALUES_MAS) column account type cannot be null and column should enable.
    If in master table QUALIFIER column value other than 'N' then Account column in detail table should disable . and value should not be enterable.
    and ACCOUNT_TYPE column in deatil table is a select list.
    How i can do this?One way - sadly a bit of work - would be to use APEX_APPLICATION_ITEM to generated the detail items as a manual tablular form where you can control the disabled property when generating the tabular form fields using CASE statements, writing manual PL/SQL processes and the built-in APEX_ITEM collection to manually perform insert/update/delete operations on submit. Check the documentation for the full syntax of using APEX_ITEM functions to generate HTML items.
    An example from the Oracle docs looks like
    SELECT
      empno,
      APEX_ITEM.HIDDEN(1,empno)||
      APEX_ITEM.TEXT(2,ename) ename,
      APEX_ITEM.TEXT(3,job) job,
      mgr,
      APEX_ITEM.DATE_POPUP(4,rownum,hiredate,'dd-mon-yyyy') hiredate,
      APEX_ITEM.TEXT(5,sal) sal,
      APEX_ITEM.TEXT(6,comm) comm,
      deptno
    FROM emp
    ORDER BY 1where the disabled property could be specified in the unlisted fifth argument to APEX_ITEM.TEXT. The first item to the APEX_ITEM calls is a number defining the G_FXX global variables so that 1 identifies the item later as apex_application.g_f01(9) - 9 being symbolic for a collection identifier -, ename as apex_application.g_f02(i),m and so on. The G_F99 items can be reference on submission in Pl/SQL processes through looping, something like (this example assumes all array items are populated - under some circumstances they may not be)
    for i in 1..apex_application.g_f01.count loop
      update my_table set sal = apex_application.g_f05(i) where empno = apex_application.g_f01(i);
    end loop;Edited by: riedelme on Jan 11, 2013 7:12 AM

  • Disabling Popup LOV (named LOV) cell in my tabular form

    Hello.
    I have a tabular form.
    I have a column where I insert values based on the named list of values. I make the field of "Popup LOV (named LOV)" type. However, ApEx allows the values to be either picked from the popup list or entered manually into the field's text field. I want to prevent the user from being able to manuall enter the values into the field and force the use of the popup LOV.
    I know that selecting Popup LOVs for regular items in a region make the text field "disabled" disallowing direct entering of values. However, for tabular forms' fields, this does not seem to be the case.
    Is there a style I can add to the attribute to make this happen?
    thanks
    Boris

    Hi Boris,
    I'm glad that you are learning things through this forum!
    You can't validate tabular form items using the normal Item Level validation - as this is for page item names only (that is, P1_EMPNO for example).
    You can do validation using PL/SQL in a Page Level Validation. There are a number of examples on how to do this on this forum. Here's one by Denes: [http://htmldb.oracle.com/pls/otn/f?p=31517:41]
    When you submit a tabular form page, Apex creates collections for each "fnn" set of items. "f01" items are stored in APEX_APPLICATION.G_F01, "f02" items are stored in APEX_APPLICATION.G_F02 and so on. To validate any item, you loop through one collection and check its value or the values in the same position on the other collections.
    In Denes's example, he is looping through the "f02" items (that is APEX_APPLICATION.G_F02 from 1 to APEX_APPLICATION.G_F02.COUNT) and checks the values in the "f07" (APEX_APPLICATION.G_F07) and "f08" (APEX_APPLICATION.G_F08) items. The items are stored in their collections in the same order as they appear on the page, the first item in G_F01 is on the same row as the first item in G_F07 and so on. The validation(s) to perform will depend on your requirements.
    In the example, Denes is using a "Function Returning Error Text" validation. In these, you either return a string containing the error or NULL (meaning no error has been found).
    Andy

  • Popup window for tabular form row edition

    To edit existing or new rows in a tabular form (page 1), I would like to open a popup window (page 2) with fields mirroring original tabular form fields. So, some basic data can be viewed/typed in the tabular form and the whole of the record data are viewed/typed on a separate popup form.
    On opening popup, I pass a tabular form's current line number (filled with up to three zeros on the left).
    When the user clicks on OK button on popup page, data will be put to the corresponding tabular form row. That should allow me to get /set tab form data from popup using following syntax:
    opener.document.getElementById('f04_' + line).value
    However, when I call data-initialization javascript function on onload of the popup form, popup fields to be filled are not rendered yet. At which point (and how) could I call this javascript initialization function?
    Another question. With Firebug Inspector, I see that right in front of each tab form data tag, there is a "label" tag with the name of the column as it was defined in report attributes. As long as I have a information, opener.document.getElementById, what HTML/Javascript syntax should I use to get to this label tag?
    Igor

    OK, the first part of question is OK now. Simply, I was putting a javascript code calling my initialization predure in the HTML Body Attribute section of the page, instead of simply writing there: onload="initFunction();"
    The second one stands still: once I have a tabular form's element id like f20_0003, how can I get to the symbolic name, e.g., "FIRST_NAME", that is in the label tag in the same table cell?

Maybe you are looking for

  • Is it possible to restore from a backup after initial setup on my iPad air?

    is it possible to restore from a backup after initial setup on my iPad air?

  • Use 10.8.2, but somehow with old version of Notes

    Until yesterday, I accessed Notes easily and pretty much daily. However, did a Spotlight search for a list of DVDs, and that turned my 10.8.2 Notes to a smaller virtual tablet. This is what I get: It looks like a prior version of Notes, like an older

  • Premiere Pro CC Crashing When App Switching (Mac)

    Hi, Premiere has been crashing like crazy as of late, and I've noticed it's particularly finicky when I'm switch applications (CMD+TAB) on my Mac. For example, I'll jump from Premiere into Word or Preview to look at a script, and when I jump back, I

  • Calendar alarm tone 6230i

    Hi, I'm sorry if this subject has been covered elsewhere; I did check and couldn't find a direct reference. Question is: On a 6230i (an excellent 'phone) how do you change the calendar alarm tone. The default setting is very melodic but is 1. not lou

  • Adobe Flash Player Security Error

    I'm using Linkinus, a IRC Client for a mac. Whenever someone posts a youtube link, the client has a feature where it embeds the video within the program. However, I keep getting the following error when someone posts the video link. I tried clicking