jQWidgets Forums
Forum Replies Created
-
Author
-
Hi Peter,
Is it possible to display all the groups in single page itself though the pagination is enabled.
Can the pagination be dynamically disabled when user requests for grouping.Thanks
Hi,
Thanks for the reply.
For example the grid contains total 75 rows and in page one 50 rows are displayed where as in second page 25 rows are displayed.
Now if user groups then can the group be done on all 75 rows?Thanks
Thanks for the reply.
Is there any way to handle with older version with out upgrade. We need to give this as Hot fix..January 2, 2013 at 10:46 am in reply to: Seting Cell Color with value on CellEndEdit event Seting Cell Color with value on CellEndEdit event #13004Hi Peter,
Is there a way where we can highlight the cell color on cell end edit. Since cellsrender can be called when binding or loading the grid, this may not help us.
Thanks
January 2, 2013 at 9:49 am in reply to: Seting Cell Color with value on CellEndEdit event Seting Cell Color with value on CellEndEdit event #13001Hi,
Is there a solution available for above mentioned quesiton.. Please help.
Thanks
November 15, 2012 at 1:32 am in reply to: Grid row Inline Edit – data read issue Grid row Inline Edit – data read issue #11031Hi,
The cell end edit event is being fired when a click happens out side the gird.
I am facing an issue when there is a save button. On cell end edit, I am capturing the modified data and on clicking of save button, the data is being sent to database.When a cell edit happens and on direct click of save button – first button click event is happening and then cellendedit event is being fired.
since button click event is happening first, The modified data of the last cell is not being captured.Please suggest.
Thanks
November 6, 2012 at 8:57 am in reply to: Grid row Inline Edit – data read issue Grid row Inline Edit – data read issue #10574Hi,
I have started using jqwidgets 2.5. Cellendedit event is fired only when enter key is pressed or only when a mouse click happens on the grid area. If a mouse click happens on the area other than grid then the event is not being fired.
I am using cellendedit to capture the edited cell values. This issue is present even for the dropdown list cell in the grid. On selection of a value of dropdown list column the cell end edit event is not fired.
Please suggest.
Thanks
Hi,
Thanks for responding.
The source property is set again, but the call is not being made to controller. Please check below code.
The grid is being loaded with the input as “Pending” on page load. Once the status is changed the grid is being refreshed again on dropdown change event.
InternalGridActions is being called on save and on success of post, LoadInternalGrid() method is called again to set the source and get the udpated data. But this call is not hitting controller and database to fetch the information.$(document).ready(function () {
/*By Default the grid should show the users with pending status*/
LoadInternalGrid(“Pending”);/*on change of status the grid needs to loaded with the data for the given request filter*/
$(‘#ddlRequestStatus’).change(function () {LoadInternalGrid($(‘#ddlRequestStatus’).val());
});});
/*Function to load Internal Users Grid*/
function LoadInternalGrid(input)
{$.ajax({
url: ‘../UserTest/GridInternalUsers/’,
dataType: ‘json’,
data: { status: input },
type: ‘GET’,
contentType: ‘application/json; charset=utf-8’,
success: function (data) {
var ssource = {
datafields: [{ name: ‘UserID’ }, { name: ‘UserName’ }, { name: ‘UserEmail’ }],
localdata: data
}
var dataAdapterforInternalUsers = new $.jqx.dataAdapter(ssource);
$(“#Injqxgrid”).jqxGrid(
{
width: ‘99%’,
height: 206,
source: dataAdapterforInternalUsers,
editable: true,
theme: getTheme(),
enablehover: false,
selectionmode: ‘singlecell’,
filterable: true,
pageable: true,
sortable: true,
//rendergridrows: function () { return dataAdapter.records; },
pageable: true,
columns: [{ text: ‘UserID ‘, dataField: ‘UserID’, editable: false, width: ‘7%’ },
{ text: ‘UserName ‘, dataField: ‘UserName’, editable: false, width: ‘15%’ },
{ text: ‘UserEmail ‘, dataField: ‘UserEmail’, editable: false, width: ‘15%’ }]
});
}
});}
/*function to save*/
function InternalGridActions(action)
{if (action == “Save”)
{var updatedData = JSON.stringify(savedData);
$.ajax({
url: ‘/UserTest/InternalSave’,
type: ‘POST’,
data: updatedData,
contentType: ‘application/json; charset=utf-8’,
success: function (data){LoadInternalGrid($(‘#ddlRequestStatus’).val());
}
});}
Thanks
October 19, 2012 at 9:39 am in reply to: Delete multiple grid records Delete multiple grid records #9766Hi Peter,
Can you please provide the API syntax on how to pass multiple row ids to the delete row method.
Thanks,
UjjwalaThanks Peter.
Thanks for the response. Have implemented manually, just wanted to check if there is any out of box.
-
AuthorPosts