Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 5 online users. » 0 Member(s) | 1 Guest(s) Applebot, Bing, Google, Yandex
|
Latest Threads |
Finetuning the way you se...
Forum: coreBOS Development
Last Post: alexandy40d
12-06-2024, 07:38 AM
» Replies: 4
» Views: 8,132
|
MariaDB Version
Forum: Administrator Support
Last Post: joebordes
11-01-2024, 11:49 AM
» Replies: 1
» Views: 613
|
Product Catalog / parts c...
Forum: Modules/Extension Support
Last Post: joebordes
09-15-2024, 09:40 AM
» Replies: 1
» Views: 1,106
|
Challenges and Best Pract...
Forum: coreBOS Development
Last Post: wishforbes
08-30-2024, 04:21 PM
» Replies: 0
» Views: 716
|
PRODUCTS IN ACCOUNTS BY O...
Forum: User Support
Last Post: jonathanmoore858
08-03-2024, 04:14 PM
» Replies: 4
» Views: 2,752
|
Zapier | Integration
Forum: Modules/Extension Support
Last Post: bernardgbailey
07-29-2024, 11:45 PM
» Replies: 7
» Views: 9,839
|
Versión PHP recomendada
Forum: International
Last Post: joebordes
07-04-2024, 05:42 PM
» Replies: 7
» Views: 3,316
|
Could Someone Give me Adv...
Forum: Open Discussions
Last Post: joebordes
06-27-2024, 08:32 AM
» Replies: 1
» Views: 1,694
|
RESTRICTED FILE
Forum: Administrator Support
Last Post: inspectorflint
06-22-2024, 08:08 AM
» Replies: 7
» Views: 5,646
|
GENDOC imágenes
Forum: Open Discussions
Last Post: joebordes
06-02-2024, 05:11 PM
» Replies: 4
» Views: 2,018
|
|
|
Expressions: multiple conditions |
Posted by: Guido1982 - 04-14-2021, 10:19 AM - Forum: Administrator Support
- Replies (8)
|
|
Follow the previous post I created a validation map that evaluates a condition expression map. I want to trigger the validation only when a certain picklist value is selected, so
Code: if (pending_tc_recordcount > 0 && lm_status = 'thetriggeringstatus') then 0 else 1 end
But that doesn't yield the desired result (I get some fatal error). Is this even possible and if so, how? And if it's not, is there another solution, other than writing a custom validation?
|
|
|
Process flow: how to force conditions before changing a picklist |
Posted by: Guido1982 - 04-13-2021, 12:27 PM - Forum: Administrator Support
- Replies (3)
|
|
I want to perform a small test-task in the process flow management, since I've never used that before. Now I know we can enforce certain conditions using the process flow, so here is my testcase: I have a dropdown that can only be set to a certain value if a numeric field is set to zero. Is there documentation on the process flow where I can figure out how to do that?
|
|
|
Adding filter to report hang/fail on JS error |
Posted by: addady2 - 03-25-2021, 12:10 PM - Forum: Administrator Support
- Replies (3)
|
|
The error in the console is:
Code: content_script.js:23376 Uncaught TypeError: Cannot read property 'innerText' of undefined
at Object.domText (content_script.js:23376)
at HTMLDocument.onChange (content_script.js:5199)
domText @ content_script.js:23376
onChange @ content_script.js:5199
VM3751:4 Uncaught SyntaxError: Unexpected identifier
at vtlib_executeJavascriptInElement (vtlib.js:279)
at Object.<anonymous> (Reports.js:1098)
at i (jquery.js:2)
at Object.fireWith [as resolveWith] (jquery.js:2)
at y (jquery.js:4)
at XMLHttpRequest.c (jquery.js:4)
vtlib_executeJavascriptInElement @ vtlib.js:279
(anonymous) @ Reports.js:1098
i @ jquery.js:2
fireWith @ jquery.js:2
y @ jquery.js:4
c @ jquery.js:4
XMLHttpRequest.send (async)
send @ csrf-magic.js:52
send @ jquery.js:4
ajax @ jquery.js:4
generateReport @ Reports.js:1092
onclick @ index.php?module=Reports&action=SaveAndRun&record=27&folderid=13:311
It show RED X at the end on the labels line:
Code: let chartDataObject = {
labels: ["אמנן תמר 5 צל","ארנן 22 רמ"","סתנא 16 תל א(גד נדס)","נ אפרם 253 תל א","נן ערת קרת ם חפ","רג טארס ער מם","רג נעמ מר - כפר נ","רכת כסלן רלם","דן מרן 42 רמת גן(מרצאנ)","נם 23 רמת רן","נם 67 רמת רן","גלן 78 תל-א","חנ רנא תל רך צפן","פט 16 רצל","לד טרן 17 ראן לצן","לפן 14 תל א(לל)","מחסן גאלם","מפ' אטל - חת צן","מפ' כץ ארנת","נ סטר ת"א","נחנם מפ' פלת","רח נצח רמת רן","רפדם 52 רמת א(גארן גמאל)","פטם 31 רמת רן","תל מנד מפ' כן"],
datasets: [{
data: ["1","1","2","7","3","1","2","2","3","1","1","3","3","1","1","3","13","3","4","6","4","2","4","4","1"]
}]
};
Its look like its because of the question mark (") on one of the labels array data!
I believes you need to add back slash to before the question mark (\") when generating the labels array.
|
|
|
|