Administrator Console

Last post 11-26-2006, 10:52 PM by EvilJohnius. 3 replies.
Sort Posts: Previous Next
  •  01-19-2006, 1:58 PM 14903

    Administrator Console

    Hi,

    I downloaded and installed CuteChatStandalone and I have a couple questions about the Room administration section of the Administration Console.

    What exactly is the function of the "Hidden" checkbox? I tried using this feature to hide the chat room but it did not work, even when a fellow developer logged onto my machine to access the chat rooms.

    Also, what exactly is the "Integration" textbox used for?

    We have a deadline looming and any help would be greatly appreciated!
    Thanx!!
  •  01-19-2006, 2:34 PM 14911 in reply to 14903

    Re: Administrator Console

    >>What exactly is the function of the "Hidden" checkbox? I tried using this feature to hide the chat room but it did not work, even when a fellow developer logged onto my machine to access the chat rooms.
     
    Yes. This feature is not working now.

    >>Also, what exactly is the "Integration" textbox used for?

    If you are using the standalone, just ignore this field.

     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  01-25-2006, 11:58 AM 15101 in reply to 14911

    Re: Administrator Console

    I set up Cute Chat in early December, and now starting to plan to use it.  One of the features that I could not get to work was the "Hidden" checkbox.  Thanks for confirming that I am not the only person finding that this checkbox does not seem to do anything.  I wish CuteSoft.net would send directions on how to use there product.  I should not have to quess what the features do.
  •  11-26-2006, 10:52 PM 24566 in reply to 15101

    Re: Administrator Console

    Not sure if this is terribly helpful to anyone, but in order to get the 'Hidden' checkbox of the admin side to have some effect on our CommunityServer forums listing, I made the following changes, which seemed to work. Please keep in mind this is a quickfix I came up with in about 5 min, so it's not necessarily the best way to do things - but we're in a hurry!
     
    In the View-ForumGroupView.ascx file (make a backup copy first, of course):
     
    Find the <script> section at the top, then find the GetRoomInfo method. Within the first foreach loop, immediately after "ri= new RoomInfo();" - about line 29 - I added (without all the dashes!):
     
    -----------------
     
    if(lobby.IsHidden) {
      ri.IsHidden = true;
    }
     
    -----------------
     
    Then go down to "public class RoomInfo", and beneath "string _t="";" - about line 53 at this point - add:
     
    -------------------
     
    bool _h=false;
     
    --------------------
     
    Then beneath the Tooltip get-setter add a new one like this:
     
    -------------------
     
    public bool IsHidden {
      get
      {
        return _h;
      }
      set
      {
        _h=value;
      }
    }
     
    -------------------
     
    Then scroll down to about line 170, there's an anchor tag and image tag being loaded up with Chat information. Within the TD tag containing this info, I added the following info (displayed including the TD tags - left out all the A and IMG tag stuff) :
     
    --------------------
     
    <td class="CommonListCell ForumGroupTotalThreadsColumn" align="center">
    <div runat="server" visible=<%# !GetRoomInfo(Container.DataItem).IsHidden %>>
        <a title="..... (All the chat info stuff - not typed here, for brevity!)
    </div>
    <div runat="server" visible = <%# GetRoomInfo(Container.DataItem).IsHidden %>>
         None
    </div>
    </td>
     
    --------------------
     
    And that seemed to do the trick. Hope that helps somebody. Cheers!
    Filed under: , ,
View as RSS news feed in XML