Jump to content

Leon13

Caspio Ninja
  • Posts

    60
  • Joined

  • Last visited

  • Days Won

    2

Leon13 last won the day on November 24 2021

Leon13 had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Leon13's Achievements

  1. Thank you so much @autonumber! Your suggestion had me try the below which works perfectly. <style> /* CSS to create a round profile image */ .round-image { border-radius: 50%; width: 60px; height: 60px; background-size: cover; background-position: center; margin-right: 0px; float: left; border: 3px solid orange; box-sizing: border-box; } </style> <div class="round-image" style="background-image: url('[@field:Profile_Photo/]');"></div>
  2. Greetings all, I located the code below in a post on this forum some time ago (can't locate it at this time.) The issue I am trying to fix is the large orange ring that is displayed for a second when the page loads: https://www.zwoft.com/photo.html (Username: test Password: test) Please let me know of any suggestions that might remove this large ring, or perhaps could suggest similar functionality to create a round profile pic. Thank you! Leon Header: <!-- RoundPic Starts--> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img { border-radius: 50%; border:2px solid orange; } </style> </head> <!-- RoundPic End-->
  3. @Wikiwi Big thank you for your response and any additional guidance. I used the exact code you listed above and:
  4. @Wikiwi Thank you for your guidance! Below is the new code, here is what I see: [@field:Submission_Date] = 9/02/2022 20:18:34 [@field:Time_to_Resolve] = 10/02/2022 22:00:55 Results: 32:42 Appreciate any additional guidance Thank you! New code: CONVERT(VARCHAR,(Datediff(day,[@field:Submission_Date],[@field:Time_to_Resolve])))+':'+ CASE WHEN (Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])%60) < 10 THEN '0'+CONVERT(VARCHAR,(Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])%60)) ELSE CONVERT(VARCHAR,(Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])%60)) END
  5. Hi @RuisiHansamu - Incredible timing as I am searching for this exact formula at this time. I tried your referenced formula to calculate DD:HH:MM from Ticket Open: [@field:Submission_Date] through closure [@field:Time_to_Resolve] I am using : 09/22/2022 06:14:52 as [@field:Submission_Date] 10/02/2022 06:39:24 as [@field:Time_to_Resolve] The result I get is: 240:27 Any thoughts please? Below is the entire formula from using your recommendation: CONVERT(VARCHAR,(Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])/60)) +':'+ CASE WHEN (Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])%60) < 10 THEN '0'+CONVERT(VARCHAR,(Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])%60)) ELSE CONVERT(VARCHAR,(Datediff(minute,[@field:Submission_Date],[@field:Time_to_Resolve])%60)) END
  6. Thank you very much for your response @CoopperBackpack! I will be using the Avatar on a Tabular Report. Thank you! Leon
  7. Greetings friends, I have been trying to find a solution and the closest I came across is below, but it needs a tweak and I hope someone can please guide me: In red below are the fields that I hope to navigate to my Table_A Field:Initials Thank you in advance for any guidance you have to offer Cheers, Leon <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> .fa { padding: 20px; font-size: 30px; width: 30px; text-align: center; text-decoration: none; margin: 5px 2px; border-radius: 50%; } .fa-facebook { background: #3B5998; color: white; } </style> </head> <body> <a href="#" class="fa fa-facebook"></a> </body> </html>
  8. @GoodBoy Thanks a Million, will check it out! I was hoping to find something that will work with all Datapage types.
  9. Greetings all Curious if anyone has successfully deployed logic that will allow multiple Authenticated users to VIEW any Data Page, but only one user my edit it. Thank you for sharing any guidance you may have. Leon
  10. Thank you @NiceDuck! Will proceed accordingly, as always, a big thank you for your guidance!
  11. Greetings All One of my Tables has ~60 different triggered action s (sending email Notifications in plain text and HTML format with some basic text and a few fields added from the Table. No Images.) Does anyone have a creative idea how to prevent my page from taking 12 seconds to update when users make updates via Tabular Reports? One thought was to setup multiple "Tasks" to trigger every 5 minutes or so to take care of the email notifications, but my challenge is that I do not seem to have the same level of control to ensure no duplicate email notifications are sent. Thank you in advance for any guidance you provide! Cheers
  12. A post by @DefinitelyNot31337 (below) is exactly what I was hoping to find. Thanks again @ParkLoey for your guidance!! And thank you @DefinitelyNot31337 for the knowledge shared!
  13. Hi @ParkLoey, thank you for sharing this! I will review, implement and advise.
  14. Hi @Meekeee, thank you for your response! Only criteria is that the user should at least check one. They should never be able to submit the form without at least one time selected.
  15. Greetings My workflow requires a user to select at least one of the time-slots below. Currently, the page allows the user just to click Submit and completely bypasses checking a checkbox. Thank you in advance for any creative logic/guidance offered. (All below are Text fields, configured as checkboxes.)
×
×
  • Create New...