Af:inputdate population issue

HI ,
Using jdev11.6 .
on page loads af:inputdate field will populate some date , but issue is, as soon as user click on the input date component , the default calender date selection always going to the current date ,not populated date.
Please let us know is there ways ,calender component shows the populated date , not default current date .?
thanks

Hi,
I have done using the below format. I have set the initial date value in the Constructor.
     this.setDat(new SimpleDateFormat("dd/MM/yyyy").parse("22/12/2013"));
On the UI, i have the value of the date:
     <af:inputDate label="Date" id="id1" value="#{viewScope.flNum.dat}"/>
I can see the same date set, and also when i get the popup, after clicking on the icon, i can see the same date highlighted.
My JDEV: 11.1.1.6.0
Thanks,
Pandu

Similar Messages

  • Dynamic population issue with repeated sub form

    I have a subform that populates a dropdown from another subform on a prior page. In the Enter event on the subform I have the following script:
    Drop Down 1
    this.clearItems();
    this.rawValue = null;
    this.fontColor = "0,0,0";
    var nCount = Subform3.Subform2.Subform1.instanceManager.count;
    console.println("nCount: " + nCount);
    for (var i=0; i<=nCount; i++)
    var vFld = xfa.resolveNode("Subform3.Subform2.Subform1[" + i + "]");
    var vItem = vFld.RiskNo.rawValue;
    this.addItem(vItem.toString());
    A second drop down is also populated in the PostOpen event on the subform with the following script:
    Drop Down 2
    this.clearItems();
    this.rawValue = null;
    this.fontColor = "0,0,0";
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for ( var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
      var controlsf = sf1.item(i).resolveNodes ("Controls.Control[*]");
      for ( var j = 0; j < controlsf.length; j++)
       var wInput = controlsf.item(j).ContNo.rawValue;
       this.addItem(wInput.toString());
    I then populate a text field with values based on drop down selections with the following Exit Event scripts:
    Exit Event Drop Down 1 to populate text field 1
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for (var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
       var wInput = sf1.item(i).RiskInput.rawValue;
       CTPData.RiskRow.RiskTxt.rawValue =(wInput);
       CTPData.ControlsRow.ControlTxt.rawValue = "";
    Exit Event Drop Down 2 to populate text field 2
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for ( var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
      var controlsf = sf1.item(i).resolveNodes ("Controls.Control[*]");
      for ( var j = 0; j < controlsf.length; j++)
    if (CTPData.ControlsRow.Control.rawValue == controlsf.item(j).ContNo.rawValue)
       var wInput = controlsf.item(j).ControlInput.rawValue;
       CTPData.ControlsRow.ControlTxt.rawValue =(wInput);
    These scripts work absolutely perfect for the first instance of the subform they are on.  On added instances of the subform however, the drop downs work but the populate text fields from the selected values do not.
    I am sure I am missing something simple but I can’t find it.
    I would greatly appreciate any pointers I could get.
    Thanks,
    Eagle

    I actually tried that with the same results.  It seems to me that the issue is that
    var wInput = controlsf.item(j).ControlInput.rawValue;
    CTPData.ControlsRow.ControlTxt.rawValue =(wInput);
    on the repeated subform has a different CTPData.ControlsRow.ControlTxt.  something like CTPData.ControlsRow.ControlTxt(0). but I don't understand enpough about repeated subform values to figure it out.
    Thanks,
    Eagle

  • Data Guard data population issue

    Hi ...
    I have data guard config with a scenario that new user schema is created (couple tablespaces and datafiles). The tablespace is setup in NOLOGGING mode. After checking the physical standby server, the datafiles are created.
    My questions:
    1. How to re-sync data from primary to physical standby assuming schema has created and no data has populated?
    2. How to drop the data in physical standby server on the same schema with primary server re. above issue, then start the objective on 1.?
    My environments are in AIX 5L with 9.2.0.4 in Unicode character set.
    Thanks in advance for any information.
    Cheers.
    BAM

    Hi Justin.
    Thanks for your reply.
    I have restored the tablespaces to logging mode again, and redo schema creation and re-import the data to the schema. When I did the db switch over, the primary site successfully changed to standby -- the opposite works well also.
    However, after querying these:
    SELECT NAME, UNRECOVERABLE_CHANGE# FROM V$DATAFILE;
    SELECT UNRECOVERABLE_CHANGE#,
    TO_CHAR(UNRECOVERABLE_TIME, 'mm-dd-yyyy hh:mi:ss')
    FROM V$DATAFILE;
    on my primary site, there was 5591564 bytes of unrecoverable_change# on one of the datafile on 05-06-2004 02:44:48am. Then on 05-05-2004 10:51:34 the unrecoverable_change# was gone (becomes 0) for the same datafile.
    In the doc. the unrecoverable_change# will be shown if somehow datablock error like following:
    ORA-01578: ORACLE data block corrupted (file # 1, block # 2521)
    ORA-01110: data file 1: '/oracle/dbs/stdby/tbs_1.dbf'
    ORA-26040: Data block was loaded using the NOLOGGING option
    happened. I've checked my logs in primary/standby alert logs and the data guard switch-over logs -- no similar error as above.
    Any idea what was happened on above scenario?
    Thanks.
    BAM

  • InputDate Component issue in JDeveloper11g Preview3

    Hi All,
    We have developed an Application in JDeveloper11g Preview1 and Migrated this Application to JDeveloper11g Preview3 . During Migration we have removed the .adf folder from the application.
    The InputDate Component is not working Properly. The Problem is when ever we are changing the year of the Date component by clicking on the arrow it is not getting reflected.
    If we are changing the year manually then it is working properly.
    If we are changing the Months in the Date Component it is working properly.
    We are facing a problem with the valueChangeListener of the InputSpin Box it is not working properly. if we are deleting the value from the spin box and changing it manually then the valueChangeListener is working but if we are clicking on the arrow of the spin box then the valueChangeListener is not getting Called. May be this is the same problem of the spin box I am facing in the Date Component.
    Please help me out in solving this problem
    Thanking You,
    Madhavi.

    Hi Frank,
    Thanks for your Suggestion.
    I have done the same thing as you have suggested, but I am facing the Same Problem with the SpinBox component.
    If I am manually changing the value of the SpinBox then the valueChangeListener is getting called.
    If I am changing it with the help of the arrow buttons besides the SpinBox then the valueChangeListener is not getting called.
    This is the Code that I have written for SpinBox in JSPX page
    <af:inputNumberSpinbox label="Label 1"
    binding="#{backing_untitled1.inputNumberSpinbox1}"
    id="inputNumberSpinbox1"
    valueChangeListener="#{backing_untitled1.fireSpinBoxValueChange}"
    minimum="0" autoSubmit="true"/>
    This is the Code that I have written in the Backing Bean related to the SpinBox
    public void setInputNumberSpinbox1(RichInputNumberSpinbox inputNumberSpinbox1) {
    this.inputNumberSpinbox1 = inputNumberSpinbox1;
    System.out.println(inputNumberSpinbox1.getValue());
    public RichInputNumberSpinbox getInputNumberSpinbox1() {
    return inputNumberSpinbox1;
    public void fireSpinBoxValueChange(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    System.out.println("in Value change event for SpinBox");
    I think the same SpinBox is being used for the inputDate Component that is why we are facing the same problem in selecting the Year of the DateComponent.
    Thanking You,
    Madhavi.

  • Cadac template registration buy page pre population issue

    HI all, has anyone else seen this bug/ know how to sort it?
    Im running windows 7 / IE 10 and using the Cadac template - http://www.hovepark.brighton-hove.sch.uk/shop
    If you fill in the Registration Buy page incorrectly and then hit back on the Receipt Buy page (to go and fill the Registration Buy page corectly) the shipping address 'country' and 'postcode' are pre populated with the text you previously entered, however you cant write any new text in these fields.
    Does anyone know of a solution to this?
    Thanks in advance
    Karl

    Hi Karl, other then Credit Card detail fails you should not hit the other page for errors, if you are then there will be an error in your validation javascript you should look to fix up.
    Your going back to a https page, try it on other sites, you notice they clear. Security reasons. If you could just history back on peoples payment forms on a computer you can grab all their details with ease.

  • Issue in binding table in interactive adobe

    Hi,
    I need to update data in a database table through interactive adobe form.
    For this I have created a table in the layout using table wizard.
    I have created just one node as I need to update the fields in the node to the database table.
    The problem that I am facing is when I bind the fields to the rows of the table and enter the values in it,it is taking the same values for both the rows e.g if I change the value in description field for one row it automatically changes it for the second row also with the same value.
    Please suggest if I am doing something wrong.
    Thanks in advance.

    Hi,
    I had the same issue. This is what I tried -
    I removed the binding of the whole table ie instead of $.record.Table_name , there was NONE.
    I removed the binding the individual rows ie instead of DATA[*], there was NONE.
    I only binded each of the fields with the corresponding context which will look like this -> $.record.Table_name.DATA[*].Fieldname
    This worked for me and the same value population issue got solved.
    Hope this helps.
    Regards, Liz

  • Blackberry 8130 Rogers - some mail bounces back

    If someone sends an e-mail to me at my main address (shaw.ca) which is also forwarded to my Blackberry they receive a message back from the Blackberry account saying that the message could not be received.
    I did however in fact get the message on my Shaw acvcount which also shows up on my blackberry.
    My blackberry e-mail address appears to be correct in my profile.
    This seems to happen only when the e-mail is one that is sent to a group that I am part of with other addresses in the To: __________________
    Any ideas on solving this problem?

    eetonaee,
    It could be an Auto-Population issue. If the user is using a program like Outlook, have them create a new email. Have them start typing your name/address and press the down arrow key to highlight and delete. Once deleted, have the user entery in your full email address again.
    Keep us updated.
    Office2Mobile
    Poor Service and the Worst Support provided by VarDynamics http://vardynamics.com/

  • Issue with Bex report - key Figures not populating correctly.

    Hi Experts,
    I am facing an issue with a Bex report. There are three key figures of data type DATE having "Dec - Counter or amount field with comma and sign" datatype. After executing the query, in the report, for some sales documents the key figure fields are coming as 'X' and rest others are coming correctly in the date format as mm\dd\yyyy.
    When i check in the cube, these key figures shows values in decimal format and not in date format. The conversion is happening during execution.
    Pleas show me some light on how to identify the cause of getting 'X' for some Sales documents in the report eventhough some are coming correctly.
    Thanks,
    Anamika
    Edited by: Anamika Soni on Mar 12, 2010 10:48 AM

    Hi,
    The infobject has been defined with datatype "DATE" only. It has also been mapped from datasource to infocube correctly as these key figures are populating correctly for some of the sales documents in the report. It is not like that for all the sales documents the key figures are not converting properly.
    Some Sales documents are not converting into the date fields but for some conversion happens properly in the BEx report. This is the issue.
    Please guide accordingly.
    Many thanks,
    Anamika

  • Exchange 2013 Issue: Outlook 2010 auto populating the From Tab when forwarding email

    Exchange 2013 Issue: Outlook 2010 auto populating the From Tab when forwarding email        
    I am running Exchange 2013 and I have an end user who connects to it via Outlook 2010. All was going well till he went to forward an email and he noticed that the From button appeared and auto populated the sender's email address.
    I have clicked the Empty Auto Complete List in Outlook's Send messages... still displayed the From tab when forwarding.
    I recreated the profile in outlook... same thing.
    I created the profile with outlook 2013... same thing.
    There is only one user profile setup in Outlook.
    (I know the from tab usually appears when you have multiple profiles setup in Outlook and/or when you configure the "From" tab.)
    I opened the end user's email in Exch 2013's OWA... what was different here was when I clicked on the email and it opened, it did NOT have the Reply or Forward option... and it displayed as a "Draft" email.
    Does anyone have any ideas?

    So are you saying that the from button is filling the option with the original senders address (eg the person who sent the message to your user), or that it's filling in the your users address (in which case I don't understand what the issue is, since
    it IS going from your user)?

  • Issue In internal table data population in the o/p

    Dear Guru , I have encountered an issue for which i am not able to findout the logic  . I have an internal table through which i am populating the below data for detail report format :->
    Plant     Material Number          Storage Loc     Movement Type          Avg Days
    019     0820B0073          MOD3          101               space
    019     0820B0073          MOD3          101               space
    019     0820B0073          MOD3          101               space
    019     0820B0073          MOD3          101               space
    019     0820B0073          MOD3          101               space
    020     0820B0074          MOD4          101               space
    020     0820B0074          MOD4          101               2
    020     0820B0074          MOD4          101               3
    The requirment is like this the summary report should show o/p like below addition of all the rows with respect to plant , material, storage location and movement type :-
    Plant     Material Number          Storage Loc     Movement Type          Avg Days
    019     0820B0073          MOD3          101               space
    020     0820B0074          MOD4          101               5
    but when i am adding it with respect to plant, material, storage location and movement type the o/p i am getting is like below
    Plant     Material Number          Storage Loc     Movement Type          Avg Days
    019     0820B0073          MOD3          101               0
    020     0820B0074          MOD4          101               5
    becasue addition of 5 spaces ( Avg Days )of plant 019 is coming as ZERO --> 0
    so Guru what logic i should use to get the proper o/p,..I have Used Following logic to perform summation with respect to plant, material , storage loc and movement type.
    CLEAR: wa_mkpf_mseg, w_werks, w_matnr, w_lgort, w_bwart.
    LOOP AT t_mkpf_mseg INTO wa_mkpf_mseg.   
    IF wa_mkpf_mseg-werks EQ w_werks AND wa_mkpf_mseg-matnr EQ w_matnr AND wa_mkpf_mseg-lgort EQ w_lgort AND wa_mkpf_mseg-bwart EQ w_bwart.
          CLEAR: wa_p_coi.
          READ TABLE t_p_coi INTO wa_p_coi WITH KEY werks = wa_mkpf_mseg-werks matnr = wa_mkpf_mseg-matnr lgort = wa_mkpf_mseg-lgort bwart = wa_mkpf_mseg-bwart.
         IF sy-subrc = 0.
         wa_p_coi-Avg Days    = wa_p_coi-Avg Days   + wa_mkpf_mseg-Avg Days.
         MODIFY t_p_coi FROM wa_p_coi TRANSPORTING Avg Days   .
         CLEAR: wa_p_coi, wa_p_coi.
         endif.
    ELSE.
          wa_p_coi-werks                     = wa_mkpf_mseg-werks.
          wa_p_coi-matnr                     = wa_mkpf_mseg-matnr.
          wa_p_coi-bwart                   = wa_mkpf_mseg-bwart.
          wa_p_coi-lgort                     = wa_mkpf_mseg-lgort.
          wa_p_coi-Avg Days                  = wa_mkpf_mseg-Avg Days   .
         APPEND wa_p_coi TO t_p_coi.
               CLEAR: wa_p_coi.
    ENDIF.
        w_werks = wa_mkpf_mseg-werks.
        w_matnr = wa_mkpf_mseg-matnr.
        w_lgort = wa_mkpf_mseg-lgort.
        w_bwart = wa_mkpf_mseg-bwart.
       CLEAR: wa_mkpf_mseg.
      ENDLOOP.

    The soln what i found after working out
    CLEAR: wa_mkpf_mseg, w_werks, w_matnr, w_lgort, w_bwart.
    LOOP AT t_mkpf_mseg INTO wa_mkpf_mseg.
    IF wa_mkpf_mseg-werks EQ w_werks AND wa_mkpf_mseg-matnr EQ w_matnr AND wa_mkpf_mseg-lgort EQ w_lgort AND wa_mkpf_mseg-bwart EQ w_bwart.
    CLEAR: wa_p_coi.
    READ TABLE t_p_coi INTO wa_p_coi WITH KEY werks = wa_mkpf_mseg-werks matnr = wa_mkpf_mseg-matnr lgort = wa_mkpf_mseg-lgort bwart = wa_mkpf_mseg-bwart.
    IF sy-subrc = 0.
    if wa_p_coi-Avg Days  = ' ' and wa_mkpf_mseg-Avg Days = ' '.
    wa_p_coi-Avg Days = ' '.
    ELSE
    wa_p_coi-Avg Days = wa_p_coi-Avg Days + wa_mkpf_mseg-Avg Days.
    Endif.
    MODIFY t_p_coi FROM wa_p_coi TRANSPORTING Avg Days .
    CLEAR: wa_p_coi, wa_p_coi.
    endif.
    ELSE.
    wa_p_coi-werks = wa_mkpf_mseg-werks.
    wa_p_coi-matnr = wa_mkpf_mseg-matnr.
    wa_p_coi-bwart = wa_mkpf_mseg-bwart.
    wa_p_coi-lgort = wa_mkpf_mseg-lgort.
    wa_p_coi-Avg Days = wa_mkpf_mseg-Avg Days .
    APPEND wa_p_coi TO t_p_coi.
    CLEAR: wa_p_coi.
    ENDIF.
    w_werks = wa_mkpf_mseg-werks.
    w_matnr = wa_mkpf_mseg-matnr.
    w_lgort = wa_mkpf_mseg-lgort.
    w_bwart = wa_mkpf_mseg-bwart.
    CLEAR: wa_mkpf_mseg.
    ENDLOOP.

  • Issue while populating a Transient VO based on three VO's

    Hi,
    I have transient VO which is being populated based on Three SQL based VO. Each VO returns a Column and all these three columns needs to be shown as a table in UI.
    I populated a TransientVO by iterating the the Three VO's since the number of Rows returned are always finite (12).
    I dragged an dropped the TransientVO as a ADF Read Only Table.
    On click of a Button in UI I am executing an AMImpl method which populates the TransientVO.
    Issue which I am facing is ..
    even though the 12 Rows gets populated in TransientVO, I am able to see only 11 Rows in the UI and 1st Row is always Null,
    Please find my AMImpl code snippet below which I am using for Populating the transient VO.
    sqlVO1.reset();
    sqlVO2.reset();
    sqlVO3.reset();
    TransientVO.reset();
    for (int i =0 ; i < 12; i++)
            row1= (Past12InventoryVORowImpl) sqlVO1.next();
            row3 = (Past36InventoryVORowImpl) sqlVO2.next();
            row2 = (Past24InventoryVORowImpl) sqlVO3.next();
            transientVoRow = (InventoryGridTransVORowImpl)TransientVO.next();
            if(row1 != null && row2 != null && row3!= null && transientVoRow!= null){ 
             transientVoRow.setPeriod(row1.getMonth());
             transientVoRow.setPast12SalesAmount(row1.getSalesAmount());
             transientVoRow.setPast24SalesAmount(row2.getSalesAmount());
             transientVoRow.setPast36SalesAmount(row3.getSalesAmount());
             transientVoRow.setPast12SalesCount(row1.getSalesCount()); 
              transientVoRow.setPast24SalesCount(row2.getSalesCount());
              transientVoRow.setPast36SalesCount(row3.getSalesCount());
    }}Please let me know is there a better way of doing this ? Also I want to know is it possible to have a dynamic table in which each columns are referencing to different ViewObjects. like in my case
    I want a Table a to have some sets of columns from 3 Different VO.

    Hi!
    I don't think it's possible to bind one table to multiple VOs. A binding uses one iterator (binding), and one iterator means one VO.
    I understand that your transient VO is shown in the UI as a table.
    The reason for the empty row is that TransientVO.reset() does not really reset the iterator, since the iterator binding immediately navigates the default RowSet iterator's currency back to the first row after the reset.
    So if there's a binding on a VO, you can no longer reset the default iterator to the slot before the first row.
    In order to populate your table in code, you should create a new RowSetIterator (which automatically is on the slot before the first row), then use that iterator to navigate over the rows, and then remove the RowSetIterator again.
    Something like:
    RowSetIterator transientIter = TransientVO.createRowSetIterator( null );
    while( transientIter.hasNext() ) {
       transientVoRow = (InventoryGridTransVORowImpl)transientIter.next();
       // fill row
    transientIter.closeRowSetIterator();Sascha

  • Issue with LOV data populating to table column - Urgent

    Hi,
    I have done a create record screen.
    It contains an advanced table with few columns. One of the columns is an LOV in every row to be added.
    The user would select a value from LOV for column1 and key in values for other columns.
    However, when I click on Add (PFR gets invoked), I get an error
    'Row1 <col name> - Select a valid value'.
    Ex: LOV shows 3 records X, Y, and Z.
    I choose value X . It gets populated in table column. I enter value for fe other columns and click on Add.(which invokes PFR)
    but the moment I click on Add, I get an error, Row1 <column name> - select a valid value
    It displays same error in the tabel column also as in OAAttrValException.
    Any inputs to solve this would be great help
    Thanks,
    Kamath.

    Your statement "Looks like VO2 is not being attached to the adv table in PFR?" holds the key to your issue.
    Are you trying to attach the VO in PFR? Only a selected properties can be modified for beans in PFR. Put your code in processRequest and it should work.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Issue in populating input field

    Hi all,
    I have ceated a form view with an input field, Total overdue. Now I created a query whose output is just a number. I have placed that query on the iview and created a chart from that query and hide that chart. Now i create a formula for the input field on the form view and in the DATA Fields, I can see the field from that hidden chart and placed that field on the formula for the input field i.e.#ID[ACDMV]@Total_Overdue_Amount.
    Now when i deploy the dashboard, form view field dispays as empty. Why it is so? It should be populated with the field "#ID[ACDMV]@Total_Overdue_Amount"
    Can anyone pls help what is the issue?
    Many Thanks.
    Best Regards,
    AI.

    Hi
    Just check, have you connected that form to the 'Output Port' of that chart? You need to connect that form either to the output of the 'Data Service (Query)' or to the chart output. Then only that formula will work.
    Regards
    Sandeep

  • Graphical mapping issue, repeated lines are not populating

    Hello All,
    i have mapping where i need to map source node and its coresponding subelements to target node and its subelemtns based on certains condition, which i did using If condition.
    Now my issue is, when mapped source node with condition , conditional field is not in the same node which i am mapping. It is in the parent node of the node which i am mapping. SO when i mapped to target node, only one occurence only its populating in target side even When lines repeated more than once its not populating all lines corespondingly. Please let me know how to populate all line items when i have validation field in parent node and child node and its subelemnts to be mapped to the target node. ( Both parent node and sub node in source and target node are unbounded) .
    Thanks in advance.
    Regards,
    Kalpana

    Thanks for your reply, My source structre looks like below.
    I have to map rows node and its coresponding fields to target node Lines which is unbounded and to its subelements when collection name = 'MATGRP_COLLN'.  I did it using if condition but , only one row tis getting populated in target LIne node. next repeated row values are not populating in target side.
    - <extensions>
    + <collection name="REGION_COLLN" />
    +  <collection name="DIVISION_COLLN" />
    + <collection name="DTL_PRCNG_COLLN" />
    + <collection name="COUNTRY_COLLN">
    - <collection name="MATGRP_COLLN">
    - <row>
    - <fields>
      <OBJECTID>-2147483540</OBJECTID>
      <UNIQUE_DOC_NAME>-21474835401248121690973</UNIQUE_DOC_NAME>
      <DISPLAY_NAME />
      <MATGRP_ITEM_NO>1</MATGRP_ITEM_NO>
      <MATGRP_NAME>10100000</MATGRP_NAME>
      </fields>
      </row>
    - <row>
    - <fields>
      <OBJECTID>-2147483539</OBJECTID>
      <UNIQUE_DOC_NAME>-21474835391248121706160</UNIQUE_DOC_NAME>
      <DISPLAY_NAME />
      <MATGRP_ITEM_NO>2</MATGRP_ITEM_NO>
      <MATGRP_NAME>10101500</MATGRP_NAME>
      </fields>
      </row>
      </collection>
      </extensions>
      </object>
      </objects>
      </fcidataexport>

  • Issue in populating dynamic values in smartform

    Hi Experts,
    I am facing some serious alignment issue while populating dynamic values in smartform.
    Through table, I am populating  dynamic values in smart form. If my internal table contains 20 records , first 10 records are populating in first page and remaining records are populating in next page properly. But here issue is whenever that first 10 records are populated in first page system automatically leaves empty row at the end of page. Ideally it should not happen. please tell me how to solve this issue.
    thanks
    Karthik

    Hi,
    I was wondering how are the bold lines output, if you only have one line type... is the Table node executed multiple times under the loop node, where the bold text is implemented as separate text node..? It should IMO actually not affect the output of the table in any negative way if it's done so - just curious
    With the "protect" I meant this baby:
    You could also try to download and attach only the (upper) node involved in the output of table instead of whole form, if there is something in the form that should not be seen publicly...
    cheers
    Janis

Maybe you are looking for