Expand my Community achievements bar.

Varma_LC
Varma_LC
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Thank you for your suggestion...I resolved my issue with additional tricks using your suggestion as center piece of code.

    Type

    Questions

    Views

    976

    Likes

    0

    Replies

    0
  • It actually depends on scenario....you need to post more details about your request and if possible share the form.....most codes segments are base on hierarchy and actions you would like to perform.

    Type

    Questions

    Views

    3.5K

    Likes

    0

    Replies

    0
  • One of our templates require different formatting requirements based on text wrapping....the textField being populated from XML using Schema we need to determine this status at the time of rendering the form. Is there a way to find out if the text in a given TextField is wrapped or not?Thanks in Adv...

    Type

    Questions

    Views

    1.4K

    Likes

    0

    Replies

    2
  • here is a generic script that might help you.... I used this JavaScript in 'docReady' event of the Year dropdown...if (this.rawValue == null || this.rawValue == "") {    var d = new Date();    var setValue = d.getFullYear() -25;    this.rawValue = setValue;}

    Type

    Questions

    Views

    589

    Likes

    0

    Replies

    0
  • I used same scenario in most of my forms....passing XML as input to WSDLs and getting response using SOAP....here is one example that might come handy.....function saveToDocumentum(wfname) { SOAP.wireDump=false; var cWSURL = "http://servername.<domainname>.com:<portnumber>"+"/services/"+wfname+"?wsd...

    Type

    Questions

    Views

    1.0K

    Likes

    0

    Replies

    0
  • I would use FormCalc for date operations rather than JS....here is simple and similar example...var dSelectedvar wSelectedvar dResultdSelected= Date2Num(DateSelect.rawValue, "YYYY-MM-DD")wSelected= WeekSelect.rawValuedResult= dSelected + (7 * wSelected)DateResult.rawValue= Num2Date(dResult, "YYYY...

    Type

    Questions

    Views

    714

    Likes

    0

    Replies

    0
  • I would use generic code like follwing.....in change event of DD...if (xfa.event.change != "Please Select") { //when any thing other than 'Please Select'     page4.pcEquip.dirAbove.TextField12.rawValue = xfa.event.change; //assign current selected value to text field.}else { //when 'Please Select' ...

    Type

    Questions

    Views

    521

    Likes

    0

    Replies

    0
  • try the following...if ((this.rawValue ==1)  && (CheckBox4.rawValue == 1)) = 4 {     NumericField1.rawValue}

    Type

    Questions

    Views

    556

    Likes

    0

    Replies

    0
  • I guess issue is with your concatination....I see an issue with following line of code...vEmail= Page1.SendFormTo.rawValue, Page1.RSM.rawValue, Page1.CST.rawValue;I would use following....to concatinate all the email address....vEmail= Page1.SendFormTo.rawValue + ", " + Page1.RSM.rawValue + ", " + P...

    Type

    Questions

    Views

    606

    Likes

    0

    Replies

    0
  • If you use TextField instead of Numaric you have option for ZIP to select in patterns....Of couse if you want to stick to your Numaric field I would say use num{99999zzzz}...key: You would use 9 when you would expect to see 0-9 no matter what you passed...you would use "z" where you expect nothing p...

    Type

    Questions

    Views

    604

    Likes

    0

    Replies

    0
Sort by
  • Recently earned
  • Unearned first
  • A-Z
  • Z-A
Show more