IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

jQuery Discussion :

Des boutons qui ne répondent plus !


Sujet :

jQuery

  1. #1
    Rédacteur
    Avatar de Franck.H
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2004
    Messages
    6 951
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2004
    Messages : 6 951
    Points : 12 462
    Points
    12 462
    Par défaut Des boutons qui ne répondent plus !


    Dans une dialog modal jQuery, j'ai un formulaire avec des boutons ASP. Le problème, c'est qu'ils ne répondent pas, je clique dessus mais uniquement le code client répond mais rien n'est envoyé au serveur ! Voici le code:

    ASP.Net:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
        <div id="dialog-infos-sols-perso">
            <asp:UpdatePanel ID="UpdatePanelInfosSolsPerso" UpdateMode="Conditional" runat="server"
                ChildrenAsTriggers="true">
                <ContentTemplate>
                    <asp:ObjectDataSource ID="odsSolsPerso" runat="server" OldValuesParameterFormatString="original_{0}"
                        SelectMethod="GetDataBySolChamp" TypeName="SANDRE.DAL.dsChampsPercellesTableAdapters.T_LISTE_SOLSTableAdapter">
                        <SelectParameters>
                            <asp:SessionParameter Name="pIDChamp" SessionField="__idchamp__" Type="String" />
                        </SelectParameters>
                    </asp:ObjectDataSource>
                    <br />
                    <asp:FormView ID="fvInfosSolsPerso" runat="server" DataSourceID="odsSolsPerso" HorizontalAlign="Center"
                        DefaultMode="Edit">
                        <EditItemTemplate>
                            <asp:Table ID="TableInfosSolPersoModif" runat="server" CssClass="tb">
                                <asp:TableRow ID="TableRow4" runat="server">
                                    <asp:TableCell ID="TableCell8" runat="server" CssClass="tr-categorie">Propriété</asp:TableCell>
                                    <asp:TableCell ID="TableCell9" runat="server" CssClass="tr-categorie">Valeur</asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow3" runat="server">
                                    <asp:TableCell ID="TableCell5" runat="server" CssClass="td-libelle">Profondeur minimum</asp:TableCell>
                                    <asp:TableCell ID="TableCell6" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtProfMin" runat="server" Width="75px" Text='<%# Eval("PROF_MIN") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow2" runat="server">
                                    <asp:TableCell ID="TableCell3" runat="server" CssClass="td-libelle">Profondeur maximum</asp:TableCell>
                                    <asp:TableCell ID="TableCell4" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtProfMax" runat="server" Width="75px" Text='<%# Eval("PROF_MAX") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow5" runat="server">
                                    <asp:TableCell ID="TableCell10" runat="server" CssClass="td-libelle">Profondeur d'enracinement</asp:TableCell>
                                    <asp:TableCell ID="TableCell11" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtProfEnra" runat="server" Width="75px" Text='<%# Eval("PROF_ENRA") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow6" runat="server">
                                    <asp:TableCell ID="TableCell12" runat="server" CssClass="td-libelle">Matière organique</asp:TableCell>
                                    <asp:TableCell ID="TableCell13" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtMatOrga" runat="server" Width="75px" Text='<%# Eval("MAT_ORGA") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow7" runat="server">
                                    <asp:TableCell ID="TableCell14" runat="server" CssClass="td-libelle">pH eau</asp:TableCell>
                                    <asp:TableCell ID="TableCell15" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtPhEau" runat="server" Width="75px" Text='<%# Eval("PH_EAU") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow8" runat="server">
                                    <asp:TableCell ID="TableCell16" runat="server" CssClass="td-libelle">CACO3</asp:TableCell>
                                    <asp:TableCell ID="TableCell17" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtCACO3" runat="server" Width="75px" Text='<%# Eval("CACO3") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow9" runat="server">
                                    <asp:TableCell ID="TableCell18" runat="server" CssClass="td-libelle">Battance</asp:TableCell>
                                    <asp:TableCell ID="TableCell19" runat="server" CssClass="td-donnee">
                                        <asp:DropDownList ID="ddlBattance" runat="server" DataSourceID="odsBattance" DataTextField="LIB"
                                            DataValueField="ID_BATTANCE">
                                        </asp:DropDownList>
                                        <asp:HiddenField ID="hfBattance" runat="server" Value='<%# Eval("BATTANCE") %>' />
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow10" runat="server">
                                    <asp:TableCell ID="TableCell20" runat="server" CssClass="td-libelle">Classe de stabilité</asp:TableCell>
                                    <asp:TableCell ID="TableCell21" runat="server" CssClass="td-donnee">
                                        <asp:DropDownList ID="ddlClasseStab" runat="server" DataSourceID="odsClasseStab"
                                            DataTextField="LIB" DataValueField="ID_STABILITE">
                                        </asp:DropDownList>
                                        <asp:HiddenField ID="hfClasseStab" runat="server" Value='<%# Eval("CLASSE_STAB") %>' />
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow11" runat="server">
                                    <asp:TableCell ID="TableCell22" runat="server" CssClass="td-libelle">Réserve utile</asp:TableCell>
                                    <asp:TableCell ID="TableCell23" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtReserveUtile" runat="server" Width="75px" Text='<%# Eval("RESERVE_UTILE") %>'></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow12" runat="server">
                                    <asp:TableCell ID="TableCell24" runat="server" CssClass="td-libelle">Hydromorphie minimum</asp:TableCell>
                                    <asp:TableCell ID="TableCell25" runat="server" CssClass="td-donnee">
                                        <asp:DropDownList ID="ddlHydroMin" runat="server" DataSourceID="odsHydromorphie"
                                            DataTextField="LIB" DataValueField="LIB">
                                        </asp:DropDownList>
                                        <asp:HiddenField ID="hfHydroMin" runat="server" Value='<%# Eval("HYDRO_MIN") %>'>
                                        </asp:HiddenField>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow13" runat="server">
                                    <asp:TableCell ID="TableCell26" runat="server" CssClass="td-libelle">Hydromorphie maximum</asp:TableCell>
                                    <asp:TableCell ID="TableCell27" runat="server" CssClass="td-donnee">
                                        <asp:DropDownList ID="ddlHydroMax" runat="server" DataSourceID="odsHydromorphie"
                                            DataTextField="LIB" DataValueField="LIB">
                                        </asp:DropDownList>
                                        <asp:HiddenField ID="hfHydroMax" runat="server" Value='<%# Eval("HYDRO_MAX") %>'>
                                        </asp:HiddenField>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow14" runat="server">
                                    <asp:TableCell ID="TableCell28" runat="server" CssClass="td-libelle">Classe hydromorphique</asp:TableCell>
                                    <asp:TableCell ID="TableCell29" runat="server" CssClass="td-donnee">
                                        <asp:TextBox ID="txtClasseHydro" runat="server" Width="75px" Text='<%# Eval("CLASSE_HYDRO") %>'
                                            ReadOnly="True"></asp:TextBox>
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow15" runat="server">
                                    <asp:TableCell ID="TableCell30" runat="server" CssClass="td-libelle">Risque de lessivage</asp:TableCell>
                                    <asp:TableCell ID="TableCell31" runat="server" CssClass="td-donnee">
                                        <asp:DropDownList ID="ddlRisque" runat="server" DataSourceID="odsRisque" DataTextField="LIB"
                                            DataValueField="ID_LESSIVAGE">
                                        </asp:DropDownList>
                                        <asp:HiddenField ID="hfRisque" runat="server" Value='<%# Eval("RISQUE") %>' />
                                    </asp:TableCell>
                                </asp:TableRow>
                                <asp:TableRow ID="TableRow16" runat="server">
                                    <asp:TableCell ID="TableCell32" runat="server" CssClass="td-libelle">Pouvoir épurateur</asp:TableCell>
                                    <asp:TableCell ID="TableCell33" runat="server" CssClass="td-donnee">
                                        <asp:DropDownList ID="ddlPouvoirEpu" runat="server" DataSourceID="odsPouvoirEpu"
                                            DataTextField="LIB" DataValueField="ID_POUV_EPU">
                                        </asp:DropDownList>
                                        <asp:HiddenField ID="hfPouvoirEpu" runat="server" Value='<%# Eval("POUVOIR_EPU") %>' />
                                    </asp:TableCell>
                                </asp:TableRow>
                            </asp:Table>
                            <div class="msg_saisie">
                                <asp:Label ID="lblMsgSolsPerso" runat="server"></asp:Label>
                            </div>
                            <asp:ObjectDataSource ID="odsBattance" runat="server" InsertMethod="Insert" OldValuesParameterFormatString="original_{0}"
                                SelectMethod="GetData" TypeName="SANDRE.DAL.dsChampsPercellesTableAdapters.DDL_BATTANCETableAdapter">
                                <InsertParameters>
                                    <asp:Parameter Name="ID_BATTANCE" Type="String" />
                                </InsertParameters>
                            </asp:ObjectDataSource>
                            <asp:ObjectDataSource ID="odsClasseStab" runat="server" InsertMethod="Insert" OldValuesParameterFormatString="original_{0}"
                                SelectMethod="GetData" TypeName="SANDRE.DAL.dsChampsPercellesTableAdapters.DDL_STABILITETableAdapter">
                                <InsertParameters>
                                    <asp:Parameter Name="ID_STABILITE" Type="String" />
                                </InsertParameters>
                            </asp:ObjectDataSource>
                            <asp:ObjectDataSource ID="odsRisque" runat="server" InsertMethod="Insert" OldValuesParameterFormatString="original_{0}"
                                SelectMethod="GetData" TypeName="SANDRE.DAL.dsChampsPercellesTableAdapters.DDL_LESSIVAGETableAdapter">
                                <InsertParameters>
                                    <asp:Parameter Name="_LIB" Type="String" />
                                    <asp:Parameter Name="ID_LESSIVAGE" Type="String" />
                                </InsertParameters>
                            </asp:ObjectDataSource>
                            <asp:ObjectDataSource ID="odsPouvoirEpu" runat="server" OldValuesParameterFormatString="original_{0}"
                                SelectMethod="GetData" TypeName="SANDRE.DAL.dsChampsPercellesTableAdapters.DDL_POUVOIR_EPUTableAdapter">
                            </asp:ObjectDataSource>
                            <asp:ObjectDataSource ID="odsHydromorphie" runat="server" InsertMethod="Insert" OldValuesParameterFormatString="original_{0}"
                                SelectMethod="GetData" TypeName="SANDRE.DAL.dsChampsPercellesTableAdapters.DDL_HYDROMORPHIETableAdapter">
                                <InsertParameters>
                                    <asp:Parameter Name="_LIB" Type="String" />
                                </InsertParameters>
                            </asp:ObjectDataSource>
                        </EditItemTemplate>
                    </asp:FormView>
                </ContentTemplate>
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="btnSolsPersoEnregistrer" EventName="Click" />
                </Triggers>
            </asp:UpdatePanel>
            <asp:Button ID="btnSolsPersoEnregistrer" runat="server" CssClass="btn-EXP" Text="Enregistrer"
                OnClick="btnSolsPersoEnregistrer_Click" />
            <asp:Button ID="btnSolsPersoAnnuler" runat="server" CssClass="btn-EXP" Text="Annuler les modifications"
                OnClick="btnSolsPersoAnnuler_Click" OnClientClick="confirmAnnuler('modif', 'abandonner les modifications du sol ?');" />
            <asp:Button ID="btnSolsPersoRAZ" runat="server" CssClass="btn-EXP" Text="Remettre les valeurs par défaut"
                OnClick="btnSolsPersoRAZ_Click" OnClientClick="confirmAnnuler('modif', 'remettre les valeurs d\'origines ?');" />
        </div>
    jQuery:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
           $(document).ready(function () {
                $("#dialog-infos-sols-perso").dialog({
                    autoOpen: false,
                    resizable: false,
                    height: 650,
                    width: 650,
                    modal: true,
                    show: {
                        effect: "fade",
                        duration: 500
                    },
                    hide: {
                        effect: "explode",
                        duration: 500
                    },
                    title: "Informations sur le sol: " + '<%= Session("__guidefichesol__") %>',
                    buttons: {
                        Ok: function () {
                            $(this).dialog("close");
                        }
                    }
                });
     
                $("#ctl00_contenu_fvChamps_btnInfosSolsPerso").click(function (event) {
                    event.preventDefault();
                    $("#dialog-infos-sols-perso").dialog("open");
                });
            });

    d'avance

  2. #2
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    Un bouton ASP, pour jQuery, ça n'existe pas...
    JavaScript (et donc jQuery) ne connaissent que le DOM créé à partir du code HTML interprété par le navigateur. C'est pourquoi il est demandé de poster le code HTML généré et non le code serveur...

  3. #3
    Rédacteur
    Avatar de Franck.H
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2004
    Messages
    6 951
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2004
    Messages : 6 951
    Points : 12 462
    Points
    12 462
    Par défaut
    Au temps pour moi, voici le code HTML

    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    <div id="dialog-infos-sols-perso">
        <div id="ctl00_contenu_UpdatePanelInfosSolsPerso">
            <br />
            <table cellspacing="0" align="Center" border="0" id="ctl00_contenu_fvInfosSolsPerso"
                style="border-collapse: collapse;">
                <tr>
                    <td colspan="2">
                        <table id="ctl00_contenu_fvInfosSolsPerso_TableInfosSolPersoModif" class="tb" border="0">
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow4">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell8" class="tr-categorie">
                                    Propriété
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell9" class="tr-categorie">
                                    Valeur
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow3">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell5" class="td-libelle">
                                    Profondeur minimum
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell6" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtProfMin" type="text" value="75" id="ctl00_contenu_fvInfosSolsPerso_txtProfMin"
                                        style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow2">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell3" class="td-libelle">
                                    Profondeur maximum
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell4" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtProfMax" type="text" value="100" id="ctl00_contenu_fvInfosSolsPerso_txtProfMax"
                                        style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow5">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell10" class="td-libelle">
                                    Profondeur d'enracinement
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell11" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtProfEnra" type="text" value="89" id="ctl00_contenu_fvInfosSolsPerso_txtProfEnra"
                                        style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow6">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell12" class="td-libelle">
                                    Matière organique
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell13" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtMatOrga" type="text" value="14,10"
                                        id="ctl00_contenu_fvInfosSolsPerso_txtMatOrga" style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow7">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell14" class="td-libelle">
                                    pH eau
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell15" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtPhEau" type="text" value="5,50" id="ctl00_contenu_fvInfosSolsPerso_txtPhEau"
                                        style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow8">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell16" class="td-libelle">
                                    CACO3
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell17" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtCACO3" type="text" value="44,40" id="ctl00_contenu_fvInfosSolsPerso_txtCACO3"
                                        style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow9">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell18" class="td-libelle">
                                    Battance
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell19" class="td-donnee">
                                    <select name="ctl00$contenu$fvInfosSolsPerso$ddlBattance" id="ctl00_contenu_fvInfosSolsPerso_ddlBattance">
                                        <option selected="selected" value="BAT_0">non battant : R &lt; 1,4</option>
                                        <option value="BAT_1">peu battant : 1,4 &lt; R &lt; 1,6</option>
                                        <option value="BAT_2">assez battant : 1,6 &lt; R &lt; 1,8</option>
                                        <option value="BAT_3">battant : 1,8 &lt; R &lt; 2,0</option>
                                        <option value="BAT_4">peu battant à battant : 1,4 &lt; R &lt; 2,0</option>
                                        <option value="BAT_5">très battant : R &gt; 2,0</option>
                                    </select><input type="hidden" name="ctl00$contenu$fvInfosSolsPerso$hfBattance" id="ctl00_contenu_fvInfosSolsPerso_hfBattance"
                                        value="BAT_0" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow10">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell20" class="td-libelle">
                                    Classe de stabilité
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell21" class="td-donnee">
                                    <select name="ctl00$contenu$fvInfosSolsPerso$ddlClasseStab" id="ctl00_contenu_fvInfosSolsPerso_ddlClasseStab">
                                        <option value="STAB_0">1 très stable</option>
                                        <option selected="selected" value="STAB_1">2 stable</option>
                                        <option value="STAB_2">3 moyennement stable</option>
                                        <option value="STAB_3">4 instable</option>
                                        <option value="STAB_4">5 très instable</option>
                                        <option value="STAB_5">1 - 2 </option>
                                        <option value="STAB_6">2 - 3 </option>
                                        <option value="STAB_7">3 - 4 </option>
                                        <option value="STAB_8">4 - 5 </option>
                                    </select><input type="hidden" name="ctl00$contenu$fvInfosSolsPerso$hfClasseStab"
                                        id="ctl00_contenu_fvInfosSolsPerso_hfClasseStab" value="STAB_1" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow11">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell22" class="td-libelle">
                                    Réserve utile
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell23" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtReserveUtile" type="text" value="170"
                                        id="ctl00_contenu_fvInfosSolsPerso_txtReserveUtile" style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow12">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell24" class="td-libelle">
                                    Hydromorphie minimum
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell25" class="td-donnee">
                                    <select name="ctl00$contenu$fvInfosSolsPerso$ddlHydroMin" id="ctl00_contenu_fvInfosSolsPerso_ddlHydroMin">
                                        <option value="H0">H0</option>
                                        <option selected="selected" value="H1">H1</option>
                                        <option value="H2">H2</option>
                                        <option value="H3">H3</option>
                                        <option value="H3+">H3+</option>
                                        <option value="H4">H4</option>
                                    </select><input type="hidden" name="ctl00$contenu$fvInfosSolsPerso$hfHydroMin" id="ctl00_contenu_fvInfosSolsPerso_hfHydroMin"
                                        value="H1" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow13">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell26" class="td-libelle">
                                    Hydromorphie maximum
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell27" class="td-donnee">
                                    <select name="ctl00$contenu$fvInfosSolsPerso$ddlHydroMax" id="ctl00_contenu_fvInfosSolsPerso_ddlHydroMax">
                                        <option value="H0">H0</option>
                                        <option value="H1">H1</option>
                                        <option value="H2">H2</option>
                                        <option selected="selected" value="H3">H3</option>
                                        <option value="H3+">H3+</option>
                                        <option value="H4">H4</option>
                                    </select><input type="hidden" name="ctl00$contenu$fvInfosSolsPerso$hfHydroMax" id="ctl00_contenu_fvInfosSolsPerso_hfHydroMax"
                                        value="H3" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow14">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell28" class="td-libelle">
                                    Classe hydromorphique
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell29" class="td-donnee">
                                    <input name="ctl00$contenu$fvInfosSolsPerso$txtClasseHydro" type="text" value="H1 - H3"
                                        readonly="readonly" id="ctl00_contenu_fvInfosSolsPerso_txtClasseHydro" style="width: 75px;" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow15">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell30" class="td-libelle">
                                    Risque de lessivage
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell31" class="td-donnee">
                                    <select name="ctl00$contenu$fvInfosSolsPerso$ddlRisque" id="ctl00_contenu_fvInfosSolsPerso_ddlRisque">
                                        <option value="LESS_0">risque très limité</option>
                                        <option selected="selected" value="LESS_1">risque limité</option>
                                        <option value="LESS_2">risque moyen</option>
                                        <option value="LESS_3">risque élevé</option>
                                        <option value="LESS_4">risque très élevé</option>
                                    </select><input type="hidden" name="ctl00$contenu$fvInfosSolsPerso$hfRisque" id="ctl00_contenu_fvInfosSolsPerso_hfRisque"
                                        value="LESS_1" />
                                </td>
                            </tr>
                            <tr id="ctl00_contenu_fvInfosSolsPerso_TableRow16">
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell32" class="td-libelle">
                                    Pouvoir épurateur
                                </td>
                                <td id="ctl00_contenu_fvInfosSolsPerso_TableCell33" class="td-donnee">
                                    <select name="ctl00$contenu$fvInfosSolsPerso$ddlPouvoirEpu" id="ctl00_contenu_fvInfosSolsPerso_ddlPouvoirEpu">
                                        <option value="POUV_0">pouvoir épurateur élevé ou suffisant sans contrainte
                                            majeure : A</option>
                                        <option selected="selected" value="POUV_1">pouvoir épurateur suffisant à élevé
                                            : A à B</option>
                                        <option value="POUV_2">pouvoir épurateur suffisant avec des précautions particulières
                                            : B</option>
                                        <option value="POUV_3">pouvoir épurateur à peine suffisant : B à C</option>
                                        <option value="POUV_4">pouvoir épurateur médiocre ou insuffisant : C</option>
                                    </select><input type="hidden" name="ctl00$contenu$fvInfosSolsPerso$hfPouvoirEpu"
                                        id="ctl00_contenu_fvInfosSolsPerso_hfPouvoirEpu" value="POUV_1" />
                                </td>
                            </tr>
                        </table>
                        <div class="msg_saisie">
                            <span id="ctl00_contenu_fvInfosSolsPerso_lblMsgSolsPerso"></span>
                        </div>
                    </td>
                </tr>
            </table>
        </div>
        <input type="submit" name="ctl00$contenu$btnSolsPersoEnregistrer" value="Enregistrer"
            id="ctl00_contenu_btnSolsPersoEnregistrer" class="btn-EXP" />
        <input type="submit" name="ctl00$contenu$btnSolsPersoAnnuler" value="Annuler les modifications"
            onclick="confirmAnnuler('modif', 'abandonner les modifications du sol ?');"
            id="ctl00_contenu_btnSolsPersoAnnuler" class="btn-EXP" />
        <input type="submit" name="ctl00$contenu$btnSolsPersoRAZ" value="Remettre les valeurs par défaut"
            onclick="confirmAnnuler('modif', 'remettre les valeurs d\'origines ?');"
            id="ctl00_contenu_btnSolsPersoRAZ" class="btn-EXP" />
    </div>

  4. #4
    Rédacteur
    Avatar de Franck.H
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2004
    Messages
    6 951
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2004
    Messages : 6 951
    Points : 12 462
    Points
    12 462
    Par défaut
    Un début de piste: http://www.evilznet.com/2010/12/13/f...log-jquery-ui/ je vais tester ça au boulot demain.

  5. #5
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    Perso, je comprends pas trop où se situe ton problème... Tout ce que je vois, c'est que tu as des éléments de formulaire, mais pas de balise <form>, donc je vois mal comment tu comptes envoyer les données au serveur ?

  6. #6
    Rédacteur
    Avatar de Franck.H
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2004
    Messages
    6 951
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2004
    Messages : 6 951
    Points : 12 462
    Points
    12 462
    Par défaut
    La création d'un dialog jQuery se fait par le biais d'un <div> donc moi je dirais plutôt, pourquoi jQuery ne créé pas un <form>. Je travailles en ASP.Net, le reste est retranscrit par le serveur ASP en HTML donc on à moins de contrôle sur ce qui se passe à ce niveau !

  7. #7
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    pourquoi jQuery ne créé pas un <form>
    Bah... jQuery n'est pas là pour créer des éléments sans qu'on lui demande...

  8. #8
    Rédacteur
    Avatar de Franck.H
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2004
    Messages
    6 951
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2004
    Messages : 6 951
    Points : 12 462
    Points
    12 462
    Par défaut
    Et pourtant, donner la possibilité de créer des boîtes modales qui peuvent servir à toutes fins, selon moi ça aurait été logique que ça le fasse automatiquement ou moins une option permettant de déterminer le type d'utilisation de la boîte de dialogue mais je ne vais pas entrer dans ce genre de débat qui ne servira strictement à rien.

    Je testerais demain au boulot la solution que j'ai trouvé et je vous tiendrez informé.

  9. #9
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 644
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 644
    Points : 66 671
    Points
    66 671
    Billets dans le blog
    1
    Par défaut
    La création d'un élément de formulaire par jquery n'implique pas automatiquement la création d'une balise form.

    Deux solutions: soit tu récupères les saisies pou les envoyer en ajax par exemple
    ou
    tu crées un form en bonne et due forme ...

  10. #10
    Rédacteur
    Avatar de Franck.H
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Janvier 2004
    Messages
    6 951
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 47
    Localisation : France, Haut Rhin (Alsace)

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : Service public

    Informations forums :
    Inscription : Janvier 2004
    Messages : 6 951
    Points : 12 462
    Points
    12 462
    Par défaut
    Citation Envoyé par Franck.H Voir le message
    Un début de piste: http://www.evilznet.com/2010/12/13/f...log-jquery-ui/ je vais tester ça au boulot demain.
    Donc voilà, j'ai testé et ça fonctionne mais, il ne faut pas mettre la boîte de dialogue en modal ou sinon vous n'accèderez plus à la dialog car elle se trouve dans ce cas à l'arrière du background qui est ajouté

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Boutons qui ne répondent plus
    Par Vahia dans le forum Composants graphiques
    Réponses: 3
    Dernier message: 09/06/2015, 12h32
  2. Réponses: 3
    Dernier message: 31/01/2007, 10h03
  3. des recordsets qui ne sont plus acceptés
    Par boss_gama dans le forum ASP
    Réponses: 2
    Dernier message: 02/08/2006, 10h51
  4. Redirection sur des fichiers qui n'existent plus
    Par gaia_dev dans le forum Apache
    Réponses: 3
    Dernier message: 03/02/2006, 20h09
  5. [swing][JButton] Des boutons qui disparaissent!
    Par soulhouf dans le forum Débuter
    Réponses: 12
    Dernier message: 19/08/2005, 13h51

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo