bonjour j'essaye de personnalisé une boite de dialogue en jquery mais ça ne marche pas...
avant j'utilisais ce code et le popup s'ouvrait
aprés j'ai ajouté un bout de code pour personnaliser
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 $(document).ready(function () { $('.checkbox').click(function () { if ($(this).is(':checked')) { checked_value = $(this).val(); $("#txt_lala").text(checked_value); $("#Form").dialog({ close: function () { $('.checkbox').prop('checked', false); } }); } else { $("#Form").dialog('close'); } }); });
mais le popup ne s'ouvre plus
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 $(document).ready(function () { $('.checkbox').click(function () { if ($(this).is(':checked')) { checked_value = $(this).val(); $("#txt_lala").text(checked_value); $("#Form").dialog({ autoOpen: false, height: 300, width: 350, modal: true, close: function () { $('.checkbox').prop('checked', false); } }); } else { $("#Form").dialog('close'); } }); });
Partager