| Software: Apache/2.4.18 (Ubuntu). PHP/7.0.33-0ubuntu0.16.04.16 uname -a: Linux digifus 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/almazenServer/assets/grocery_crud/themes/flexigrid/js/   drwxr-xr-x | |
| Viewing file: Select action/file-type: $(function(){
		$('.ptogtitle').click(function(){
			if($(this).hasClass('vsble'))
			{
				$(this).removeClass('vsble');
				$('#main-table-box #crudForm').slideDown("slow");
			}
			else
			{
				$(this).addClass('vsble');
				$('#main-table-box #crudForm').slideUp("slow");
			}
		});
		var save_and_close = false;
		$('#save-and-go-back-button').click(function(){
			save_and_close = true;
			$('#crudForm').trigger('submit');
		});
		$('#crudForm').submit(function(){
			var my_crud_form = $(this);
			$(this).ajaxSubmit({
				url: validation_url,
				dataType: 'json',
				cache: 'false',
				beforeSend: function(){
					$("#FormLoading").show();
				},
				success: function(data){
					$("#FormLoading").hide();
					if(data.success)
					{
						$('#crudForm').ajaxSubmit({
							dataType: 'text',
							cache: 'false',
							beforeSend: function(){
								$("#FormLoading").show();
							},
							success: function(result){
								$("#FormLoading").fadeOut("slow");
								data = $.parseJSON( result );
								if(data.success)
								{
									var data_unique_hash = my_crud_form.closest(".flexigrid").attr("data-unique-hash");
									$('.flexigrid[data-unique-hash='+data_unique_hash+']').find('.ajax_refresh_and_loading').trigger('click');
									if(save_and_close)
									{
										if ($('#save-and-go-back-button').closest('.ui-dialog').length === 0) {
											window.location = data.success_list_url;
										} else {
											$(".ui-dialog-content").dialog("close");
											success_message(data.success_message);
										}
										return true;
									}
									$('.field_error').each(function(){
										$(this).removeClass('field_error');
									});
									clearForm();
									form_success_message(data.success_message);
								}
								else
								{
									alert( message_insert_error );
								}
							},
							error: function(){
								alert( message_insert_error );
								$("#FormLoading").hide();
							}
						});
					}
					else
					{
						$('.field_error').removeClass('field_error');
						form_error_message(data.error_message);
						$.each(data.error_fields, function(index,value){
							$('input[name='+index+']').addClass('field_error');
						});
					}
				},
				error: function(){
					error_message (message_insert_error);
					$("#FormLoading").hide();
				}
			});
			return false;
		});
		if( $('#cancel-button').closest('.ui-dialog').length === 0 ) {
			$('#cancel-button').click(function(){
				if( confirm( message_alert_add_form ) )
				{
					window.location = list_url;
				}
				return false;
			});
		}
	});
	function clearForm()
	{
		$('#crudForm').find(':input').each(function() {
	        switch(this.type) {
	            case 'password':
	            case 'select-multiple':
	            case 'select-one':
	            case 'text':
	            case 'textarea':
	                $(this).val('');
	                break;
	            case 'checkbox':
	            case 'radio':
	                this.checked = false;
	        }
	    });
		/* Clear upload inputs  */
		$('.open-file,.gc-file-upload,.hidden-upload-input').each(function(){
			$(this).val('');
		});
		$('.upload-success-url').hide();
		$('.fileinput-button').fadeIn("normal");
		/* -------------------- */
		$('.remove-all').each(function(){
			$(this).trigger('click');
		});
		$('.chosen-multiple-select, .chosen-select, .ajax-chosen-select').each(function(){
			$(this).trigger("liszt:updated");
		});
	} | 
| :: Command execute :: | |
| --[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0053 ]-- |