Ver Mensaje Individual
  #33 (permalink)  
Antiguo 02/03/2016, 19:59
raulgranadosraul
 
Fecha de Ingreso: julio-2013
Mensajes: 174
Antigüedad: 11 años, 5 meses
Puntos: 1
Respuesta: UPDATE o INSERT con alert de confirmación

Cita:
Iniciado por xfxstudios Ver Mensaje
yo trabajo mejor con ajax y sin recargar la pagina lo cual dejo para cuando tienen desactivado el js actualizo listas datos y todo en una sola consulta, es cuestión de darle de a poco, aunque la solu que te pase era mucho mas sencilla y la podrias haber adaptado a las validaciones (que no mostraste para ayudarte mejor con el codigo), lo digo porque en dispositivos mobiles donde la señal es un poco tosca en ocasiones una web con tantas redirecciones termina pesando un poco, mientras que ajax da la sensación de que no recarga nada.

Tu solución la utilice en algún momento con esa misma libreria pero ya no, utilizo otras como Alertify.js o PNotifi también es buena y fácil de implementar.

Saludos y buena por esa.!
Pero no entiendo que tengo que implementar en mi código. He descargado el .css y el .js, los he agregado a la web y he colocado las funciones de la siguiente manera. Ewsta todo por default
Código Javascript:
Ver original
  1. <script type="text/javascript" src="js/2.1.3_jquery_min.js"></script>(((QUIZA ESTE SOBRA)))
  2. <script type="text/javascript" src="js/pnotify.custom.min.js"></script>
  3. <link rel="stylesheet" type="text/css" href="css/pnotify.custom.min.css"/>
  4.  
  5.  
  6. <!-- FUNCIONES PARA VENTANAS PNOTIFY -->
  7. <script type="text/javascript">
  8. new PNotify({
  9.     title: 'Bright Theme Notice',
  10.     text: 'Look at my beautiful styling! ^_^',
  11.     styling: 'brighttheme'
  12. });
  13. new PNotify({
  14.     title: 'Bright Theme Info',
  15.     text: 'Look at my beautiful styling! ^_^',
  16.     type: 'info',
  17.     styling: 'brighttheme'
  18. });
  19. new PNotify({
  20.     title: 'Bright Theme Success',
  21.     text: 'Look at my beautiful styling! ^_^',
  22.     type: 'success',
  23.     styling: 'brighttheme'
  24. });
  25. new PNotify({
  26.     title: 'Bright Theme Error',
  27.     text: 'Look at my beautiful styling! ^_^',
  28.     type: 'error',
  29.     styling: 'brighttheme'
  30. });
  31. new PNotify({
  32.     title: 'Bootstrap Notice',
  33.     text: 'Look at my beautiful styling! ^_^',
  34.     styling: 'bootstrap3'
  35. });
  36. new PNotify({
  37.     title: 'Bootstrap Info',
  38.     text: 'Look at my beautiful styling! ^_^',
  39.     type: 'info',
  40.     styling: 'bootstrap3'
  41. });
  42. new PNotify({
  43.     title: 'Bootstrap Success',
  44.     text: 'Look at my beautiful styling! ^_^',
  45.     type: 'success',
  46.     styling: 'bootstrap3'
  47. });
  48. new PNotify({
  49.     title: 'Bootstrap Error',
  50.     text: 'Look at my beautiful styling! ^_^',
  51.     type: 'error',
  52.     styling: 'bootstrap3'
  53. });
  54. new PNotify({
  55.     title: 'Font Awesome Notice',
  56.     text: 'Look at my beautiful styling! ^_^',
  57.     styling: 'fontawesome'
  58. });
  59. new PNotify({
  60.     title: 'Font Awesome Info',
  61.     text: 'Look at my beautiful styling! ^_^',
  62.     type: 'info',
  63.     styling: 'fontawesome'
  64. });
  65. new PNotify({
  66.     title: 'Font Awesome Success',
  67.     text: 'Look at my beautiful styling! ^_^',
  68.     type: 'success',
  69.     styling: 'fontawesome'
  70. });
  71. new PNotify({
  72.     title: 'Font Awesome Error',
  73.     text: 'Look at my beautiful styling! ^_^',
  74.     type: 'error',
  75.     styling: 'fontawesome'
  76. });
  77. new PNotify({
  78.     title: 'jQuery UI Notice',
  79.     text: 'Look at my beautiful styling! ^_^',
  80.     styling: 'jqueryui'
  81. });
  82. new PNotify({
  83.     title: 'jQuery UI Info',
  84.     text: 'Look at my beautiful styling! ^_^',
  85.     type: 'info',
  86.     styling: 'jqueryui'
  87. });
  88. new PNotify({
  89.     title: 'jQuery UI Success',
  90.     text: 'Look at my beautiful styling! ^_^',
  91.     type: 'success',
  92.     styling: 'jqueryui'
  93. });
  94. new PNotify({
  95.     title: 'jQuery UI Error',
  96.     text: 'Look at my beautiful styling! ^_^',
  97.     type: 'error',
  98.     styling: 'jqueryui'
  99. });
  100. </script>

Pero como agrego botones para llamar a estas funciones. He visitado la web y parece que hay que descargar más .js ... ¿que necesito?