				dataSource = new kendo.data.DataSource({
					transport : {
						read : {
							url : "data/products/products.php"
						},/*
						 update : {
						 url : crudServiceBaseUrl + "/Products/Update",
						 dataType : "jsonp"
						 },
						 destroy : {
						 url : crudServiceBaseUrl + "/Products/Destroy",
						 dataType : "jsonp"
						 },
						 create : {
						 url : crudServiceBaseUrl + "/Products/Create",
						 dataType : "jsonp"
						 },*/
						parameterMap : function(options, operation) {
							if (operation !== "read" && options.models) {
								return {
									models : kendo.stringify(options.models)
								};
							}
						}
					},
					batch : true,
					pageSize : 10,
					schema : {
						model : {
							id : "codigo",
							fields : {
								codigo : {
									editable : false,
									nullable : true
								},
								referencia : {
									validation : {
										required : true
									}
								},
								marca : {
									type : "string",
									validation : {
										required : true

									}
								}
							}
						}
					}
				});
