Expand my Community achievements bar.

GeneveveX
GeneveveX
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • I would be glad to, but there doesn't seem to be an attachment.

    Type

    Questions

    Views

    518

    Likes

    0

    Replies

    0
  • I'm not entirely sure what you're asking here. Are your dropdown selections changing the value of the fields, or giving you that number of fields to fill?You say your first drop down is working, but not the second? Is there code or anything you can show us?

    Type

    Questions

    Views

    325

    Likes

    0

    Replies

    0
  • I didn't think you could use pound signs in javascript?? Pretty sure you can't, only FormCalc.In which case, if (oField.rawValue == "Service Alert") {   xfa.resolveNode("Cell4").rawValue = "A";} else if (oField.rawValue == "Service Bulletin") {   xfa.resolveNode("Cell4").rawValue = "B";}You could al...

    Type

    Questions

    Views

    517

    Likes

    0

    Replies

    0
  • You're not actually calling the instanceManager? TryTable3.Row1.instanceManager.addInstance(true);I know the _underline is supposed to automatically call it... but that doesn't always work. Especially client side. I avoid using it usually.

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • I see what you mean. Unfortunately, I do not know of a way of automatically numbering within the hierarchy. Frustrating, I know, but there it is. Sorry.

    Type

    Questions

    Views

    358

    Likes

    0

    Replies

    0
  • So, I figured out most of it myself. Even though EVERY bit of documentation I see says to reference the fields like this:xfa.resolveNode("OuterSubform.InnerRepeatingSubform[i]");I found that it doesn't know what to do with the brackets, so I have to: .InnerRepeatingSubform["+i+"]");So my final code ...

    Type

    Questions

    Views

    603

    Likes

    0

    Replies

    0
  • Checkboxes do not automatically uncheck each other--check boxes are generally used for "Check all that apply" situations. If you want mutually exclusive checkboxes, the easiest solution is to use Radio buttons. You can configure the radio buttons to look just like the check boxes, but they will auto...

    Type

    Questions

    Views

    277

    Likes

    0

    Replies

    0
  • I hope this makes sense.I have a drop down box with several values in it. Based on the user's selection, different fields and subforms will either be visible or hidden. To do this, I built a switch statement on the exit event of the drop down box. The statement works great until I start introducing ...

    Type

    Questions

    Views

    2.3K

    Likes

    0

    Replies

    6
  • Let me shore this up a bit and see if I can make it cleaner while trying to answer all of your questions. 1) I am SO sorry, but I don't know of a way to rename the fields automatically from within designer. On all of my forms I have gone down the list and renamed each of the fields individually. The...

    Type

    Questions

    Views

    736

    Likes

    0

    Replies

    0
  • I'm not entirely sure what you're asking for, but you can rename the text boxes on the fly.On the particular field, add the following under the initialize event, javascript:var rownum = this.parent.instanceIndex + 1;this.name = "FieldName" + rownum;You can also change the tool tip on the fly in the ...

    Type

    Questions

    Views

    358

    Likes

    0

    Replies

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