Reputation: 1040
I'm working on the jqgrid which gets bound dynamically. I have got the required output. But i wrote a big code which affects my performance and its not readable.
I need someone who can look into this and optimize my code simple.
Thanks in advance.
I have reproduced in my working code here
$.each($.parseJSON(columnsData).Table1, function () {
// debugger;
//Push the column name.
colHeader.push(this.Name);
//Check the datatype of the column.
switch (this.Datatype) {
case 'number':
if (this.DefaultValue != null && this.DefaultValue != "") {
// debugger;
colname.push({
name: this.Name, index: this.Name, width: 100, align: 'left', formatter: 'number', sortable: true, editable: false, sorttype: 'int', hidden: JSON.parse(this.IsHidden), editoptions: {
defaultValue: this.DefaultValue
}, editrules: { required: JSON.parse(this.IsRequired) }
});
}
else {
colname.push({
name: this.Name, index: this.Name, width: 100, align: 'left', formatter: 'number', sortable: true, editable: false, sorttype: 'int', hidden: JSON.parse(this.IsHidden), editrules: { required: JSON.parse(this.IsRequired) }
});
}
lastFieldName = this.Name.toString(); //Store the fieldName.
break;
case 'DateTime':
if (this.DefaultValue != null && this.DefaultValue != "") {
//If datetime then enable datepicker in the filter and edit form.
colname.push({
name: this.Name, search: true, index: this.Name, width: 100, stype: "text", editable: true, hidden: JSON.parse(this.IsHidden), searchoptions: {
dataInit: function (el) {
$(el).datepicker({
dateFormat: 'm/d/yy', maxDate: 0, changeMonth: true, changeYear: true, onSelect: function (dateText, inst) {
setTimeout(function () {
$('#TransactionsGrid')[0].triggerToolbar();
}, 50);
}
});
}
}, editoptions: {
dataInit: function (el) {
$(el).datepicker({
dateFormat: 'm/d/yy', maxDate: 0, changeMonth: true, changeYear: true
});
}, defaultValue: this.DefaultValue, readonly: 'readonly'
}, editrules: { required: JSON.parse(this.IsRequired) }
});
}
else {
colname.push({
name: this.Name, search: true, index: this.Name, width: 100, stype: "text", editable: true, hidden: JSON.parse(this.IsHidden), searchoptions: {
dataInit: function (el) {
$(el).datepicker({
dateFormat: 'm/d/yy', maxDate: 0, changeMonth: true, changeYear: true, onSelect: function (dateText, inst) {
setTimeout(function () {
$('#TransactionsGrid')[0].triggerToolbar();
}, 50);
}
});
}
}, editoptions: {
dataInit: function (el) {
$(el).datepicker({
dateFormat: 'm/d/yy', maxDate: 0, changeMonth: true, changeYear: true
});
}
}, editrules: { required: JSON.parse(this.IsRequired) }
});
}
lastFieldName = this.Name.toString();
break;
case 'dropdown':
if (this.DefaultValue != null && this.DefaultValue != "") {
// debugger;
if (this.ValueType == "F") {
colname.push({
name: this.Name, index: this.Name, width: 100, edittype: "select", editable: true, hidden: JSON.parse(this.IsHidden),
//formatter: imageFormatter, unformat: imageUnFormat,
/*(Set tooltip of the gridcell)
cellattr: function (rowId, val, rawObject, cm, rdata) {
if (rawObject[cm.name + "_Title"] == "") {
return 'title="' + rawObject[cm.name] + '"';
}
else
return 'title="' + val + ' (' + rawObject[cm.name + "_Title"] + ')"';
},*/
//IF dropdown then bind the values during edit form.
editoptions: { value: ':Select;' + this.ValueList.slice(0, -1), defaultValue: this.DefaultValue }, editrules: { required: JSON.parse(this.IsRequired) }, stype: 'select'
, searchoptions: { value: ':All;' + this.ValueList.slice(0, -1) }, align: 'left', sortable: true
});
}
else {
colname.push({
name: this.Name, index: this.Name, width: 100, edittype: "select", label: this.ValueId, hidden: JSON.parse(this.IsHidden),
//IF dropdown then bind the values during edit form.
editoptions: { value: ':Select;' + this.ValueList.slice(0, -1), defaultValue: this.DefaultValue }, editrules: { required: JSON.parse(this.IsRequired) }, stype: 'select'
, searchoptions: { value: ':All;' + this.ValueList.slice(0, -1) }, align: 'left', sortable: true
});
}
}
else {
if (this.ValueType == "F") {
colname.push({
name: this.Name, index: this.Name, width: 100, edittype: "select", editable: true, hidden: JSON.parse(this.IsHidden),
//IF dropdown then bind the values during edit form.
editoptions: { value: ':Select;' + this.ValueList.slice(0, -1) }, editrules: { required: JSON.parse(this.IsRequired) }, stype: 'select'
, searchoptions: { value: ':All;' + this.ValueList.slice(0, -1) }, align: 'left', sortable: true
});
}
else {
colname.push({
name: this.Name, index: this.Name, width: 100, edittype: "select", label: this.ValueId, hidden: JSON.parse(this.IsHidden),
//IF dropdown then bind the values during edit form.
editoptions: { value: ':Select;' + this.ValueList.slice(0, -1) }, editrules: { required: JSON.parse(this.IsRequired) }, stype: 'select'
, searchoptions: { value: ':All;' + this.ValueList.slice(0, -1) }, align: 'left', sortable: true
});
}
}
break;
default:
if (this.DefaultValue != null && this.DefaultValue != "") {
colname.push({
name: this.Name, index: this.Name, width: 100, align: 'left', sortable: true, editable: true, hidden: JSON.parse(this.IsHidden), editrules: { required: JSON.parse(this.IsRequired) }
});
}
else {
colname.push({
name: this.Name, index: this.Name, width: 100, align: 'left', sortable: true, editable: true, hidden: JSON.parse(this.IsHidden), editrules: { required: JSON.parse(this.IsRequired) }
});
}
break;
}
});
jQuery("#TransactionsGrid").jqGrid({
data: $.parseJSON(gridData).BuildTransactionsDataTable,
datatype: "local",
hoverrows: false,
colNames: colHeader,
colModel: colname,
id: 'TransactionId',
rowNum: 10,
rownumbers: true,
sortname: '_id',
viewrecords: true,
sortorder: 'desc',
caption: "Transaction Details",
height: '250px',
gridview: true,
ignoreCase: true
});
Since the code is too large to view, i have made the fiddle. Kindly look into that
Updated:
The cases i have to handle in my controller and when used the same in client(this.DataType
) side the code will be a big one.
// Code:
case FieldStyleModel.FieldType.Date:
case FieldStyleModel.FieldType.DropDownCalendar:
case FieldStyleModel.FieldType.DateWithoutDropDown:
case FieldStyleModel.FieldType.DateWithSpin:
drColumnDetails["Datatype"] = "date";
break;
case FieldStyleModel.FieldType.DateTime:
case FieldStyleModel.FieldType.DateTimeWithoutDropDown:
case FieldStyleModel.FieldType.DateTimeWithSpin:
drColumnDetails["Datatype"] = "datetime";
break;
case FieldStyleModel.FieldType.DropDown:
case FieldStyleModel.FieldType.DropDownList:
case FieldStyleModel.FieldType.DropDownValidate:
drColumnDetails["Datatype"] = "dropdown";
break;
case FieldStyleModel.FieldType.URL:
drColumnDetails["Datatype"] = "hyperlink";
break;
case FieldStyleModel.FieldType.IntegerNonNegative:
case FieldStyleModel.FieldType.IntegerNonNegativeWithSpin:
case FieldStyleModel.FieldType.IntegerPositive:
case FieldStyleModel.FieldType.IntegerPositiveWithSpin:
drColumnDetails["Datatype"] = "number";
break;
case FieldStyleModel.FieldType.Integer:
case FieldStyleModel.FieldType.IntegerWithSpin:
drColumnDetails["Datatype"] = "integer";
break;
case FieldStyleModel.FieldType.Time:
case FieldStyleModel.FieldType.TimeWithSpin:
case FieldStyleModel.FieldType.TimeZone:
drColumnDetails["Datatype"] = "Time";
break;
case FieldStyleModel.FieldType.CheckBox:
drColumnDetails["Datatype"] = "checkbox";
break;
default:
drColumnDetails["Datatype"] = "string";
break;
Upvotes: 1
Views: 1855
Reputation: 221997
Small common remarks:
height
can be wither a number like height: 250
or string "auto"
or "100%"
. The value '250px'
is incorrect. My favorit value for height
is "auto"
.id
option of jqGrid (see id: 'TransactionId'
in your code).sortname: '_id'
is suspected. Do you really have _id
property in every items of the input data?$.parseJSON(gridData).BuildTransactionsDataTable
contains only the data should be interpreted as text and not as HTML fragments then I'd recommend you to use autoencode: true
option of jqGrid,If you load many thousand of rows of data in the grid then the trick described in the answer can improve performance of loading of data in the grid. You need just do two steps:
sortname
and sortorder
options of the grid. Sorting of large dataset can take time. No sortname
(or sortname: ""
) means displaying unsorted data. It will improve the performace of initial loading of data.data
option of the grid and set it inside of onInitGrid
callback instead:$("#TransactionsGrid").jqGrid({
datatype: "local",
hoverrows: false,
colNames: colHeader,
colModel: colname,
rowNum: 10,
rownumbers: true,
viewrecords: true,
caption: "Transaction Details",
height: "auto",
gridview: true,
autoencode: true,
ignoreCase: true,
onInitGrid: function () {
// get reference to parameters
var p = $(this).jqGrid("getGridParam");
// set data parameter
p.data = $.parseJSON(gridData).BuildTransactionsDataTable;
}
});
The demo from the answer loads 90000 rows of data and the loading takes about 52-130 ms depend on the web browser which I use. It's a good time in my opinion. Without the trick (see the demo) the loading of data takes about 1600-11000 ms. If one add sorting of the data (see one more demo) then I get the time between 2100-29000 ms.
UPDATED: First of all you should remove from JavaScript code all unneeded things.
index
properties must be the same as the value of name
properties. If you remove index
properties jqGrid internally will create correct index
values. So I strictly recommend all don't specify index
properties in colModel
.colModel
items in the cmTemplate
. For example if you use width: 100
in all items of colModel
you should remove the property and add jqGrid option cmTemplate: { width: 100 }
instead placing the property width
with the same value inside of every item of colModel
.colModel
in the documentation. You will find that placing of align: 'left'
, editable: false
, sortable: true
, stype: "text"
and some other properties are unneeded. I recommend you remove the properties.key: true
property in colModel
2) you don't need to display the id to the user. In the case you don't need create any hidden column with the data. Instead of that you can just add localReader: { id: "TransactionId" }
option to inform jqGrid where to get the rowids. The usage of native rowids will be especially practical for editing. The id
parameter with rowid will be send by jqGrid to the server during editing. I recommend you to use prmNames: { id: "TransactionId" }
additionally. In the case jqGrid with name the property with rowid as "TransactionId"
instead of default name "id"
during editing.colNames
with the values of name
property of colModel
. You don't need do this. I recommend you don't specify colNames
option at all in the case. In the case jqGrid will fill colNames
internally with the values of label
property of colModel
or the value of name
property if label
not exist.null
, ""
, " "
etc) values in all items of data. It makes the user easier to read the grid and improves the performance of the grid. Displaying of many columns is much more expensive for the web browser as displaying of many rows. So hiding unneeded columns can improve performance of the grid.name
property. Your current code contains columns having name: "Employee Name"
or name: "Avg.Num Of Steps Occur"
. It's important to understand that name
property will be used to build id
attributes of some internal jqGrid elements and will be used in selectors. jQuery selectors should don't contains any meta-charackters (!"#$%&'()*+,./:;<=>?@[\]^``{|}~
). Additionally id
of HTML 4 for example can't contains spaces. See here. I strictly recommend you to use only letters ([A-Za-z]), digits ([0-9]), hyphens ("-") or underscores ("_") in the name
. The first symbol should be a letter. If you don't follow the rule you can have many problems (problems in sorting, searching etc.). Probably you should set label: this.Name
property and used some rules to build correct name
value based on this.Name
. You should include the property with original this.Name
property during editing, so that the result of editing will be sent the same as before fixing of name
property.As the result I modified your code to the following: http://jsfiddle.net/z1ujyh02/6/. The most important part of the code I included below:
var columnsData = "...", gridData = "...";
var mydata = $.parseJSON(gridData).BuildTransactionsDataTable, existingProperties = {},
numberTemplate = {formatter: 'number', sorttype: 'int'},
dateTemplate = {
editable: true,
searchoptions: {
dataInit: function (el) {
var self = this;
$(el).datepicker({
dateFormat: 'm/d/yy', maxDate: 0, changeMonth: true, changeYear: true,
onSelect: function (dateText, inst) {
setTimeout(function () {
self.triggerToolbar();
}, 50);
}
});
}
},
editoptions: {
dataInit: function (el) {
$(el).datepicker({
dateFormat: 'm/d/yy', maxDate: 0, changeMonth: true, changeYear: true
});
},
readonly: 'readonly'
}
}
dropdownTemplate = {
edittype: "select",
editable: true,
stype: "select"
};
$.each(mydata, function () {
var p;
for (p in this) {
if (this.hasOwnProperty(p) && this[p] !== null && (typeof this[p] === "string" && $.trim(this[p]) !== "")) {
existingProperties[p] = true;
}
}
});
var colname = [{ name: "TransactionId", sorttype: "int", key: true }];
//Loop into the column values collection and push into the array.
$.each($.parseJSON(columnsData).Table1, function () {
//Check the datatype of the column.
var cm = {
name: this.Name,
hidden: JSON.parse(this.IsHidden) || !existingProperties.hasOwnProperty(this.Name),
editoptions: this.DefaultValue != null && this.DefaultValue != "" ? { defaultValue: this.DefaultValue } : {},
editrules: { required: JSON.parse(this.IsRequired) }
};
switch (this.Datatype) {
case 'number':
$.extend(true, cm, { template: numberTemplate });
lastFieldName = cm.name; //Store the fieldName.
break;
case 'DateTime':
$.extend(true, cm, { template: dateTemplate });
lastFieldName = cm.name;
break;
case 'dropdown':
var values = this.ValueList.slice(0, -1);
$.extend(true, cm, {
template: dropdownTemplate,
editoptions: { value: ":Select;" + values, defaultValue: this.DefaultValue },
searchoptions: { value: ":All;" + values }
},
this.ValueType == "F" ? { label: this.ValueId } : {} );
break;
default:
break;
}
if (cm)
colname.push(cm);
});
//Binding grid Starts.
$("#TransactionsGrid").jqGrid({
//data: mydata,
datatype: "local",
hoverrows: false,
colModel: colname,
rowNum: 10,
rownumbers: true,
pager: "#TransactionsPager",
localReader: { id: "TransactionId" },
prmNames: { id: "TransactionId" },
viewrecords: true,
caption: "Transaction Details",
height: "auto",
gridview: true,
autoencode: true,
ignoreCase: true,
cmTemplate: { width: 100 },
onInitGrid: function () {
// get reference to parameters
var p = $(this).jqGrid("getGridParam");
// set data parameter
p.data = mydata;
}
});
Upvotes: 1