Daman Jeet
Forum Replies Created
-
Closed.
Hi Martin Closing this ticket for now. If you any issues feel free to report, Thanks Jeet
Hi Martin ,
New version has been pushed.
This should solve the problem.
Thanks for reporting.
Jeet
Forum: Plugins
In reply to: [Real Time Validation for Gravity Forms] RTV breaks overlay version of formHi Bhogue,
I checked the link you sent and can see all the configuration set properly.To troubleshoot this further speedily, i would need few details of your set up:
Go to Settings>Real Time validation and send your site’s configuration details.
https://puu.sh/prfKj/b0972ac965.png
This will help us get knowledge of real environment.
Let me know when done.And i will get back to you.
Thanks
JeetHi Martin , I have figured out the issue.Will push a minor update on Monday. Thanks Djeet
Forum: Plugins
In reply to: [Real Time Validation for Gravity Forms] How to activate valdiation ?Hi Bee,
The plugin has same activation procedure as documented.
1) Have you enabled Validate Real time Input and added Regex expression ?
https://puu.sh/puCq4/8fd8c95d36.png2) Can you create a simple form with email field and enable real time validation to check if it works on your install
3) To troubleshoot this further speedily, i would need few details of your set up:
Go to Settings>Real Time validation and send your site’s configuration details.
https://puu.sh/prfKj/b0972ac965.png
This will help us get knowledge of real environment.
Let me know when done.
Thanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] Validation Hook?Hi Martin,
You had raised couple of questions.Here are my responses to them one by one:
1) As of now we don’t have JS validation hooks.Unlike PHP , JS is async in nature which ups the level of the problem.We will think through this more thoroughly and incorporate it later on.
2) Having said that , here is a way to achieve the solution. After your script has AJAX response, use below snippet to let our script trigger the validation message you want to show:
https://gist.github.com/djeet/efbd4e6a6e875f12b192035d1a8f6797
3) To answer ” maybe give us the ability to disable your real time validation on a particular field” , let me explain explain hierarchy of features:
A. At top is toggle switch which lets you enable real time validation on form level for all fields.
B.At next level we have validation for “Required”. This kicks in real time once real time validation is “Enabled”
C. At third layer we have Regex based validation which can be selected to enable even more advanced regex based validations.
Now it would be confusing for user ( and end user) to disable a particular field from realtime.
Imagine we have two fields in a form:
Field 1 (which has realtime enabled and required)
Field 2( which has realtime disabled and required)Submit
Suppose user goes into Field 1 and focuses out. In this case error for required will trigger on Field 1 ( as realtime is enabled) .Right?
Now user presses Submit. ( Note: Field 2 is still empty)
He would see “This field is required” message on Field 2. This would really surprise him and make him think “Why did the form not show me this message for Field 2 while i did get rejection notice for Field 1?”
Trick is not to surprise user ??
4) However I do agree that “Validate Real Time Input” should be been better worded to may be say ” Advanced Input Validation (via Regex)”
Hope this will solve your queries.
Thanks
JeetHi Martin,
We have figured out the reason.You are using same form twice on the page and our code iterates for form and its field once. Will have to do some more digging & tweaking to make it work. Will push a new version by end of this week or early next week.
Thanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] Found a couple of bugs.Here is the link for discussion.
Closing this thread for these two bugs.
Thanks
JeetHi Martin ,
Here is the new support thread for you to discuss lightbox issue initiated at https://www.ads-software.com/support/topic/found-a-couple-of-bugs?replies=4
To troubleshoot this further speedily, i would need few details of your set up:
1) Demo URL where you are trying to set up plugin in a light-box
2) Go to Settings>Real Time validation and send your site’s configuration details .
https://puu.sh/prfKj/b0972ac965.pngThis will help us get knowledge of real environment.
Note:We don’t carry over any sensitive form data.
Let me know and we can discuss over this.
Thanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] Found a couple of bugs.Hi Martin ,
New Version 1.0.13 has been pushed live addressing the two bugs you raised.
I would open a new support thread for lightbox issue.Will help keep threads organized for reference of other users.
Thanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] how to validate my domain email onlyHi ,
Somehow the quote (‘) was present at the end of string .It should not have been present.Please use below regex and it should solve.
New Regex:
^([^@\s]+)@(testdomain.com)$
Thanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] problem in arabic langHi
I am not an expert in Arabic language so you will have to figure out Unicode equivalent of Arabic text.And put in your regex.
However for your other query i have already replied on this thread:
https://www.ads-software.com/support/topic/how-to-validate-my-domain-email-onlyThanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] how to validate my domain email onlyHi
You can simply replace ‘testdomain.com” with your DOMIAN in regex below to accept emails from particular domain
^([^@\s]+)@(testdomain.com)$`
Thanks
JeetForum: Plugins
In reply to: [Real Time Validation for Gravity Forms] problem in arabic langHi ,
I am unable to fully comprehend your message.If you are trying to use Arabic characters in your regex you would have to convert text to unicode. Here are few helpful links:
1) unicode characters
https://en.wikipedia.org/wiki/Arabic_(Unicode_block)2) Stack exchange thread which answers similar question
https://stackoverflow.com/questions/11323596/regular-expression-for-arabic-languageHope this helps.
Thanks
Jeet