Search found 287 matches

by JonP
Fri Nov 16, 2018 2:04 am
Forum: Problem reports
Topic: SOLVED: A size limitation exists for conditionals
Replies: 14
Views: 19906

SOLVED: A size limitation exists for conditionals

How is this possible? I have an attribute that the log viewer separately evaluates to true and false for the same comparison when the value is UNDEFINED. I just included the lines that matter and rearranged the sequence for ease of comparison. Evaluating condition AssessmentStateSurvey.sc_Priority>0...
by JonP
Tue Nov 06, 2018 12:59 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED]Unable to edit/view unresolved object on Process
Replies: 10
Views: 12760

Re: Unable to edit/view unresolved object on Process

You're treating ClientNotes.NoteType like a multiple reference BO, which I think is the problem. It's single-reference, right? Try:

ClientNotes.NoteType = ThismfNoteTypes
by JonP
Fri Nov 02, 2018 11:17 pm
Forum: General discussion and questions about Aware IM
Topic: Any way to create a form with ONE section to show in a Tab?
Replies: 7
Views: 8948

Re: Any way to create a form with ONE section to show in a T

I was sure I remembered seeing a "Show tab even if it's the only one" checkbox. After doing a little research, it turns out there is such a checkbox...in Visual Perspectives, not forms. Sorry. Doesn't look like a built-in feature, but maybe you can do something in CSS or JavaScript. I would dig arou...
by JonP
Tue Oct 30, 2018 5:27 pm
Forum: Problem reports
Topic: Query Filter on Date shortcut attribute returns nothing
Replies: 5
Views: 8026

Re: Query Filter on Date shortcut attribute returns nothing

Off the top of my head, my guess is that the shortcut is converting the date to plain text, so you will have to convert it back to a date.
by JonP
Tue Oct 30, 2018 5:21 pm
Forum: General discussion and questions about Aware IM
Topic: SQL Query Form
Replies: 6
Views: 7567

Re: SQL Query Form

I'm a little rusty, but shouldn't it be "Select * From..."?
by JonP
Mon Oct 29, 2018 10:00 pm
Forum: General discussion and questions about Aware IM
Topic: Enable/Disable Operations with Records
Replies: 2
Views: 3515

Re: Enable/Disable Operations with Records

I think you want this:

Code: Select all

TimeOff.Employee.ID=LoggedInRegularUser.ID
References can be a little picky in the Applicable if box.
by JonP
Fri Oct 19, 2018 9:09 pm
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

RESOLVED: Kendo Bubble Chart Questions

I forgot about the apostrophe trick: FIND AssessmentStateResult WHERE (AssessmentStateResult.AssessmentState=LoggedInPerson.LastAssessment) ORDER BY AssessmentStateResult.sc_Priority DESC IN BATCHES OF 1 LoggedInPerson.LastAssessment.DataForSWOT=LoggedInPerson.LastAssessment.DataForSWOT+'{x: '+AS_ST...
by JonP
Fri Oct 19, 2018 7:33 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED-ISH] Complex Query Help Needed
Replies: 12
Views: 15895

Re: Complex Query Help Needed

I pulled an Emily Litella from SNL. Never mind. :mrgreen:
by JonP
Fri Oct 19, 2018 7:12 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED-ISH] Complex Query Help Needed
Replies: 12
Views: 15895

Re: Complex Query Help Needed

Hopefully you didn't see my earlier reply which was monumentally stupid. Here is a potentially less stupid reply:

I have had no luck with EXISTS. I use COUNT instead. Try:

Code: Select all

...OR COUNT Contact1001 WHERE (ContactGroupContracting.ID=Contact1001.ID AND Contact1001.psRelatedProprietor IS UNDEFINED)>0)
by JonP
Mon Oct 15, 2018 5:43 pm
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

Re: Kendo Bubble Chart Questions

Found the method "replace" in JavaScript. Tried adding this to the end of the render script as a test:

Code: Select all

		var replaced = $("body").html().replace('Factor','Blah');
		$("body").html(replaced);
The page loads for a split second then reverts back to the post-login landing page.
by JonP
Fri Oct 12, 2018 2:00 pm
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

Re: Kendo Bubble Chart Questions

Tried minification. No luck. AIM won't include any of the Javascript. The bubble chart is completely blank and there's nothing in View page source. no javascript.png So it was a guessing game as to what part of the Javascript that AIM didn't like. I figured that the ASCII double quotes were the culp...
by JonP
Fri Oct 12, 2018 12:38 am
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

Re: Kendo Bubble Chart Questions

I'm sooooo close. When I manually type the data, it's looks perfect. But when I generate the data in code (and I checked the results with DISPLAY MESSAGE, which looks the same as the manual data), it won't render. This is the data as manual vs generated according to DISPLAY MESSAGE: {x: 3.0, y: 0.0,...
by JonP
Tue Oct 09, 2018 11:50 pm
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

Re: Kendo Bubble Chart Questions

Thanks Jaymer! I wish there was a more elegant solution, but thanks to you, at least I now have a solution and that's a huge step forward.
by JonP
Tue Oct 09, 2018 8:48 pm
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

Re: Kendo Bubble Chart Questions

I figured out why the chart wouldn't show up in test. I had the JavaScript in form cell when I needed it in form section (under render). I'm still figuring out how to do the data binding. My current approach is the LIST function: <<LIST("LoggedInPerson.LastAssessment.om_AssessmentResults", ", ", "Av...
by JonP
Tue Oct 02, 2018 12:53 pm
Forum: General discussion and questions about Aware IM
Topic: Kendo Bubble Chart Questions
Replies: 18
Views: 27200

Re: Kendo Bubble Chart Questions

Thanks guys for your input.

Tom, I'll dig through that bsv to learn the data binding secrets.

Mark, I don't see why I should pay for other charts when Kendo has perfectly good (and consistent) charts already paid for. I just need to figure out how to get them to display.