jQWidgets Forums

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • in reply to: Grouping the rows Grouping the rows #20625

    himaja
    Member

    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

    in reply to: Grouping the rows Grouping the rows #20611

    himaja
    Member

    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

    in reply to: Grid loading image issue Grid loading image issue #17565

    himaja
    Member

    Thanks for the reply.
    Is there any way to handle with older version with out upgrade. We need to give this as Hot fix..


    himaja
    Member

    Hi 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


    himaja
    Member

    Hi,

    Is there a solution available for above mentioned quesiton.. Please help.

    Thanks


    himaja
    Member

    Hi,

    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


    himaja
    Member

    Hi,

    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

    in reply to: Refresh Grid Data Refresh Grid Data #10531

    himaja
    Member

    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

    in reply to: Delete multiple grid records Delete multiple grid records #9766

    himaja
    Member

    Hi Peter,

    Can you please provide the API syntax on how to pass multiple row ids to the delete row method.

    Thanks,
    Ujjwala

    in reply to: Grid Reload Grid Reload #9573

    himaja
    Member

    Thanks Peter.

    in reply to: Edited records list Edited records list #8238

    himaja
    Member

    Thanks for the response. Have implemented manually, just wanted to check if there is any out of box.

Viewing 11 posts - 1 through 11 (of 11 total)