|
$("#AgencyReviewQuestions").ejGrid({
dataSource: ej.DataManager(window.gridData).executeLocal(ej.Query().take(6)),
height: 400, // set a fixed height
allowSorting: false,
allowTextWrap: true,
columns: [
{ template: "#jobquestionTemplate",width:150 },
{ template: "#editingTemplate", textAlign: "center",width:30 }
]
});
|
|
$(function () {
$("#AgencyReviewQuestions").ejGrid({
dataSource: ej.DataManager(window.gridData).executeLocal(ej.Query().take(6)),
allowSorting: false,
allowTextWrap: true,
allowScrolling:true,
scrollSettings:{height:"100%"},
columns: [
{ template: "#jobquestionTemplate",width:150 },
{ template: "#editingTemplate", textAlign: "center",width:30 }
]
});
}); |
|
$("#AgencyReviewQuestions").ejGrid({
dataSource: ej.DataManager(window.gridData).executeLocal(ej.Query().take(6)),
allowSorting: false,
allowTextWrap: true,
isResponsive: true,
minWidth: 900,
allowScrolling:true,
scrollSettings:{height:"100%"},
columns: [
{ template: "#jobquestionTemplate",width:150 },
{ template: "#editingTemplate", textAlign: "center",width:30 }
]
});
|