Expand my Community achievements bar.

Magus069
Magus069
Offline
  • Hi there, I think you are in the right direction. The only thing you might want to change is how you access the instance of rowTableItem.To be able to access a specific instance of that row, you need to use the resolveNode method.Simply replace the following:rowTableItem[$.parent.parent.index]for th...

    Type

    Discussions

    Views

    71

    Likes

    0

    Replies

    0
  • The only reason why you need more than 1 signature is because more than 1 person needs to sign the form. If one person has to sign the same form multiple times, you might want to re-analyze how to develop your form.   The way I did it was, I created 5 identical subforms that are not instances of one...

    Type

    Questions

    Views

    117

    Likes

    0

    Replies

    0
  • Hi zfg0,   I manage to get mine working. Although, it's not really a repeatable subform or signature field. I simply made a template of the signature field within a subform, copy / pasted that subform 'x' number of times figuring they wouldn't need more than that number of signature for my form's pu...

    Type

    Questions

    Views

    136

    Likes

    0

    Replies

    2
  • Hi delalou, if you wish to achieve this using letters, you can use this script in the calculate event of the field you wish to display them.if ((Row1.index+1)/ 26 <= 1){ //Display a single letter if row index if below Z String.fromCharCode(65+Row1.index); } else{ //Display double digi...

    Type

    Questions

    Views

    388

    Likes

    0

    Replies

    0
  • Hi there, if you wish to achieve something similar to the initial post of this thread follow the instructions: First ensure that your field contains Rich Text, if your field is in fact a text field you have to change the field format in Object palette to match Rich Text instead of Plain Text. Afterw...

    Type

    Questions

    Views

    628

    Likes

    0

    Replies

    0
  • Hey there, technically it's the same process as Bruce mentioned above. Simply use the resolveNode method to access the desired repeated subform by calling its count property by using the instanceManager with one of these ways:_AddContact.count - 1 //or AddContact.instanceManager.count - 1//resultPag...

    Type

    Questions

    Views

    686

    Like

    1

    Replies

    1
  • Hi, sorry for the delay, you can try the gofile link once again, the file should be there. For the signature validation it is sketchy... I've already managed to get some work done with the fields but it is not that easy. A digital signature can't be verified in any given event. It's very specific to...

    Type

    Questions

    Views

    1.2K

    Likes

    0

    Replies

    0
  • Here is the document with the comments for the code I provided you with. Let me know if you have any questions. https://gofile.io/d/grIHCk

    Type

    Questions

    Views

    1.3K

    Likes

    0

    Replies

    0
  • I don't know maybe you could try to remove the validation when filling those fields and on the mouseDown event of the submit you set them back to execute validation. I believe the code you'd need would be://removing validation ddCountry.validate.nullTest = "disabled"; //and adding validation ddCount...

    Type

    Questions

    Views

    1.3K

    Likes

    0

    Replies

    0
  • You made it through like a boss so far, good job.I should've left comments for all the code that I wrote for you, I'm sorry for that I can still do it if you still wish me to explain some more. If you wish to evaluate if the value has been changed, I suggest one of two different ways to do this and ...

    Type

    Questions

    Views

    1.4K

    Likes

    0

    Replies

    0