hola buenas tardes a todos los foristas bueno les comento soy nuevo en lo que se refiere a programacion web (html, js, php, jquery ) estoy aprendiendo de forma autodidacta leyendo manuales viendo tutoriales y visitando este foro bueno tengo una duda y que no he podido resolver debido a mi escaso conocimiento estoy realizando un CRUD con jquery mi codigo es el siguiente
Código HTML:
Ver original<!DOCTYPE html>
<title>Basic CRUD Application - jQuery EasyUI CRUD Demo
</title> <link rel="stylesheet" type="text/css" href="lib/themes/metro/easyui.css"> <link rel="stylesheet" type="text/css" href="lib/themes/icon.css"> <link rel="stylesheet" type="text/css" href="lib/themes/color.css"> <link rel="stylesheet" type="text/css" href="lib/demo.css"> <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script> <script type="text/javascript" src="lib/jquery.easyui.min.js"></script> <h2>Basic CRUD Application
</h2> <p>Click the buttons on datagrid toolbar to do crud actions.
</p>
<table id="dg" title="My Users" class="easyui-datagrid" style="width:700px;height:250px" url="get_users.php"
toolbar="#toolbar" pagination="true"
rownumbers="true" fitColumns="true" singleSelect="true">
<th field="nombre" width="70">nombre
</th> <th field="lugar" width="70">lugar
</th> <th field="concepto" width="70">Concepto
</th> <th field="ident" width="70">ident
</th> <th field="servicio" width="70">servicio
</th> <th field="fecha" width="50">fecha
</th> <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="newUser()">New User
</a> <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-edit" plain="true" onclick="editUser()">Edit User
</a> <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-remove" plain="true" onclick="destroyUser()">Remove User
</a>
<div id="dlg" class="easyui-dialog" style="width:400px;height:380px;padding:10px 20px" closed="true" buttons="#dlg-buttons">
<div class="ftitle">User Information
</div> <form id="fm" method="post" novalidate> <input name="nombre" class="easyui-textbox" required="true"> <input name="lugar" class="easyui-textbox" required="true"> <input name="concepto" class="easyui-textbox"> <input name="ident" class="easyui-textbox" validType="date"> <input name="servicio" class="easyui-combobox" data-options=" valueField: 'label',
textField: 'value',
data: [{
label: 'compra',
value: 'compra'
},{
label: 'venta',
value: 'venta'
},{
label: 'renta',
value: 'renta'
}]" />
<input name="fecha" class="easyui-datebox" validType="date"> <a href="javascript:void(0)" class="easyui-linkbutton c6" iconCls="icon-ok" onclick="saveUser()" style="width:90px">Save
</a> <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-cancel" onclick="javascript:$('#dlg').dialog('close')" style="width:90px">Cancel
</a> <script type="text/javascript"> var url;
function newUser(){
$('#dlg').dialog('open').dialog('setTitle','New User');
$('#fm').form('clear');
url = 'save_user.php';
}
function editUser(){
var row = $('#dg').datagrid('getSelected');
if (row){
$('#dlg').dialog('open').dialog('setTitle','Edit User');
$('#fm').form('load',row);
url = 'update_user.php?id='+row.id;
}
}
function saveUser(){
$('#fm').form('submit',{
url: url,
onSubmit: function(){
return $(this).form('validate');
},
success: function(result){
var result = eval('('+result+')');
if (result.errorMsg){
$.messager.show({
title: 'Error',
msg: result.errorMsg
});
} else {
$('#dlg').dialog('close'); // close the dialog
$('#dg').datagrid('reload'); // reload the user data
}
}
});
}
function destroyUser(){
var row = $('#dg').datagrid('getSelected');
if (row){
$.messager.confirm('Confirm','Are you sure you want to destroy this user?',function(r){
if (r){
$.post('destroy_user.php',{id:row.id},function(result){
if (result.success){
$('#dg').datagrid('reload'); // reload the user data
} else {
$.messager.show({ // show error message
title: 'Error',
msg: result.errorMsg
});
}
},'json');
}
});
}
}
#fm{
margin:0;
padding:10px 30px;
}
.ftitle{
font-size:14px;
font-weight:bold;
padding:5px 0;
margin-bottom:10px;
border-bottom:1px solid #ccc;
}
.fitem{
margin-bottom:5px;
}
.fitem label{
display:inline-block;
width:80px;
}
.fitem input{
width:160px;
}
tengo un campo date en my base y ocupo un datebox para ingresar la fecha pero no he podido validarlo ni tampoco y podido hacer que cuando me carge los datos para editar me tome este formato "dd-mm-YYYY" ya que me toma este formato "mm-dd-YYYY" de antemano agradecere cualquier opinion o sugerencia de antemano muchas gracias