Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jeeva

Pages: [1] 2
1
Help for ParamQuery Pro / Re: Pagination column number in 2nd Page
« on: September 07, 2017, 06:02:30 pm »
Dear Support,

1.In 2nd page index starts from 11 - 20
2.When I try to add 5 new records its changing from 16 - 30.

Expected result - 11-25 not 16 -30.
In 1st page its working fine whatever records get added.

2
Help for ParamQuery Pro / Column number for grid
« on: September 06, 2017, 10:51:01 am »
Dear Support,

Like row numbercell,I need to do column number.Any help please.

3
Dear Support,

Its working fine. Thank you so much. Pagination dropdown, next and previous. How to fix enter text box in pagination and refresh button action for the same.

Thanks

4
Help for ParamQuery Pro / Re: Header Fluctuation
« on: September 05, 2017, 11:13:24 am »
Thank you for your support. Its working fine other than IE (IE 11.0) browser. I am looking for IE Fix. Any help please.


5
Help for ParamQuery Pro / Re: Pagination column number in 2nd Page
« on: September 01, 2017, 12:41:12 pm »
Dear support,

1.Page current pagination 50
2.We are trying to add 50 new rows in same page.
3.After 50 records its trying to accommodate in 2nd page,We can able to see the records in 2nd page if its local pagination.
4.When comes to server side pagination its not possible. So when we add new records we are trying to change the pagination dynamically based on the added row count using the below code.
for (var i = 0, len = gridData.length; i < len; i++) {
                                         var rowData = gridData;
                                         if (rowData.ck) {
                                                indexPos = (curPage - 1)* rpp + i;
                                                checked.push(indexPos);
                                         }
                                  }
                                  var newRpp = obj.grid.option("pageModel.rPP");
                       
                       if((gridData.length +checked.length) > newRpp){
                              obj.grid.option("pageModel.rPP",(parseInt(newRpp)+checked.length));
                              rppChanged = true;
                              obj.grid.refreshView();
                       }
Expectation : Need to stay all the newly added records in same page with proper number cell count.

6
Help for ParamQuery Pro / Re: Grid - Responsive
« on: August 31, 2017, 03:15:12 pm »
Dear Suport,

I am having 200 + columns in my grid.So for clear visibility,I will zoom out the screen width getting minize and can able to see all the columns.Expecting to see the same height of the grid,but height also getting reduced.Please refer my below screen shots


7
Dear Support,

I have tried to enter the space as data in tab mode but its jumping to next set off record.(If I am in 1st row tried to edit the column in tab mode and data as space its jumping to 20th record).

How can I overcome this option.Any help please.

thanks
Jeeva

8
Help for ParamQuery Grid (free version) / Filter - Need Max length
« on: July 18, 2017, 06:13:24 pm »
Dear Support,

I need to fix filter column length based column condition.Any help.

thanks
jeeva

9
Dear Support,

I am unable to type the following keys on tab mode.

{}[]\|"':;?/>.<,

but can able to enter when click and enable the text field.Any help please.

thanks
Jeeva

10
Dear Support,

In Header section,I have customization like attached image.

I am using hwrap:false and Wrap:False.Anyway I am getting header flexuation during horizontal scrolling.Any help please.

thanks
jeeva

11
Dear support,

when clicking last visible column in grid in IE -11 - Grid is blinking.Can you please help me to fix it.

thanks
jeeva

12
Help for ParamQuery Grid (free version) / Pagination Dropdown support
« on: July 04, 2017, 05:26:04 pm »
Dear support,

If grid have any action Are you sure you want to close? action in In normal pagination its working fine.

$('.ui-icon-seek-next,.ui-icon-seek-end,.ui-icon-seek-prev,.ui-icon-seek-first,.pq-page-placeholder select.ui-corner-all').off('click').on('click',function(event){
            var isConfirmed = true;
            isConfirmed = UrlService.checkOperationsConfirmed(dataJSONObj);
            if (isConfirmed === false){
               var pagerChange = $window.confirm($translate.instant('load.ALL.Err078_EditFieldValidation'));
               if(pagerChange == true){
                  obj.grid.option("pageModel.rPP",rpp);
               }
               return pagerChange;
            }
            $(this).off('click');
         });

when tried to integrate in grid dropdown,getting alert but when cancel action not staying in grid,Called service immediately.
$(document.body).on('change','select.ui-corner-all',function(){
               var isConfirmed = true;
            isConfirmed = UrlService.checkOperationsConfirmed(dataJSONObj);
            if (isConfirmed === false){
               var pagerChange = $window.confirm($translate.instant('load.ALL.Err078_EditFieldValidation'));
               if(pagerChange == true){
                  rpp = $(this).val();
                  //break;
               }
               return pagerChange;
            }
            $(this).off('change');
               
         });

Any API or method to prevent pagination drop down action when its return false ?

thanks
jeeva

13
Help for ParamQuery Grid (free version) / Grid Dynamic height
« on: July 04, 2017, 11:58:01 am »
Dear Support,

I have 200 column grid.When zoom-In grid width and height got reduced.I want to keep up grid height as by default 650 in all.Can you please help me.


thanks
jeeva

14
Dear Support,

I am using remote pagination.
pageModel: { type:'remote',rPP: 50,rPPOptions:[50,100,200,300,500]},

when I am in last page and trying to change records per page drop down as 500.Its Sending   pq_curpage=4&pq_rpp=500&_=1496820976665"

Its returning no data found.but its having 300 records

pq_curpage=4 should be 1, then only can get all the data in grid.Can you please help me to fix this.

thanks
jeeva


15
Dear Support,

I am using remote pagination and (pageModel: { type:'remote'}).
In Grid have multiple add row option based on row selection.

Issue:

1.Page 1 have default 50 records from server call.
2.Try to add 5 new rows.
3.When try to add new 5 rows,server data of 5 records moved to next page.
4. Requirement is the server data of 50 + newly added 5 rows or data should stay in same page. Any help please.
5.When add rows I have tried to change the pagination dynamically as below.But not works.
obj.pageModel.type = "local";
obj.pageModel.rPP = "100";

its changing the data ,but not reflecting in grid.

thanks
jeeva


Pages: [1] 2