Click here to Skip to main content
15,920,053 members
Home / Discussions / C#
   

C#

 
QuestionMessage Removed Pin
20-Mar-18 3:37
Member 1373673020-Mar-18 3:37 
Questioni want to create a chat application without the need of a server Pin
Ma Lek20-Mar-18 0:09
Ma Lek20-Mar-18 0:09 
AnswerRe: i want to create a chat application without the need of a server Pin
OriginalGriff20-Mar-18 0:26
mveOriginalGriff20-Mar-18 0:26 
GeneralRe: i want to create a chat application without the need of a server Pin
Ma Lek20-Mar-18 1:32
Ma Lek20-Mar-18 1:32 
SuggestionRe: i want to create a chat application without the need of a server Pin
Ralf Meier20-Mar-18 1:43
mveRalf Meier20-Mar-18 1:43 
GeneralRe: i want to create a chat application without the need of a server Pin
OriginalGriff20-Mar-18 1:44
mveOriginalGriff20-Mar-18 1:44 
AnswerRe: i want to create a chat application without the need of a server Pin
Ralf Meier20-Mar-18 1:40
mveRalf Meier20-Mar-18 1:40 
AnswerRe: i want to create a chat application without the need of a server Pin
Kevin Marois20-Mar-18 7:14
professionalKevin Marois20-Mar-18 7:14 
AnswerRe: i want to create a chat application without the need of a server Pin
MadMyche20-Mar-18 8:47
professionalMadMyche20-Mar-18 8:47 
QuestionSending byte to comport Pin
Iftikhar_Ahmed19-Mar-18 7:13
Iftikhar_Ahmed19-Mar-18 7:13 
AnswerRe: Sending byte to comport Pin
Richard MacCutchan19-Mar-18 9:38
mveRichard MacCutchan19-Mar-18 9:38 
QuestionHow to build a PDF maker program at C# Pin
User 1367511418-Mar-18 5:44
User 1367511418-Mar-18 5:44 
AnswerRe: How to build a PDF maker program at C# Pin
Richard MacCutchan18-Mar-18 5:48
mveRichard MacCutchan18-Mar-18 5:48 
AnswerRe: How to build a PDF maker program at C# Pin
Gerry Schmitz18-Mar-18 8:01
mveGerry Schmitz18-Mar-18 8:01 
GeneralRe: How to build a PDF maker program at C# Pin
User 1367511419-Mar-18 0:19
User 1367511419-Mar-18 0:19 
GeneralRe: How to build a PDF maker program at C# Pin
Gerry Schmitz19-Mar-18 6:49
mveGerry Schmitz19-Mar-18 6:49 
GeneralRe: How to build a PDF maker program at C# Pin
User 1367511424-Mar-18 2:19
User 1367511424-Mar-18 2:19 
QuestionAzure Service Bus Messaging - passing messages to UI Pin
Solo118-Mar-18 1:56
Solo118-Mar-18 1:56 
AnswerRe: Azure Service Bus Messaging - passing messages to UI Pin
Pete O'Hanlon18-Mar-18 2:52
mvePete O'Hanlon18-Mar-18 2:52 
AnswerRe: Azure Service Bus Messaging - passing messages to UI Pin
Gerry Schmitz18-Mar-18 8:12
mveGerry Schmitz18-Mar-18 8:12 
QuestionDifferent behaviors for toggleClass and hasClass Pin
VK1915-Mar-18 3:31
VK1915-Mar-18 3:31 
Hello All,
Using toggleClass and hasClass in javascript to toggle between 'SelectAll' and 'DeselectAll', to control the checkboxes. 'SelectAll' would check all the checkboxes, and 'DeselectAll' would deselect them all at once. This works fine in my development environment, but in staging server, the button does not invoke any action. It does nothing.

How does one go about debugging another environment, which does not have VS installed?

I have pasted a snippet - thank you!
script type="text/javascript">
        $(function () {
            $("#SelectAll").click(function () {
                var $this = $(this);
                $this.toggleClass('SelectAll');
                if ($this.hasClass('SelectAll')) {
                    $this.text('DeselectAll');
                    $this.val('DeselectAll');

                    var ischecked = true;
                } else {
                    $this.text('SelectAll');
                    $this.val('SelectAll');
                    var ischecked = false;
                }
            });
        });
        </script>

AnswerRe: Different behaviors for toggleClass and hasClass Pin
Pete O'Hanlon15-Mar-18 4:05
mvePete O'Hanlon15-Mar-18 4:05 
GeneralRe: Different behaviors for toggleClass and hasClass Pin
VK1915-Mar-18 4:30
VK1915-Mar-18 4:30 
AnswerRe: Different behaviors for toggleClass and hasClass Pin
Gerry Schmitz15-Mar-18 6:19
mveGerry Schmitz15-Mar-18 6:19 
GeneralRe: Different behaviors for toggleClass and hasClass Pin
Eddy Vluggen15-Mar-18 11:00
professionalEddy Vluggen15-Mar-18 11:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.