Apex_item.radiogroup

Hi,
I need help regarding the apex_item.radiogroup.
I am fetching the data from table in report region. There is one status column which has either 'A' active or 'I' inactive. corresponding to one unique record we can have multiple subrecord and
only one is active. In the report region i am trying to show the active and inactive radiobutton per row. and if select any row as active in the report other rows radiobutton should be inactive so once i hit the update button i don't have to think which all other went to inactive.
my query looks like
select apex_item.hidden(10, primary_key) || record,
apex_item.radiogroup(3, h.status,'A', 'Active')||apex_item.radiogroup(3, h.status, 'I', 'Inactive'),
case when rec_flag = 'N' then 'NO' else 'YES' end "flag"
from table
If there is 4 rows selected based on this query only one row radio button is highlighted.
I am new to apex and need your help.

Hi,
For the select list issue - the fourth parameter of the APEX_ITEM.SELECT_LIST function allows for attributes, so you can do:
apex_item.select_list(3, h.status, 'Active;A,Inactive;I','onchange="javascript:myfunction(this);"') "Status"Then you create a function called myfunction(ss) that is triggered by the value of the select list changing - onclick is not used here. As we are passing "this" into the function, we can loop through all select lists, except for the current one and change their values where needed:
function myfunction(ss)
if (ss.value == 'A')
  var sLists = document.getElementsByName('f03');
  var k;
  if (sLists)
   for (k = 0; k < sLists.length; k++)
    if (sLists[k] != ss)
     sLists[k].value = 'I';
}So, as long as we change the current list to A, then we change all the others to I.
For the radio buttons, if you need to use two buttons per row, you should have a radiogroup that is for each row separately. Your use of "pk_table" for the Inactive button should also be used for the Active button. When the user clicks on either Active or Inactive, you would then have to loop through all the radiogroups and set the appropriate value.
To get to all the buttons, you have to do something like:
var x = document.getElementsByTagName("INPUT");
var k;
if (x)
for (k = 0; k < x.length; k++)
  if (k.type == 'RADIO')
   do something herre
}Andy

Similar Messages

  • Apex_item.radiogroup using an LOV in a manual tabular form

    I'm on APEX 4.0.0.00.46 and I'm sure there must be an obvious solution that I'm missing here, but I'm having a problem setting up an apex_item.radiogroup on a manual tabular form. This is the basic query that I'm using:
    select apex_item.radiogroup(37,my_field) as my_field
    from my_table
    When I use the above query as my Region Source, it compiles fine. However, it seems as though the query won't pull in the value that currently exists in the table unless I set the Column Attribute called 'Display As' for the field to 'Standard Report Column'. When I do this, it seems to remove the capability to incorporate a LOV into the radio group. I'm attempting to incorporate a query like this into the radiogroup:
    select 'YES' d, 'Y' r
    from dual
    UNION ALL
    select 'NO' d, 'N' r
    from dual
    So, to recap, I can set up a Radio Group (query based LOV), but if I do, the query of the table will not pull in the current value from the table. If I change the 'Display As' Column Attribute to 'Standard Report Column', I can no longer incorporate the LOV. Please help if you have any ideas.

    I am not 100% sure what you are trying to do but I think I am close. Try using
    SELECT apex_item.radio_group_from_query
              (37,
               my_field,
               'SELECT ''YES'' d, ''Y'' r FROM dual
                UNION ALL
                SELECT  ''NO'' d, ''N'' r FROM dual'
              ) AS my_field
      FROM my_tableDenes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Is this possible using APEX_ITEM.RADIOGROUP

    Hi,
    Just wondering if this can be achieved using APEX_ITEM.RADIOGROUP, i.e using radio buttons that gives the user three options:
    <br><br>
    Clothing/Size     S           M           L
    ===========================
    T-Shirt-Red        O           O           O
    <br>
    etcCan someone please provide me if possible an example of achieving this.
    <br><br>
    Thanks.<br>
    Tony.

    1. Create a text item for the main heading (Clothing / Size etc). You may want to embed some HTML to change colours, underline etc.
    2. Create a radiogroup for each item as follows;
    Label = T-Shirt-Red , etc
    ELEMENT
    Form Element Options Attributes => style="padding-left:100px" (assuming spacing of 100 px)
    LIST OF VALUES
    Columns => 3
    Display Null => No
    List of values definition => STATIC2:;S,;M,;L (assuming you want to pass back S, M or L)
    You may need to muck around with the heading and spacing but this should do the trick

  • Apex_Item.radiogroup in a Tabular Form (Update Only, no Insert)

    Hi,
    I'd like to use a radiogroup on a tabular Form. The Form will modify only existing records.
    I've seen some more elaborate examples for Tab Forms that allow Insert.
    But I am trying to use the APEX_Item.radiogroup function for an example like:
    "Select Chairperson_Name, Approve_Status FROM Chairperson_Approval"
    The Approve_Status column can be 'A' for Accept, or 'R' for Reject, and is the only updateable column in the Tabular Form.
    So I should be able to create a Tabular Form (for Update Only) on the table Chairperson_Approval with the wizard.
    Then I want to be able to go into the Source and change the SELECT statement to something like:
    "Select Chairperson_Name, APEX_Item.radiogroup(1,approve_status,.....) FROM Chairperson_Approval"
    and then let the automatic APEX processing (generated by the wizard) do the rest. Right? Can
    anybody give me an exact example for APEX_Item.radiogroup. My documentation is not clear enough on this function.
    Thank you very much, in advance.
    Carol

    Hi Andy,
    Why do you get & set TEST attribute of the radiobutton?
    What is a TEST attribute?
    getAttribute("TEST") == 'Y')
    setAttribute("TEST","Y");So I was thinking I should incorporate this toggle me function with my radiobutton and have the following inside the toggleMe function.
    $x(''P24_SECONDARY_TASK'').value=' || ad.task_id || '"')
    {code}
    Am I right?
    Cheers
    -Joel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Storing the value of apex_item.radiogroup!

    Hi All,
    I am using an APEX_ITEM.RADIOGROUP api to display the rating from 1 to 5.
    In order to store the value of radio button selected, I am using a textbox item.
    e.g.
    P2_ques_1 = rating value from 1-5( coming from radio group)
    P2_ques_2 = rating value from 1-5
    Now I want to save the value of P2_ques_1... into the database through a loop.
    for i in 1..4 loop
    l_rating := :P2_QUES_||i;
    INSERT INTO org_feedback(feedback_id,question_id,rating,org_contact_id)
    VALUES(ORGFEEDBACKSQ.NEXTVAL,i,l_rating,:P2_CONTACT_ID);
    end loop;
    The above loop is storing the value of "i" instead of values of : P2_QUES_1,: P2_QUES_2....
    Is there any way or suggestion I can achieve this?
    Thanks,
    - Parveen Sehrawat

    I can't catch you.
    Let me explain what i want to do...
    I have radio button in forms as well as in reports.
    In FORMS i created a RADIO GROUP using STATIC LOV
    Like,
    STATIC:GOOD;3,NOTBAD;2,BAD;1
    So at runtime i can easily get this radio group values.
    In REPORTS i created RADIO GROUP using SELECT QUERY
    Like,
    with t as(
    select 'problem_sol' as others, 1 as num from cand_performance
    union
    select 'communication' as others, 2 as num from cand_performance
    union
    select 'attitude' as others, 3 as num from cand_performance)
    select others,
    apex_item.radiogroup(num) as good,
    apex_item.radiogroup(num) as notbad,
    apex_item.radiogroup(num) as bad
    from t
    Now i want to define values for those radio button like what i define in STATIC LOV radio buttons and i want to know how to get the selected value when user submit the page... Again i'm telling i have radio button in REPORTS.
    Edited by: Nagappan_19 on May 20, 2013 4:48 AM

  • Store APEX_ITEM.RADIOGROUP value into the database!

    Hi All,
    I am using the following query to display questions from a table. Does anyone know how we can insert the value of APEX_ITEM.RADIOGROUP(if it is a radiogroup with static LOV ie. Static2: very poor;1,good;2,very good;3,excellent;4) into the database.
    select question_id,
    question_desc,
    APEX_ITEM.RADIOGROUP(1) as rating
    from table_name
    Thanks,
    Parveen Sehrawat

    Also tried it this way:
    function reviewerID() {
    var reviewer =html_RadioValue('f01');
    if (reviewer == 1){
    html_GetElement('P1_CUSTOMER_ID').value = 1;
    if (reviewer == 2){
    html_GetElement('P1_CUSTOMER_ID').value = 2;
    if (reviewer == 3){
    html_GetElement('P1_CUSTOMER_ID').value = 3;
    if (reviewer == 4){
    html_GetElement('P1_CUSTOMER_ID').value = 4;
    if (reviewer == 5){
    html_GetElement('P1_CUSTOMER_ID').value = 5;
    its clumbsy but i thought it would do the job... am still gettin the same error trying it this way though....
    l_This has no properties
    l_Selects = l_This.getElementsByTagName('SELECT');
    Help from anyone much appreciated!!

  • Help converting 3 apex_item.checkbox into one apex_item.radiogroup?

    Hi Everyone,
    I am trying to simplify a tabular form based on a collection.  Currently, I have three checkboxes with javascript behind the scenes so that when one checkbox is selected, the others are rendered null and a flag is set.  I would like to eliminate all that processing and just use a radiogroup.   I am a little uncertain how to proceed.
    My three checkboxes are c021 finsattached, c022 finsNotAttached, and c023 FinsUnknown.   Dependent on the checkbox selected, the value will be stored in a 4th field called c020 HMS_FLAG.
    If c021 is checked, then c020 = Y
    if co22 is checked, then c020 = N
    if c023 is checked then c020 = U
    The current selection is:
    select....
    decode(c050,'Y',apex_item.checkbox(21,'Y','id="f21_'||seq_id||'" style="background-color:#FBEC5D; " onClick="alterYes('||seq_id||');" onKeyPress="alterYes('||seq_id||');"',c021),'N','N/A') FinsAttached,
    decode(c050,'Y',apex_item.checkbox(22,'N','id="f22_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterNo('||seq_id||');" onKeyPress="alterNo('||seq_id||');"',c022),'N','N/A') FinsNotAttached,
    decode(c050,'Y',apex_item.checkbox(23,'U','id="f23_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterUnk('||seq_id||');" onKeyPress="alterUnk('||seq_id||');"',c023),'N','N/A') FinsUnknown,
    So far, to convert it to a radiogroup I have:
    decode(c050,'Y',apex_item.radiogroup(20,'Y','Fins Attached','N','Fins NOT Attached','U','Unknown','id="f20_'||seq_id||'" style="background-color:#FBEC5D; );"',c020),'N','N/A') HMS_FLAG
    but I am really uncertain of this.
    thanks for your help!
    Karen

    Only checked checkboxes are submitted, so there are only <tt>wwv_flow.g_f09</tt> entries for checked rows: the subscripts do not correspond to rows in other <tt>wwv_flow.g_fnn</tt> associative arrays. Use checkbox values that allow the source row to be determined in your process, such as the PK for a corresponding database row. The existence of a entry with this value in the array indicates a checked checkbox.

  • Apex_item.radiogroup in updateable Report

    How can i build up an updateable Report with a radiogroup created by apex_item.radiogroup?
    i know the syntax like
    APEX_ITEM.RADIOGROUP (1,deptno,'20',dname)
    but i wanna have 5 different options in 1 radiogroup.
    How can i manage this?
    thx so far
    P.S.: I know that you can define a column to be a radiogroup but in my case it must defined with the apex_item package.

    Hi,
    Have a look at: Re: User Radiogroup in Tabular Form - there are several methods that you could use - the details for each are shown in the app pages themselves rather than the thread
    Andy

  • Help in using APEX_ITEM.RADIOGROUP!

    Hi frenz,
    I have 4 rows in the table employees,and the rows changes dynamically as the user keeps adding the users.I also have a Grade table where Grades named A B and C are stored.My requirement is,In the UI when i display the employees,each row of employee should display the grades acoordingly in the same row
    say
    output on the screen should be
    Jeffry radiobutton1 A radiobutton2 B radiobutton3 C
    Jessica radiobutton1 A radiobutton2 B radiobutton3 C
    Eliza radiobutton1 A radiobutton2 B radiobutton3 C
    Joe radiobutton1 A radiobutton2 B radiobutton3 C
    can anyone help me hw to do this?
    I'm using
    APEX version - 4.0.0.00.46
    DB version and edition - 10.2.0.1.0
    Web server architecture - APEX listener
    Browser - IE
    Theme -20
    Thanks in advance

    Already my page(pl/sql) has a region souce
    DECLARE
    cursor itemCur is
    select CATEGORY_ID,
    PARAMETER_ID,
    PARAMETER_VALUE,
    MAX_MARK,
    IS_ACTIVE,
    ID,
    TEST_NUMBER from MES_CATEGORY_PARAMETERS;
    BEGIN
    htp.p('<table>');
    htp.p('<tr>');
    for aRow in itemCur
    LOOP
    htp.p('<tr>');
    htp.p('<td>'||APEX_ITEM.hidden(1,aRow.PARAMETER_ID)||aRow.PARAMETER_VALUE||'</td>');
    htp.p('</tr>');
    END LOOP;
    htp.p('</tr></table>');
    END;This displayes me 12 parameters on the page
    My page luks like dis,,
    Parmeters
    The names of all classes should start with upper case letters
    The names of all members of classes should start with lower case letters
    The names of all local variables and parameters should start with lower case letters
    All the names should be in camel case format
    The names of all constants should be in upper case
    All source code files (.java, .xml etc) should contain proper comments/javadocs
    The base exception class has been defined
    There is an abstraction in exceptions
    There is a funneling of exceptions across the layers
    The main flow has been developed as per the specifiations
    The exception and alternate flows have been developed as per the specifiations
    The business rules and data validations have been devleloped as per the specifiations
    Check the variable names
    Now i have grades A,B,C in my grades table.and I want to display the grades for each of the parameter row so that user can rate the parameter by selecting grades.radio button along with grades should get displayed beside the parameter.Can I achieve this using APEX_ITEM.RADIOGROUP?How?
    Thanks

  • Multiple Radiogroup ?

    Hi everbody,
    I need to make a survey page and there will be 30 questions with 5 choice every one of them. Like:
    Faculty is fully qualified 1 2 3 4 5
    1:certainly agree
    2:agree
    3:almost
    4:do not agree
    5: certainly do not agree
    I create a table like:
    question_id | question |
    How can i create these 30 questions from sql with radiogroup apex item?
    And then i need to insert the return values.
    Thanks
    Onur

    Actually i have LOV but i do not know how to display all these questions like a radiogroup survey test ?
    What should be the syntax,this is the default radiogroup item
    APEX_ITEM.RADIOGROUP(
    p_idx IN NUMBER,
    p_value IN VARCHAR2 DEFAULT,
    p_selected_value IN VARCHAR2 DEFAULT,
    p_display IN VARCHAR2 DEFAULT,
    p_attributes IN VARCHAR2 DEFAULT,
    p_onblur IN VARCHAR2 DEFAULT,
    p_onchange IN VARCHAR2 DEFAULT,
    p_onfocus IN VARCHAR2 DEFAULT,)
    RETURN VARCHAR2;
    I think i should do something in a loop like:
    FOR I in 1.. to the end row num of table questions
    select APEX_ITEM.RADIOGROUP(x,x,x,x,x,x )
    end loop;
    But i do not know the syntax actually.

  • Radiogroups submitted to a report

    Hi,
    I'm new to apex, using Apex 4.1.1. I've created a report which contains two columns of dates and a radiogroup for each as follows:
    select apex_item.radiogroup(1,report1) "Radio 1"
    ,report1
    ,apex_item.radiogroup(2,report2) "Radio 2"
    ,report2
    from (select distinct report_date report1 from cb_report
    order by report_date) sub1,
    (select distinct report_date report2 from cb_report
    order by report_date) sub2
    where sub1.report1 = sub2.report2 ;
    This pages is submitted by a submit button that redirects to page 544. On page 544, I need to use the contents of the radiogroups in a query, such as:
    select column1 from cb_report where report_date = <radiogroup1> or report_date = <radiogroup2>;
    Thus far I've not been able to utilize the values assigned from the radiogroups in my query on page 544. Among other things, I've tried using an on-load process for page 544 to assign the values to items using:
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
    IF APEX_APPLICATION.G_F01(i) IS NOT NULL THEN
    :P544_RPT1_DATE := APEX_APPLICATION.G_F01(i);
    END IF ;
    END LOOP;
    FOR i in 1..APEX_APPLICATION.G_F02.count
    LOOP
    IF APEX_APPLICATION.G_F02(i) IS NOT NULL THEN
    :P544_RPT2_DATE := APEX_APPLICATION.G_F02(i);
    END IF ;
    END LOOP;
    END;
    Could someone please provide an example of how to access the values of the radiogroups in a SQL report that would run on the destination page, 544?
    Thanks for your assistance in advance.
    Robyn

    user2287264 wrote:
    Thus far I've not been able to utilize the values assigned from the radiogroups in my query on page 544. Among other things, I've tried using an on-load process for page 544 to assign the values to items using:
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
    IF APEX_APPLICATION.G_F01(i) IS NOT NULL THEN
    :P544_RPT1_DATE := APEX_APPLICATION.G_F01(i);
    END IF ;
    END LOOP;
    FOR i in 1..APEX_APPLICATION.G_F02.count
    LOOP
    IF APEX_APPLICATION.G_F02(i) IS NOT NULL THEN
    :P544_RPT2_DATE := APEX_APPLICATION.G_F02(i);
    END IF ;
    END LOOP;
    END;
    Could someone please provide an example of how to access the values of the radiogroups in a SQL report that would run on the destination page, 544?
    Thanks for your assistance in advance.
    RobynJust change your above process to on submit and to the actual page (I mean the page you have radiogroups) not 544

  • How to create yes or no radiogroup dynamically for a set of questions

    hi,
    I am new to APEX.Depending upon my project requirement I need to create a set of questions with yes or no as radiogroup buttons,appended with a textarea for each question.For ex:
    1.Name o Y o N [ "text area"]
    The above line specifies the model I need.
    Here text area is used for writing comments.
    Now the question is how can I create them dynamically using apex_item.
    Its very urgent.Kindly reply me soon.
    Thanks in advance.

    Thanks for ur quick reply.
    But what actually I need is,I need to create the radiobuttons also dynamically.
    I have created them by the following syntax,
    select ename,apex_item.radiogroup(eno,'y' ) yes,apex_item.radiogroup(eno,'N')
    from emp;
    but the problem with this is ,
    when I inserted yes for the first one it is taking and if i am giving the second one also as YES then it is not accepting ..means it is checking the second item by clearing the first one.
    What I need is when I check the second one the first one should not get cleared.
    Thanks in advance.

  • Radiogroup check box

    Hey, I'm trying to create a radiogroup check box in APEX 4.0, so that I will be able to delete columns just by selecting the box. I having troubles showing the boxes.. I keep getting this <input type="radio" name="f12" value="M0025" />
    The code that I am using is
    SELECT APEX_ITEM.radiogroup (12, et.mrc_number) "SELECT", et.* from (select * from ebcadmin.assembly_kits@gwnebc et
    where et.item = :p41_text) et
    Any help would be nice.
    Thanks
    Edited by: Swens on Sep 7, 2010 7:10 AM

    Hi,
    Edit the Radiogroup Column from Report Attributes - Edit Column and change the Display as to Standard Report Column. This should fix your problem.
    It will fix your display problem. Now I am not clear of what you mean Radiogroup checkbox, perhaps you mean Radio button.
    How do you plan to trigger the event? Using onchange in Element Attributes? If so, you need to deal with two states, select and unselect.
    Regards,
    Edited by: Prabodh on Sep 7, 2010 7:58 PM

  • Creating Multi-Column API radiogroup based on LOV

    Hi everyone!
    I was wondering whether or not it is possible to create a 3 column radiogroup based on the APEX_ITEM.RADIOGROUP API in APEX 3.0?
    For instance, my radiogroup is based on a user's interest level and is supposed to look like: oTest oProduction oBoth
    The values returned by whichever button is selected is based on a table value.
    I'm having trouble making this multi column instead of 1 column with multiple rows. I need to set these up with an LOV similar to STATIC2:Test;TEST,Production;PROD,Both;BOTH
    I also cannot create this radio group as a page item because they must display based on a query issued by a report region on this page.
    Any ideas // suggestions?
    Thanks,
    Eric
    Edited by: user11685190 on Oct 12, 2009 9:50 AM

    Andy,
    I'm actually going to have a radiogroup within the report column itself. The suggestion you gave is actually why I'm mixed up as to how to do this....I've always used Apex page items to create my radiogroups, and then you can simply add the LOV and change the number of columns and it's all set up for you.
    This radio group is actually going to be within a row queried by the report. The report is essentially a 'checkbox selection screen' that also allows the user to select which interest level they hold for each selection (interest level is represented by this 3-option radio group). Therefore what you're going to see on the screen is ( [] represent checkboxes, o represent radio buttons):
    Banner INB
    []Planned Outage Notification oTest oProduction oBoth
    []Unplanned Outage Notification oTest oProduction oBoth
    Banner Self Service
    []Planned Outage Notification oTest oProduction oBoth
    []Unplanned Outage Notification oTest oProduction oBoth
    My question was mainly geared towards whether or not you can add a static LOV to an API radiogroup (apex_item.radiogroup(1,interest_lvl,blah)), so that it could look like:
    apex_item.radiogroup(1,1:2:3, NULL, 'Test':'Production':'Both') as result.
    The only documentation I can find deals with issuing a single return value to these API radiogroups. I actually need a three column API radiogroup that hold's three different values based on which group member the user selects. If you can only issue one return value per group, I would have to define three under the same global variable except changing the return value and displayed text for each...such as:
    apex_item.radiogroup(1,1,NULL,'Test') || apex_item.radiogroup(1,2,NULL,'Production') || apex_item.radiogroup(1,3,NULL,'Both) which will hopefully display as: oTest oProduction oBoth
    I'm going to have to concatenate some &nbsps in between so my radio group buttons and labels are actually seperated, but this may be the right idea.
    I'm going to toy around with this a little more today, I'll post my results.
    Thanks for your quick responses!
    Eric

  • Radiogroup Issue

    Hello i have an issue using radiogroups in APEX
    Our Setup: APEX 4.0 using EPG
    I'm using an interactive report that present distint records to my client.
    On each record they need the option "Yes" or "No" which will flag that record accordingtly.
    I'm using radiobuttons because it can only be "yes" or "no" option selected.
    In my query i tried using APEX_ITEM.RADIOGROUP(rownum,.........) to generate distinct id's for my records.
    It works but after 99 radiobuttons it resets.
    Example F99 then resets to F00, F02, F03 and so on.
    It should be F100, F102 and so on, but thats the limit of APEX.RADIOGROUP i believe.
    So i decided to create the radiobuttons using HTML and rownum.
    It works perfectly fine.
    Like so:
    select
    *'<fieldset class="radio_group">'||*
    *'<input type="radio" name="'||rownum||'" value="'||d_id" onclick="spCheckChange(this);">Yes'||*
    *'<input type="radio" name="'||rownum||'" value="'||d_id" onclick="spCheckChange(this);">No'||*
    *'</fieldset>' radiobox, mat_view.**
    from table_id
    I'm using an on demand process that keeps track of which radiogroup buttons are checked. This works fine.
    However, i have a submit button on the page that does an insert into a table with the items selected.
    I get an error "The HTTP client sent a request that this server could not understand." in Firefox
    It seems to be a bug.
    I tried this and it doesnt work either when hitting submit:
    SELECT
    *'<input type="radio" name="1" value="hello">Yes'*
    radiobox
    from dual
    I tried it on APEX 4.1 and it does the same thing.
    Try it yourself.
    Create a interactive report. With the above query.
    Create a submit button. You don't need to input a process to insert anything.
    When you run the page, select the radio group . Then hit "submit"
    You will get the error.
    If you run the page without hitting the radiogroup, and it submit, you don't get the error.
    It seems like APEX doesnt like '<input type="radio" name="1" value="hello">Yes' in the query
    Any ideas?
    Edited by: INAMIK on Jan 21, 2013 9:43 AM
    Edited by: INAMIK on Jan 21, 2013 10:15 AM

    Hi,
    Input tag name attribute is parameter name for procedure when you submit page.
    There is no parameter name like 1. This is not bug
    And as I remember you can have only 50 arrays, meaning f01 - f50.
    That is limit of tabular form columns.
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

Maybe you are looking for