Elsinore

User Forum

www.screenconnect.com
Welcome Guest Search | Active Topics | Log In | Register

Tag as favorite
Remove "Technician", only list "Customer"
alexs
#1 Posted : Friday, February 10, 2012 9:09:33 PM
Rank: Newbie
Joined: 2/10/2012
Posts: 1
Location: Washington
Is there a way to only show the guest name in the Welcome screen? That way even if 1 "technician" created 4 sessions, each with unique "Customer" names, no one would know it was the same technician so they wouldn't click on the wrong one just because they clicked on the first session with the technician's name on it...
Jake Morgan
#2 Posted : Friday, February 10, 2012 10:59:05 PM
Rank: Administration
Joined: 4/9/2010
Posts: 871
I tried to do this with CSS once, but it didn't work in IE. To do it by changing source code. In Guest.aspx, change this:

Code:
        function initializeSessionRow(row) {
            var buttonCell = window.addCell(row);
            window.addCell(row);
            window.addCell(row);

            window.addElement(buttonCell, "INPUT", { type: "button", commandName: "Join", value: window.Resources["GuestSessionTable.ButtonText"] });
        }

        function updateSessionRow(row) {
            window.setElementText(row.cells[1], row.dataItem.clp.t);
            window.setElementText(row.cells[2], row.dataItem.t);
        }


To this:

Code:
        function initializeSessionRow(row) {
            var buttonCell = window.addCell(row);
            window.addCell(row);

            window.addElement(buttonCell, "INPUT", { type: "button", commandName: "Join", value: window.Resources["GuestSessionTable.ButtonText"] });
        }

        function updateSessionRow(row) {
            window.setElementText(row.cells[1], row.dataItem.t);
        }


And get rid of this:

Code:


                        <th style="width: 100px;">
                            <%= DR.GuestSessionTable_HostHeader %>
                        </th>
bigdessert
#3 Posted : Saturday, February 11, 2012 1:24:49 AM
Rank: Advanced Member
Joined: 9/14/2010
Posts: 460
Location: Minnesota
Do you think by default you could change switch the note/tech around. It would be nice to show the note first as that is really what contains the pertinent information.
Users browsing this topic
Guest
Tag as favorite
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.