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 - Hari

Pages: [1]
1
ParamQuery Pro Evaluation Support / Re: Key Navigation Slow
« on: August 02, 2017, 10:09:46 am »
Thank you for response.

There is no code available in selectChange and infact not using selectChange event in our code

I will prepare a jsfiddle.



2
ParamQuery Pro Evaluation Support / Re: Key Navigation Slow
« on: July 27, 2017, 01:12:09 pm »
Hi,
Could you please update your suggestion on this issue.

Would be really helpful for us to proceed.

Thank you

3
ParamQuery Pro Evaluation Support / Re: Key Navigation Slow
« on: July 19, 2017, 05:06:07 pm »
Hi,
Thanks for your reply and sorry for late responose.

I did try to proivde a demo. But due to large source, im not able to do it.

I found the exact place where the issue is happening.

If I use selection model as null, then i dont find any delay during Key navigation (from Left to right using Key navigation Key)
selectionModel:{type: null}

If I want enable the drag functionality in Cell as below
selectionModel:{type: 'cell', cball: true},

Then, during key navigation, all call back which is configured in cell are triggered for each cell. due to this there is a delay in IE.


Sample Cell level validation

{ title: function(ui){
      return doTranslateHeader("load.N2DNA.SS_HEAD_050");
      }, minWidth: 50, dataType: "string",cls:"optionalHdrBkgrnd",labelIndx: "load.N2DNA.LI_HEAD_199", align: "center", dataIndx: "time",render: function(ui){return colonCellEdit(ui);},editable: function(ui){
   return CrudService.editableCheck(ui);
   },filter: {
   type: 'textbox',
   condition: 'contain',
   listeners: ['keyup']
   },editor: { type:'textbox', attr:'maxlength =4',init:function(ui){ return keyRestrictService.keyRestrict(ui,'^[0-9 ]+$')}}}

Note :
1. The key navigation is done after grid prepared with Data (Server side pagination and 100+ Columns)
2. By Default, the grid is not having editable cells (Made as non editable)
3. Cell will be made editable during external event (By clicking Edit button which is available in Screen)
4. Render call back will have code for data changes based on conditions and color changes at runtime.


Please provide me suggestion on this.

4
ParamQuery Pro Evaluation Support / Key Navigation Slow
« on: July 12, 2017, 08:40:15 am »
Hi,

Thank you for your support.

We have implemented a Grid with Add, Modify, Copy, Delete events and cell color changes dynamically based on events.

After including all mentioned above details, key navigation became slow in IE when i try to navigate through navigation arrow key.

Please let me know if you have any suggestion for this issue.


5
Dear Team,

Thank you for your support

We are trying to restrict the user to type/copy the characters inside grid during edit.

Key restriction call back have been placed in init method of editor and working fine for all different scenarios.

But, in case of double byte character like Japanese character, not able to restrict even when use number only regex.

After my investigation, i understood that, the key-press  event is not triggered when i press Japanese characters.

I tried, change() and beforeValidate() method also.

Please suggest me to fix this issue. Thank you




Pages: [1]