Forum Replies Created
-
Author
-
June 2, 2016 at 11:44 am in reply to: Custom Aggregates not update Custom Aggregates not update #84838
and it can be updated when i refresh jqxgrid
March 14, 2016 at 6:08 am in reply to: jqxGrid Server exporting using JSP jqxGrid Server exporting using JSP #82404I use server filtering and sorting. How i can use it there.
March 9, 2016 at 12:52 pm in reply to: How to get filtering url with data? How to get filtering url with data? #82271Wants like this:
employeesfiltering.jsp?e_nameoperator=and&filtervalue0=a&filtercondition0=CONTAINS&filteroperator0=1&filterdatafield0=e_name&e_surnameoperator=and&filtervalue1=a&filtercondition1=CONTAINS&filteroperator1=1&filterdatafield1=e_surname&e_idoperator=and&filtervalue2=1&filtercondition2=EQUAL&filteroperator2=1&filterdatafield2=e_id&filterscount=3&groupscount=0&sortdatafield=e_surname&sortorder=asc&pagenum=0&pagesize=5&recordstartindex=0&recordendindex=5&_=1457527867609March 9, 2016 at 8:23 am in reply to: How to get filtering url with data? How to get filtering url with data? #82255i want to alert url with filtering, sorting and paging parameteres when this events happen,
var url=’employeesfiltering.jsp’;
var source = {
datatype: “json”,
datafields: [{
name: ‘e_id’,
type: ‘int’
}, {
name: ‘e_name’,
type: ‘string’
}, {
name: ‘e_surname’,
type: ‘string’
}, {
name: ‘e_birth’,
type: ‘date’
}],
cache: false,
url: url,
filter: function() {
$(“#jqxgrid”).jqxGrid(‘updatebounddata’, ‘filter’);
},
sort: function() {
$(“#jqxgrid”).jqxGrid(‘updatebounddata’, ‘sort’);
},
beforeprocessing: function(data) {
if (data !== null && data.length > 0) {
source.totalrecords = data[0].totalRecords;
}
}};
var dataadapter = new $.jqx.dataAdapter(source, {downloadComplete: function(data, status, xhr) {
if (!source.totalRecords) {
source.totalRecords = data.length;
}
},
loadError: function(xhr, status, error) {
throw new Error(error);
}
});
// initialize jqxGrid
$(“#jqxgrid”).jqxGrid({
width: 550,
source: dataadapter,
filterable: true,
showfilterrow: true,
sortable: true,
autoheight: true,
pageable: true,
pagesize: 5,
pagesizeoptions: [‘3’, ‘5’, ‘7’],
virtualmode: true,
rendergridrows: function(obj) {
return obj.data;
},
columns: [{
text: ‘e_id’,
datafield: ‘e_id’}, {
text: ‘e_name’,
datafield: ‘e_name’
}, {
text: ‘e_surname’,
datafield: ‘e_surname’
}, {
text: ‘e_birth’,
datafield: ‘e_birth’,
cellsformat: ‘dd.MM.yyyy’,
align: ‘right’,
cellsalign: ‘right’ ,
filtertype: ‘range’
}]
});});
February 8, 2016 at 12:20 pm in reply to: jqxcombobox doesn`t select item jqxcombobox doesn`t select item #81243How to use displayMember item select?
I need export. It doesn`t export
But this code doesn`t export and I want delete <row> word. Please help
June 5, 2014 at 10:13 am in reply to: Problem export from jqxgrid Problem export from jqxgrid #55400How can i do this?
link please
May 2, 2014 at 10:30 am in reply to: Jqxgrid doesn`t support much rows Jqxgrid doesn`t support much rows #53878I create json response in java.How must be json structure?
May 2, 2014 at 10:00 am in reply to: Jqxgrid doesn`t support much rows Jqxgrid doesn`t support much rows #53877How must be json response?
May 2, 2014 at 9:05 am in reply to: Jqxgrid doesn`t support much rows Jqxgrid doesn`t support much rows #53873give example with json
May 2, 2014 at 9:04 am in reply to: Jqxgrid doesn`t support much rows Jqxgrid doesn`t support much rows #53872May i not use paging?
May 2, 2014 at 8:19 am in reply to: Jqxgrid doesn`t support much rows Jqxgrid doesn`t support much rows #53870But it doesn`t work too.
April 4, 2014 at 6:18 pm in reply to: How many rows support jqxgrid? How many rows support jqxgrid? #52576Please write code for this with json data
-
AuthorPosts