Search found 619 matches

by johntalbott
Wed Jun 02, 2021 10:43 pm
Forum: General discussion and questions about Aware IM
Topic: Looking for Reverse Proxy / URL Rewrite Expertise
Replies: 1
Views: 1782

Looking for Reverse Proxy / URL Rewrite Expertise

I'm interested in hiring someone to setup a reverse proxy (ideally using IIS) to hide "AwareIM" and other aspects of the URL. I have IIS setup with Application Request Routing and URL rewrite modules, but I can't seem to get the rules correct. I'm also wondering if there is something with the Tomcat...
by johntalbott
Tue May 18, 2021 10:10 am
Forum: General discussion and questions about Aware IM
Topic: Bulk editing records
Replies: 10
Views: 4996

Re: Bulk editing records

Here is another approach using a grid with inline editing and some custom JavaScript.

https://screencast-o-matic.com/watch/crhF6hVfkkv
by johntalbott
Tue May 18, 2021 1:27 am
Forum: General discussion and questions about Aware IM
Topic: Bulk editing records
Replies: 10
Views: 4996

Re: Bulk editing records

It seems like a lot of extra navigating is required of the user to make this work. My impression is that the desired UX would be something like the user: 1. Selects the rows to be edited from the initial grid 2. Open a blank pop-up edit form 3. Edit the fields, save & close the edit form 4. All the ...
by johntalbott
Thu Apr 29, 2021 2:27 am
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

This has turned into a personal Rubiks cube. This dojo demonstrates the problem I described. https://dojo.telerik.com/@johntalbott/iJicefiT This is the CSS in question ... /*THIS WORKS*/ /*.switch2-container > .k-switch { width : 130px; }*/ /*THIS DOES NOT WORK*/ #switch2_w.k-switch { width : 130px;...
by johntalbott
Wed Apr 28, 2021 11:56 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

@Rennur - after re-reading your CSS code, I believe you are not seeing the issue I'm referring to because .km-switch is not wrapped by #myswitch1_w. #myswitch1_w.km-checkbox - doesn't reference anything that I can tell. .km-checkbox is not used with a Kendo switch. The only selector being used is .k...
by johntalbott
Wed Apr 28, 2021 11:25 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

The CellID is the id of the HTML input element that will contain the value of the attribute. CellID_w is assigned to the root element of the Kendo widget that is created. I'm guessing the "_w" stands for "widget". CellID2.png I originally used AuthorizedSwitch_w to wrap each selector in the CSS file...
by johntalbott
Wed Apr 28, 2021 2:48 am
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

Ha. I wondered if there was a way to change the yes/no string in newer config tool version. :-) I'm using 8.4 which doesn't appear to have that option.
by johntalbott
Tue Apr 27, 2021 10:54 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

Here's an end to end solution walkthrough. NOTE: It assumes there isn't a need to have two different switch styles within a single separator. customswitch-small3.gif Changing labels To change the labels, I had to use the Form Init script. The form cell or attribute Init Scripts would not work. I set...
by johntalbott
Tue Apr 27, 2021 4:35 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

It was trickier than expected to integrate into AIM, but here is what it looks like dropped in the CRM sample. Brilliant, The Dojo sample is on a different Kendo version, can you share how you are getting it into AIM :D That's the natural next question. :-) If it were a quick answer, I would drop i...
by johntalbott
Tue Apr 27, 2021 3:04 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

For some good news ... here is a customized Kendo mobile switch that is close to what you are looking for. See CSS and widget configuration here ... https://dojo.telerik.com/@johntalbott/ajoMUzaD It was trickier than expected to integrate into AIM, but here is what it looks like dropped in the CRM s...
by johntalbott
Tue Apr 27, 2021 2:27 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

https://demos.telerik.com/kendo-ui/switch/index I went to the link above and made change to the container setting using the browser inspector: I hope to use the configurator custom Yes / No setting and insert the Yes = "Authorised" No= "Unauthorised" AIM doesn't used that Kendo switch widget. AIM u...
by johntalbott
Mon Apr 26, 2021 10:44 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

As an aside ...

I'm hoping that with AIM9 and the updated Kendo library, AIM will be refactored to use the standard Kendo switch versus the mobile switch. It looks to be closer to what you are looking for and potentially easier to customize.

https://demos.telerik.com/kendo-ui/switch/index

Support?
by johntalbott
Mon Apr 26, 2021 10:18 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

To do this for individual switches, using the cell id for a css selector as described by Rennur will work. It's what Jaymer used based on his post. There are other ways too, but to keep it simple I'd go that route.

ACDC - Can you post the link to the dojo that has the switch the way you want it?
by johntalbott
Thu Apr 22, 2021 8:36 pm
Forum: General discussion and questions about Aware IM
Topic: Customising a checkbox Switch using Init Script
Replies: 22
Views: 21584

Re: Customising a checkbox Switch using Init Script

I don't believe there is a way to do it with an Init script. Aware IM uses the Kendo mobile switch and it doesn't have a width setting. You can do it with CSS though. Here is sample CSS you can drop into a custom CSS file as a starting point to tweak as needed. This is going change all your switches...