Search found 230 matches

by joben
Mon Jul 17, 2023 2:00 pm
Forum: General discussion and questions about Aware IM
Topic: Problem Displaying a URL in a new tab
Replies: 5
Views: 13222

Re: Problem Displaying a URL in a new tab

In my experience, embedding sites via iframes rarely works out of the box these days due Content Security Policies.
I don't claim to know how this works, but it could be a clue.
by joben
Wed Jun 21, 2023 2:50 pm
Forum: General discussion and questions about Aware IM
Topic: Import csv works but same with xls/xlsx gives parser error
Replies: 3
Views: 10169

Re: Import csv works but same with xls/xlsx gives parser error

Importing xlsx is not supported. I am currently trying to make a workaround for Windows Server. What I am doing so far is using a process like: 1. New form where I upload the xlsx file. 2. Export the file to the server. 3. run a powershell script with EXECUTE PROGRAM that converts it to csv (sorry a...
by joben
Wed Jun 07, 2023 8:13 am
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7733

Re: Custom CSS not working

What about hpl123's suggestion? When using the element inspector on the button, you should be able to see all CSS rules that are being applied. css.png If you can see the rules from your custom CSS file but they are striked through, it is because another rule takes precedence. (See orange lines in t...
by joben
Wed Jun 07, 2023 6:54 am
Forum: General discussion and questions about Aware IM
Topic: Custom CSS not working
Replies: 9
Views: 7733

Re: Custom CSS not working

CTRL+SHIFT+R will force the website to load with cache emptied.

If that doesn't work, try renaming the CSS file. As far as I know, AwareIM will load the CSS file regardless of its name, as long as it resides in the correct folder.
by joben
Thu Jun 01, 2023 9:22 am
Forum: General discussion and questions about Aware IM
Topic: Possible to change yes/no column text?
Replies: 5
Views: 3785

Re: Possible to change yes/no column text?

I know this doesn't answer the question properly, but it is possible to display an icon representing yes or no in queries. This might be a feasible workaround, and in my opinion, looks more nice: yesno.png This works by setting the Presentation rules on the attribute level: yesno1.png Then setting t...
by joben
Wed May 24, 2023 8:37 am
Forum: General discussion and questions about Aware IM
Topic: Mouse over - display tip to the right instead of under?
Replies: 4
Views: 1878

Re: Mouse over - display tip to the right instead of under?

By the way, I figured out it might be possible to change the position via a KendoUI JavaScript. Check out this example: https://docs.telerik.com/kendo-ui/api/javascript/ui/tooltip/configuration/position This is a better solution if it works. Is anyone able to figure out how to write a script for thi...
by joben
Wed May 24, 2023 8:29 am
Forum: General discussion and questions about Aware IM
Topic: Mouse over - display tip to the right instead of under?
Replies: 4
Views: 1878

Re: Mouse over - display tip to the right instead of under?

This one is tricky, but here is some info that might be useful. Here is the code that the popup consists of: <div class="k-animation-container" style="width: 189px; overflow: hidden; top: 411.859px; z-index: 10002; left: 968px; margin-top: 6px; height: 76px; box-sizing: content-box; display: none; p...
by joben
Wed May 24, 2023 6:37 am
Forum: Wish List
Topic: GUID Function needed for REST POST endpoints
Replies: 5
Views: 23572

Re: GUID Function needed for REST POST endpoints

I guess it depends on what you want to accomplish. With the provided example you get: Randomness Low risk of collision Correct bit length according to the standards I always assumed typical guids were just randomly generated hexadecimal values like: 34cadc59f6f83b775468ae1a91ad4380 And to follow the...
by joben
Tue May 23, 2023 2:14 pm
Forum: Wish List
Topic: GUID Function needed for REST POST endpoints
Replies: 5
Views: 23572

Re: GUID Function needed for REST POST endpoints

This might help until such a function is implemented. It will create a random hexadecimal value, 32 characters long.

If Bo IS NEW Then
Bo.guid=TO_LOWER_CASE(MD5(GENERATE_PWD(8,15,2,2,2)))

Result:
34cadc59f6f83b775468ae1a91ad4380
by joben
Thu May 04, 2023 7:58 am
Forum: Problem reports
Topic: The import of data in test works but it no longer works when we publish and the application becomes Current
Replies: 5
Views: 17074

Re: The import of data in test works but it no longer works when we publish and the application becomes Current

Make sure there is no faulty or weirdly formatted data in your production database table. You should do a "SELECT * FROM tablename" on the test database table and compare it to the production database table. We screwed up an import once, and one row prevented the query from displaying anything. I th...
by joben
Thu May 04, 2023 6:26 am
Forum: General discussion and questions about Aware IM
Topic: Locale - date formatting
Replies: 7
Views: 3634

Re: Locale - date formatting

Glad you got it working! This is actually a good question. The default format has always been MM/dd/yyyy for me when creating a new date attribute. I have just changed it to "(take from locale)" and never thought more about it. But now I discovered that this behavior can actually be changed so that ...
by joben
Wed May 03, 2023 5:48 pm
Forum: General discussion and questions about Aware IM
Topic: Locale - date formatting
Replies: 7
Views: 3634

Re: Locale - date formatting

Maybe you have to change to a different date and hit Save for the month part to kick in.
Also make sure that the attribute is inheriting from the locale and not using its own individual setting.

If you don't get it to work, feel free to attach the .bsv here in a zip file and I will have a look.
by joben
Wed May 03, 2023 7:43 am
Forum: General discussion and questions about Aware IM
Topic: Locale - date formatting
Replies: 7
Views: 3634

Re: Locale - date formatting

Hi fellow Swede :)

We use this locale setting in our apps:
Skärmbild 2023-05-03 094143.png
Skärmbild 2023-05-03 094143.png (30.47 KiB) Viewed 3632 times
Capital MM is important. MM is month, mm is minutes.
by joben
Tue Apr 25, 2023 9:59 am
Forum: Problem reports
Topic: Rating widget, set rating in query
Replies: 0
Views: 58321

Rating widget, set rating in query

The rating widget (number attribute with widget set to "Rating") looks really good and works as intended inside forms. However, if I want to set a rating inside a query by clicking the stars, it just doesn't work. betyg.png If I mouseover the stars, they will light up, but when clicking, nothing hap...