Forum Replies Created
-
AuthorPosts
-
June 8, 2021 at 17:50 in reply to: Unable to set Read-Only Date field with spjs.utility.setDateFieldFromDateObject #33739
Thanks for the fast response Alexander! The work around is doing the trick.
Thanks again!
Brent
January 10, 2019 at 21:20 in reply to: URL Query String Rule Changes Field value but doesn't trigger associated rule #23463Hi Alexander,
Thanks for looking at this. I think it ended up being a rule, or rules, needing to be set to “Field Change” and not both “Form Load and Field Change” further down the config.
Kind Regards,
BrentJanuary 9, 2019 at 13:55 in reply to: URL Query String Rule Changes Field value but doesn't trigger associated rule #23403Hi Alexander,
Here are some images of the rules, tab and debug.
Brent
Attachments:
Thanks for the quick response Alexander!
I just ran through several tests and it appears to be fixed with v3.6.7
Thanks again!
BrentThanks Alexander!! That worked perfectly.
Hi Alexander,
I am attempting to get a similar solution to avala’s working. I appear to be seeing a similar issue.
I am starting very simply for testing and what I am seeing is that the callback is triggering the calcTotal function correctly (it is logging to the console), but the variable I am creating from the vLookup_total_vLookupItems is empty. It writes a line to the console, but it is blank.
However, if I trigger the calcTotal from a button on the form it gets the value from the vLookup_total_vLookupItems correctly.
Here is the basic code I am using.
function vLookupIsLoadedCallback(fin){ if(fin === "vLookupQItems"){ calcTotal(); } } function calcTotal(){ console.log("calcTotal was triggered"); var vtotal = $(".vLookup_total_vLookupQItems:eq(2)").text(); console.log(vtotal); }
Hi Alexander,
I was working on getting this working and was hitting a wall initially. The problem I was running into was that the change event was returning the value of the initial dropdown as an ID, not the text value. This was preventing the filter from working correctly.I found the solution in another one of your blog posts Issues with creating multiple Cascading rules tied to same lookup list.
I modified the change event to the following and it works correctly now.
$("#Title_spjs_lookup").change(function(){ buildNextDropdown($(this).find("option:selected").text()); });
Thanks for another great solution!!
BrentOctober 28, 2015 at 18:58 in reply to: Save on Edit form returns to Dispform instead of list view #9096Thanks Alexander! I just added the code and it returns to the list view now.
Thanks again!
BrentOctober 27, 2015 at 19:40 in reply to: Save on Edit form returns to Dispform instead of list view #9047The behavior only seems to have changed when editing from the DispForm.
Another thing I have noticed is that if Tabs are not configured, the save from edit will return you to the list view. Even when editing from the dispform. Appears to be something related to having tabs configured.
Brent
October 27, 2015 at 17:36 in reply to: Save on Edit form returns to Dispform instead of list view #9025I just checked both the Edit and Display forms and it is unchecked on both forms.
Brent
-
AuthorPosts