Expand my Community achievements bar.

Varma_LC
Varma_LC
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • We have need to produce document that is dynamic in nature with different Page margins for example Last page needs 2.5 inch bottom margin. Is there a way to swap the master page based on such conditions like Last Page? Or restrict contentarea height based on last page or certain page number? Thanks ...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    1
  • //check the following JavaScript in change event of DD1.....// form1.#subform[0].DD1::change - (JavaScript, client)if (xfa.event.newText == "Sample 1") { DD2.rawValue = "1";}if (xfa.event.newText == "Sample 2") { DD2.rawValue = "2";}if (xfa.event.newText == "Sample 3") { DD2.rawValue = "3";}

    Type

    Questions

    Views

    485

    Likes

    0

    Replies

    0
  • I guess what you are trying is make objects on Master page visible/invisible based on user actions....I guess those are not supported. Once the form is rendered no updates to Master page appearance can be done. However if you are ok apply your changes before the form is rendered....you can use "page...

    Type

    Questions

    Views

    448

    Likes

    0

    Replies

    0
  • in the calculate event of the final text field use the following JavaScript code....however you may have to update based on your Hierarchy....var lname = "";var mname = "";var fname = "";if (!LastName.isNull && (!MiddleName.isNull || !FirstName.isNull)) {     lname = LastName.rawValue + ", ";}else i...

    Type

    Questions

    Views

    530

    Likes

    0

    Replies

    0
  • Thank you for your suggestion...I resolved my issue with additional tricks using your suggestion as center piece of code.

    Type

    Questions

    Views

    885

    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

    2.8K

    Likes

    0

    Replies

    0
  • is it the field with caption "Based on your ability.....live"? It works for me...in fact any numaric field only takes numbers not alpha...did you try that?you have another numaric field as floating field in text...FYI. any floating field is not up for accepting input and by defauld it is invisible.

    Type

    Questions

    Views

    587

    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.3K

    Likes

    0

    Replies

    2
  • you need to use Dynamic features and look for instance manager in the help/documentation.

    Type

    Questions

    Views

    417

    Likes

    0

    Replies

    0
  • 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

    507

    Likes

    0

    Replies

    0