Click here to Skip to main content
15,884,938 members
Home / Discussions / C#
   

C#

 
QuestionRe: Winforms custom property fails to reload - continued from QA. A new clue. Pin
Midi_Mick18-Jan-17 4:48
professionalMidi_Mick18-Jan-17 4:48 
QuestionWhen is it safe to use Monitor (lock) with Task? Pin
Bernhard Hiller18-Jan-17 2:34
Bernhard Hiller18-Jan-17 2:34 
AnswerRe: When is it safe to use Monitor (lock) with Task? Pin
Pete O'Hanlon18-Jan-17 3:25
mvePete O'Hanlon18-Jan-17 3:25 
GeneralRe: When is it safe to use Monitor (lock) with Task? Pin
Bernhard Hiller18-Jan-17 21:05
Bernhard Hiller18-Jan-17 21:05 
AnswerRe: When is it safe to use Monitor (lock) with Task? Pin
Richard Deeming18-Jan-17 8:11
mveRichard Deeming18-Jan-17 8:11 
GeneralRe: When is it safe to use Monitor (lock) with Task? Pin
Bernhard Hiller18-Jan-17 21:11
Bernhard Hiller18-Jan-17 21:11 
GeneralRe: When is it safe to use Monitor (lock) with Task? Pin
Pete O'Hanlon18-Jan-17 21:15
mvePete O'Hanlon18-Jan-17 21:15 
QuestionGroup of Checkboxes Pin
eejaynic17-Jan-17 11:41
eejaynic17-Jan-17 11:41 
I have a group of checkboxes that need their values checked on submissions. I can't find a convenient way to group them in MVC. Here's what i have in the markup:
HTML
<th>Role:</th>
        </tr>
        <tr>


            <th>Booker:</th>
            <td>@Html.CheckBoxFor(m => m.Booker)</td>
            <th>OA:</th>
            <td>@Html.CheckBoxFor(m => m.OA)</td>
            <th>Hauler:</th>
            <td>@Html.CheckBoxFor(m => m.Hauler)</td>
            <th>DA:</th>
            <td>@Html.CheckBoxFor(m => m.DA)</td>
        </tr>
        <tr>
            <th>Booker Only:</th>
            <td>@Html.CheckBoxFor(m => m.BAO)</td>
            <th>OA Only:</th>
            <td>@Html.CheckBoxFor(m => m.OAO)</td>
            <th>DA Only:</th>
            <td>@Html.CheckBoxFor(m => m.DAO)</td>


Later on, I'm attempting to send a message to the screen letting the user know AT LEAST one of the boxes must be checked:
JavaScript
<script type="text/javascript" language="javascript">
    function showDialog() {

        var ddlValue = $("#ddlPostingMonth").val();
        var ChkBooker = $('#Booker').prop("checked");
        var ChkOA = $('#OA').prop("checked");
        var ChkHauler = $('#Hauler').prop("checked");
        var ChkDA = $('#DA').prop("checked");
        var ChkBAO = $('#BAO').prop("checked");
        var ChkOAO = $('#OAO').prop("checked");
        var ChkDAO = $('#DAO').prop("checked");

        //console.log(ChkBooker);
        alert("This is the value: " + ChkBooker);
        if (ddlValue == "")
        { $('#dialog').data("kendoDialog").open(); }

        if (ChkBooker,ChkOA == false)
        { $('#dialog').data("kendoDialog").open(); }

        /*
        else if ((ddlValue == "") || (ChkOA == false))
        { $('#dialog').data("kendoDialog").open(); }
        
        else if ((ddlValue == "") && (ChkHauler == false))
        { $('#dialog').data("kendoDialog").open(); }

        else if ((ddlValue == "") && (ChkDA == false))
        { $('#dialog').data("kendoDialog").open(); }

        else if ((ddlValue == "") && (ChkBAO == false))
        { $('#dialog').data("kendoDialog").open(); }

        else if ((ddlValue == "") && (ChkOAO == false))
        { $('#dialog').data("kendoDialog").open(); }

        else if ((ddlValue == "") && (ChkDAO == false))
        { $('#dialog').data("kendoDialog").open(); }

        */

        else {
            $.post('SaveAgentInfo', $('#AgentDetailsForm').serialize(), function (data) {
                ///TODO: Clean up after save is complete
                console.log(data);
            });

            @*document.location = '@Url.Action("SaveAgentInfo", "Agent", new { master_OrderNum = item.Master_OrderNum })';*@
        }
    }


I've thrown this around in my mind brand for about an hour. I only need ONE box to be checked!! How can I accomplish this and ignore the other boxes if ONE is checked?

Thanks!
-Frustrated Programmer
AnswerRe: Group of Checkboxes Pin
Gerry Schmitz17-Jan-17 13:02
mveGerry Schmitz17-Jan-17 13:02 
GeneralRe: Group of Checkboxes Pin
eejaynic17-Jan-17 14:11
eejaynic17-Jan-17 14:11 
GeneralRe: Group of Checkboxes Pin
Gerry Schmitz17-Jan-17 14:53
mveGerry Schmitz17-Jan-17 14:53 
AnswerRe: Group of Checkboxes Pin
Richard Deeming18-Jan-17 2:04
mveRichard Deeming18-Jan-17 2:04 
GeneralRe: Group of Checkboxes Pin
eejaynic18-Jan-17 9:03
eejaynic18-Jan-17 9:03 
QuestionCommunicating with unmanaged DLL Pin
Member 1041441717-Jan-17 2:43
Member 1041441717-Jan-17 2:43 
AnswerRe: Communicating with unmanaged DLL Pin
Midi_Mick17-Jan-17 3:19
professionalMidi_Mick17-Jan-17 3:19 
GeneralRe: Communicating with unmanaged DLL Pin
Member 1041441717-Jan-17 4:13
Member 1041441717-Jan-17 4:13 
AnswerRe: Communicating with unmanaged DLL Pin
Bernhard Hiller17-Jan-17 23:26
Bernhard Hiller17-Jan-17 23:26 
QuestionRe: Communicating with unmanaged DLL Pin
Member 1390693510-Jul-18 22:01
Member 1390693510-Jul-18 22:01 
QuestionGlade errors after launching debug Pin
Sascha Manns16-Jan-17 23:18
professionalSascha Manns16-Jan-17 23:18 
AnswerRe: Glade errors after launching debug [Solved] Pin
Sascha Manns17-Jan-17 5:41
professionalSascha Manns17-Jan-17 5:41 
QuestionImplementing Strategy Pattern Pin
Liagapi16-Jan-17 22:20
Liagapi16-Jan-17 22:20 
AnswerRe: Implementing Strategy Pattern Pin
Pete O'Hanlon16-Jan-17 22:46
mvePete O'Hanlon16-Jan-17 22:46 
GeneralRe: Implementing Strategy Pattern Pin
Liagapi16-Jan-17 23:22
Liagapi16-Jan-17 23:22 
GeneralRe: Implementing Strategy Pattern Pin
harold aptroot16-Jan-17 23:05
harold aptroot16-Jan-17 23:05 
GeneralRe: Implementing Strategy Pattern Pin
Liagapi17-Jan-17 2:25
Liagapi17-Jan-17 2:25 

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.