0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.144.224.105


Current Path : /proc/thread-self/root/var/www/html/mcu/js/popups/
Upload File :
Current File : //proc/thread-self/root/var/www/html/mcu/js/popups/desDetailsPopup.js

function keyboardDesPopup(evt,id,Colcode)
{
 var kC  = (evt.which) ? evt.which : evt.keyCode;
 	if(kC==112) //F1 Key code
	{
		openDesDetailsPopup();
		return false;
	} 
}  
 
 
function openDesDetailsPopup()
{	
	$('#dialog').dialog('open');	
	$("#dialog").data("height.dialog", 222);
	$(".ui-dialog").css({width:460});
	$('#ui-dialog-title-dialog').html("College Details"); 
	
$main="<table id='table_grid3' class='scroll' ondblclick='SelectDesCode();'></table>";
$main+="<div  id='sub_grid_div3' class='scroll' style='text-align:center;'></div>";
document.getElementById('dialog').innerHTML=$main;

var college =jQuery("#table_grid3").jqGrid(
	{	 
		 url:$host_url+'openDesDetailsPopup&search=',
		 datatype: "json",	 
		 colNames:['Code','Description'],	 
		 colModel:[{name:'FDEGNCODE',index:'FDEGNCODE', width:115 },
				   {name:'FDEGNDESC',index:'FDEGNDESC', width:115 }],	 
		 rowNum:10,
		 rowList:[5,10,15,20,25,30],
		 imgpath:$image_path,
		 pager: jQuery('#sub_grid_div3'),
		 sortname: 'id',
		 height:'119',
		 width:'457',
		 viewrecords: true,
		 sortorder: 'desc',
		 multiselect: false,
		 cellEdit: true,	
		 addCaption: "Add Recordddd" 
	}		
	
 	).navGrid('#sub_grid_div3',{edit:false,add:false,del:true,search:true},{},{},{},{multipleSearch:true}).
	  navButtonAdd('#sub_grid_div3',{caption:"Search",
	  buttonicon :'ui-icon-search', onClickButton:function(){college[0].toggleToolbar() } }). 
	  navButtonAdd('#sub_grid_div3',{caption:"Select", onClickButton:function()
		{
			SelectDesCode();
		}
		}); 
		
		college.filterToolbar();					 		
	} 	
	
function SelectDesCode()
{
var id=jQuery("#table_grid3").getGridParam('selrow'); 
	if( id!=null  )   
	{  
		$.ajax({
	       type: "POST",
			async:false,	       
	       url: $host_url+"SelectDesCode",
		   data: "FDEGNCODE="+id,
 	       success: SelectDesCodeResponse
	    });
		$('#dialog').dialog("close"); 	
	} 
	else
	{ 
		alert("Please select row");  
	} 
	return;
}

function  SelectDesCodeResponse($responce)
{
 $responce = eval('(' + $responce + ')'); 
 
	if($responce.error_code == 0)
	{
		 document.getElementById($g_focus_element).value = $responce.data['FDEGNCODE'];
		 

	}
}