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.227.3
1. // Changed grid.locale-en.js By Natesha
---------------------------------------
Old-->recordtext:" View {0} - {1} of {2}
New-->recordtext:" {0} - {1} of {2}
2.// Changed grid.base.js By Natesha
-----------------------------------
Added in Line Number 808
$("#"+pgid+"_"+ts.p.recordpos,"#"+pgcnt).width("80px");
3. // Changed grid.base.js By Natesha
----------------------------------
Added in Line Number 1288
grid.cDiv.setAttribute("id","jq_grid_head_div");
5.// Changed grid.formedit.js By Natesha
---------------------------------------
Added in Line Number 1200
var del_responce = eval('(' + data.responseText + ')');
if(del_responce.error_code==-1)
{
alert(del_responce.data);
}
Added in Line Number 1264
/*Natesha Starts */ if(del_responce.error_code==3) { ClearMultiGroupCellData(del_responce.data);} //Natesha Ends
6.// Changed grid.formedit.js By Bheeem
-------------------------------------
added at line 6
var BrowserType = BrowserDetect.browser;
var BrowserVersion = BrowserDetect.version;
var td_width='';
if (BrowserType=="Firefox")
td_width='Width:30%;'
else
td_width='Width:40%;'
Added in Line Number 796
.append("<div id='"+pgcnt+"' class='ui-pager-control' role='group'><table cellspacing='0' cellpadding='0' border='0' class='ui-pg-table' style='width:100%;table-layout:fixed;' role='row'><tbody><tr><td id='"+lft+"' style='"+td_width+"' align='left'></td><td id='"+cent+"' align='center' style='white-space:nowrap;'></td><td id='"+rgt+"' align='right'></td></tr></tbody></table></div>");
7.//js/base_file/fg.menu.js Changed By Beemaraj.V
-------------------------------------------------
line Number :302
// Command By Beemaraj.V
container.find('a').click(function(){
menu.chooseItem(this);
return false;
});
// Add By Beemaraj.V
container.find('a').click(function()
{
if($(this).is('.fg-menu-indicator'))
$(this).trigger('mouseover');
else
menu.chooseItem(this);
return false;
});
8.//JQGrid3.5/js/jquery-ui-1.7.2.custom.min
--------------------------------------------
Removed below line
inst.input.val(dateStr)
Added this Line
inst.input.val(dateStr);$(id).focus();
9.// //JQGrid3.5/js/grid.celledit.js Added at 355
if(grid_id == 'table_grid')
selectRowId();
else if(grid_id == 'table_grid1')
GetPopUpelementValue();
10.////JQGrid3.5/js/grid_base Added at 624
// Natesha Starts // To Focus on the first Cell
var tarka_grid_res=eval('(' + req.responseText+ ')');
if( ts.p.cellEdit && tarka_grid_res.records>0 && ( ts.p.id=='table_grid' || ts.p.id=='table_grid1') )//natesh
{
jQuery('#'+ts.p.id).editCell(0,1,false);
} // Natesha Ends
11.//JQGrid3.5/js/grid.celledit.js linie num 333
case 38:
else // To Focus to First cellif they Click UpArrow
{
if(!empty($t.p.colModel[0]['index']))
$("#gs_"+$t.p.colModel[0]['index']).focus();
else
$("#gs_"+$t.p.colModel[1]['index']).focus();
}
case 118:
$('.ui-search-toolbar input:first').focus();
$('#'+grid_id+' tr').removeClass('selected-row ui-state-hover');
$('#'+grid_id+' td').removeClass('edit-cell ui-state-highlight');
break;
11.//JQGrid3.5/js/grid.celledit.js linie num 35
if(empty($t.p.colModel[iCol])) //Problem found that if Only one Element in Popup,It was throwing error, we hae put this cond
iCol = 0;
|