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

Pages: [1]
1
Help for ParamQuery Pro / Re: Filter use simple dropDown
« on: September 09, 2019, 01:05:05 pm »
Thx for your information, now it works really good. So maybe we could migrate when the keyboard accessibility is available.
.

2
Help for ParamQuery Pro / Re: Filter use simple dropDown
« on: September 06, 2019, 04:51:56 pm »
Thx for this example. I tried it with maxCheck: 1 and then "Edit and Run" as result the grid is empty if you select an entry.
The other problem is that we have high requirements for accessibility and the Filter Grid is not accessible by only using keyboard.

3
Help for ParamQuery Pro / Re: Filter use simple dropDown
« on: September 06, 2019, 12:22:29 pm »
Yes we now that but we want and need the simple select lists. We use a remote filtering (oData rest backend) with sometimes millions of entries and >10 columns. In our case it is easier to filter against 1 value then a list of values and have to decide if we do a negativ or positiv filter. Maybe you could show us a easy way to get the simple functionality back.

4
Help for ParamQuery Pro / Filter use simple dropDown
« on: September 05, 2019, 04:11:42 pm »
Hello,

do you see the option to restore the old functionality with the simple drop down as filter, maybe in a newer version. Or is their a way to implement it on our own?
Actual this is a blocker in our migration to 6.x.

Kind regards heinenf.

5
The second solution led to the strange behavior of multiple selected rows but the first one worked perfectly. Thank you

6
Yes sorry I will explain it more clearly.

What we want to achieve is that if the user clicks on the triangle in treegrid the tree will get expanded but it will not select the row. Only expand the tree.

Currently the behavior does both. Expanding the tree and also selecting the row. So in order to make it only expand the tree we want to check that the triangle was clicked and then in beforeRowSelect event we will return false to supress the rowSelect.

To achieve this we want to check the event. That's the code:

beforeRowSelect: function(event, ui) {
let evt = window.event || event;
       if($(evt.target).hasClass("ui-icon-triangle-1-se") || $(evt.target).hasClass("ui-icon-triangle-1-e")) {
          return false;
      }
}

Now the problem is that evt.target is not available when using the provided event. We have to use window.event for this but window.event is not available in our clients browser


7
Help for ParamQuery Pro / pqGrid events only containing little information
« on: February 22, 2019, 08:23:22 am »
Hello,

in the event beforeRowSelect we want to return false when the user clicks on the triangle that opens childelements when the grid is in treemode. However, it seems that we can't get the keyCode events from eventtype pwGrid:beforeRowSelect because all the properties are undefined. It seems that most of the events don't carry these information.

The only way we can think of is to check the code like this: if(event.keyCode ===13) is to use window.event instead of the provided event.

However our client uses Firefox 52 and it does not support window.event...

Any suggestions? (We use pqGrid Version 5.2)

regards,

8
Help for ParamQuery Pro / Make toggle icon tabable/added to taborder
« on: January 14, 2019, 01:55:50 pm »
Hello,

we would like to have the icon for maximizing the grid e.g. collapsible: {toggle: true} tabable so that it can be accessed via keyboard.
What would be the best way to do it?

Regards,

9
Help for ParamQuery Pro / Re: pqGrid Tree: Select a Row with hitting Enter
« on: November 15, 2018, 02:37:32 pm »
Got it now. I added

        if(event.keyCode === 13) {
          return false;
        }

into the beforeTreeExpand event

10
Help for ParamQuery Pro / pqGrid Tree: Select a Row with hitting Enter
« on: November 15, 2018, 02:12:28 pm »
Hello,

we are using a pqGrid with Tree that has only 1 column as a treecomponent. When we select a row this will trigger another grid to show some data. Out of the box it seems that when clicking Enter this will expand the tree but not select the row. We programmatically added a setSelection on beforeCellKeyDown-event to achieve the selection behavior but we are not able to supress the expand behavior on a click of Enter.

It seems that beforeTreeExpand-event happens before the beforeCellKeyDown event and therefore we don't know which event to use in order to achieve the function that a hit on enter will only select the row but not expand it.

Kind regards,
Conditio


Pages: [1]