jQWidgets Forums
Forum Replies Created
-
Author
-
November 8, 2012 at 7:53 am in reply to: Event or Method after Rows are populated Event or Method after Rows are populated #10657
$(document).ready(function () {
var theme = getTheme();
$(“#jqxgrid”).jqxGrid(
{
width: 670,
theme: theme,
filterable: true,
sortable: true,
autoshowfiltericon: true,
});var addfilter = function () {
var filtergroup = new $.jqx.filter();var filter_or_operator = 1;
var filtervalue = ‘Beate’;
var filtercondition = ‘contains’;
var filter1 = filtergroup.createfilter(‘stringfilter’, filtervalue, filtercondition);filtervalue = ‘Andrew’;
filtercondition = ‘starts_with’;
var filter2 = filtergroup.createfilter(‘stringfilter’, filtervalue, filtercondition);filtergroup.addfilter(filter_or_operator, filter1);
filtergroup.addfilter(filter_or_operator, filter2);
// add the filters.
$(“#jqxgrid”).jqxGrid(‘addfilter’, ‘firstname’, filtergroup);
// apply the filters.
$(“#jqxgrid”).jqxGrid(‘applyfilters’);
}$(“#generate”).click(function(event){
var data = generatedata(500);
var source =
{
localdata: data,
datatype: “array”
};
$(“#jqxgrid”).jqxGrid(
{
width: 670,
source: source,
theme: theme,
filterable: true,
sortable: true,
ready: function () {
addfilter();
},
autoshowfiltericon: true,
columns: [
{ text: ‘First Name’, datafield: ‘firstname’, width: 90 },
{ text: ‘Last Name’, datafield: ‘lastname’, width: 90 },
{ text: ‘Product’, datafield: ‘productname’, width: 170 },
{ text: ‘Order Date’, datafield: ‘date’, width: 160, cellsformat: ‘dd-MMMM-yyyy’ },
{ text: ‘Quantity’, datafield: ‘quantity’, width: 80, cellsalign: ‘right’ },
{ text: ‘Unit Price’, datafield: ‘price’, cellsalign: ‘right’, cellsformat: ‘c2’ }
]
});
});
});Please look at the above example. I want to apply filter after the row is populated.
Regards,
AravindSeptember 27, 2012 at 11:03 am in reply to: Hide sort option in the filter box Hide sort option in the filter box #8591Yeah, I don’t want the option in the filter box but I need sorting only on click of grid header.
Regards,
AravindSeptember 25, 2012 at 10:35 am in reply to: Grid Column – Custom HTML elements Grid Column – Custom HTML elements #8428Yeah, I checked that too, it is inline editing.
It happens in double click. But, I need that by default.
can I able to display the dropdown list inside the grid control. Is there a way?
Regards,
AravindSeptember 25, 2012 at 9:43 am in reply to: Grid Column – Custom HTML elements Grid Column – Custom HTML elements #8420Thanks for the response, I can able to create the images now.
What is the exact way to bind a dropdown list in the grid cell? I was looking at the below link,
http://stackoverflow.com/questions/11408519/database-binding-of-jqwidget-dropdownlist-in-grid-cell
Is this proper way to implement? I tried, it is not working.
Regards,
AravindSeptember 17, 2012 at 5:56 am in reply to: Clarification in JSON Foramt Clarification in JSON Foramt #8041Thanks a lot. It is working perfect.
Regards,
AravindSeptember 14, 2012 at 12:29 pm in reply to: Problem while using selectionmode and editmode together Problem while using selectionmode and editmode together #7957Yeahh.. I think it has to be changed, this seems like a disadvantage. Apologize, if I’m wrong.
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/masterdetails.htm?classic
This is an awesome example to display the master and salve details. When I include the editable here, the behavior changes i.e. the slave list and updating the text in cell, happens at the same time (single click).
Regards,
AravindSeptember 14, 2012 at 11:56 am in reply to: Height problem in docking Height problem in docking #7955Thank you…
Regards,
AravindSeptember 13, 2012 at 2:19 pm in reply to: Date column in grid show as number Date column in grid show as number #7902Perfect. This is great..
I was working in version 2.4.1 and the demo is having 2.4.2.
And missed out the ‘type’ for datafields.
Thanks a lot for helping me out.
Regards,
AravindPerfect. This is great..
I was working in version 2.4.1 and the demo is having 2.4.2.
And missed out the ‘type’ for datafields.
Thanks a lot for helping me out.
Regards,
AravindSeptember 13, 2012 at 11:09 am in reply to: Date column in grid show as number Date column in grid show as number #7884Hi Peter,
I am using version 2.4.1 and still facing this problem. Is this resolved?
Regards,
AravindSeptember 13, 2012 at 9:24 am in reply to: Problem while using selectionmode and editmode together Problem while using selectionmode and editmode together #7879Thanks a lot for the response.
Regards,
AravindSeptember 13, 2012 at 6:32 am in reply to: Problem while using selectionmode and editmode together Problem while using selectionmode and editmode together #7857Thanks for the quick response.
so the selection mode is for the cells when editable is true.
Is it possible to achieve, what I’m expecting?
* When I hover on a row or cell, it should highlight the whole row.
* When I single click on a row or cell, the whole row should be marked as selected.
* When I double click on a cell, it turns to editable textbox or dropdown.Please correct me, if I’m wrong.
Thanks & Regards,
Aravind -
AuthorPosts