Expand my Community achievements bar.

Bibhu_Bikash_Na
Bibhu_Bikash_Na
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi,Here is a link that might help you. http://eslifeline.wordpress.com/2008/09/26/date-manipulation/Thanks,Bibhu.

    Type

    Questions

    Views

    594

    Likes

    0

    Replies

    0
  • Hi,In the DropDownList change event put the following codevar a = Substr(xfa.event.newText,1,3)if (a == "123")thenxfa.host.messageBox("The warning message you want to display")endifUse FormCalc for this instead of javaScript.Thanks,Bibhu.

    Type

    Questions

    Views

    1.6K

    Likes

    0

    Replies

    0
  • Hi,I am also not clear what are you trying to explain here.  What am assuming here is you want to execute the same code in the CheckBox as that of radioButton. In that case you can call the event of the RadioButton in the Click/Change event of the CheckBox.Lets say you have written the code in the C...

    Type

    Questions

    Views

    458

    Likes

    0

    Replies

    0
  • Hi,You can use messageBox here. See the bewlow code  var response = xfa.host.messageBox ("Do you want to view the help content", "Information", 2, 3);if (response == 4) {   xfa.host.gotoURL ("www.google.co.in"); // Opens up the help page.  } Here the messageBox takes 4 parameters, 1st one is compuls...

    Type

    Questions

    Views

    551

    Likes

    0

    Replies

    0
  • Hi Abdul,Try this. Create a regular button and in the click event put this script.var mail;var add = mailAddress.rawValue; // the to mail address you want.var msg = "Sample message"; // This is the body of the mail Customize it as per need by fetching value from different fields var sub = "Sample Su...

    Type

    Questions

    Views

    492

    Likes

    0

    Replies

    0
  • Hi Paul,Yes, you can use a XML schema in an existing form provided you have not used any XML schema earlier. In case you have used, it will overwrite the previous XML schema. You can submit as XML. You can collect data as XML. from the form.Thanks,Bibhu.

    Type

    Questions

    Views

    719

    Likes

    0

    Replies

    0
  • Hello Paul,What's the structure of the table? Is a static one or you are adding rows dynamically? Lets say it is a static one and the Row numbers are Row1, Row2, Row3 etc. You can write a script to count the number of the rows and in the initialize event of the DropDown you can put the value.var thi...

    Type

    Questions

    Views

    946

    Likes

    0

    Replies

    0
  • Hi,If your row names are like Row1,Row2,Row3 etc. If you use instanceManager.count will give you 1 as we have only one instance of Row1/2/3.Instead you can use the following script.var thisElement ;    var nodeLength = Table1.nodes.length; // counts the total node length of the table    var rowCount...

    Type

    Questions

    Views

    761

    Likes

    0

    Replies

    0
  • Hi, In the calculate event of the Total field you can put this script. Sum(form1.page1.Table1.Row1[*].Cell1) in FormCalc. If you want a cumulative addition I mean Ro3Value = Row1 value + Row 2 value. i.e every new instance value will be automatically added to the previous instance value. You can als...

    Type

    Questions

    Views

    706

    Likes

    0

    Replies

    0
  • Hi Cyndi,I guess there is reference mistake here. The form hierarchy shows that your page name is 'sVARAPage1' not VARAPage1. If you see, the 's' is missing in the pagename that you are referencing to.Secondly I hope the second table tableH1 in which the Dropdown is there is a static one. Is not it?...

    Type

    Questions

    Views

    852

    Like

    1

    Replies

    0
Top badges earned by Bibhu_Bikash_Na
Customize the badges you want to showcase on your profile