Expand my Community achievements bar.

eugzl
eugzl
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Hi All.In my table I have columns: TimeIn, TimeOut, and TimeWork where I calculate difference between TimeIn and TimeOut in column TimeWork using functions TimeToNum and NumToTime in FormCalc. I would like to calculate total hours of column TimeWork . For instance:TimeInTimeOutTimeWork05:2515:2510:0...

    Type

    Questions

    Views

    2.9K

    Likes

    0

    Replies

    4
  • Hi All.I have group of RadioButtons and I would like when one of RadioButton from group is selected than font color of caption for that button will change color. If that is possible. How to do it?Thanks.

    Type

    Questions

    Views

    1.4K

    Likes

    0

    Replies

    1
  • I fixed like you suggested but it didn't solve the problem.My email field validate event:if ( this.rawValue != null && this.rawValue != ""){var r = new RegExp("^[a-zA-Z0-9_\\-\\.]+\\@[a-z0-9_\\-\\.]+\\.[a-z]{2,3}$"); // Create a new Regular Expression Object.// Set the regular expression to look for...

    Type

    Questions

    Views

    2.1K

    Likes

    0

    Replies

    0
  • Hi All.In my form I validate DateField for date format and EmailField for email address. Those fields are validating when user input wrong value. I would like to execute validation of those fields when user fill in all fields of the form and click event of button. My code for button in click event:i...

    Type

    Questions

    Views

    4.2K

    Likes

    0

    Replies

    6
  • HI Magus069. Thanks for replay.My purpose to remove line in underlined TextField by condition. In one case it should be presented and other case hidden.Thanks.

    Type

    Questions

    Views

    1.8K

    Likes

    0

    Replies

    0
  • Hi All.I tried to remove underlined textfield dynamically. Code in javascript:xfa.resolveNode("form1.page1.subForm.txtName.ui.#textEdit.border.corner.color").value = "255, 255, 255";Also I tried like:xfa.resolveNode("form1.page1.subForm.txtName.ui.#textEdit.border.corner").presence = "hidden";but un...

    Type

    Questions

    Views

    3.0K

    Likes

    0

    Replies

    3
  • Hi All.Is exist way to validate function by pass according value? If yes. How to do it?Thanks.

    Type

    Questions

    Views

    1.3K

    Likes

    0

    Replies

    1
  • Hi BR001.That is design of Login form:That is Hierarchy of the form:Where Login is Script Object of page1.The complete code of Login script object in my first post.The code of button btnLogin on click event: Login.validate();The code of text field txtPassword on exit event: Login.validate();That is ...

    Type

    Questions

    Views

    2.4K

    Likes

    0

    Replies

    0
  • Hi BR001. Thanks foe replay.I tried your suggestion code but unfortunately when I typed wrong password and/or username I got alert:"Invalid username and/or password.  You have 2 left."After I click OK on alert message I got alert:"Invalid username and/or password.  You have 1 left.How to fix the pro...

    Type

    Questions

    Views

    2.4K

    Likes

    0

    Replies

    0
  • I'm trying create function to validate with limit login attempt. That is my code:var attempt = 3; // Variable to count number of attempts.function validate() {var username = form1.page1.subLogin.txtUserName.rawValue;var password = form1.page1.subLogin.txtPassword.rawValue;for (var i = 0; i < 2; i++)...

    Type

    Questions

    Views

    3.4K

    Likes

    0

    Replies

    5