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

Pages: [1]
1
Perfect ! :)

Thanks

2
Hi,

Look at the attachement.
menuIcon : false just hide icon in the column header.

3
I can't upload my image..
There is always an error while the size is 14Ko...

To explain in writing, I have disabled the filter in the header of my column.
On the other hand, in the slot provided for the filter display (menuFilter), I can't desactivate the icon only for this column .. (This is a checkbox column where I don't want to filter on it)

4
Hi,

How can i disable/remove menuIcon from the menuFilter of a specific column ? (look at the attachement)

Thanks

5
Help for ParamQuery Pro / Re: Filter range options (V 5.3.0)
« on: November 02, 2018, 01:25:21 pm »
To be more specific, my question is:
How, in the filter field, display the render rather than the value.
In my example, for a 'range' filter I get the render at the moment of selection, except that in the filter field, it is not the render that is displayed, but the value. (For example: 'validated' instead of 'Validé')

6
Help for ParamQuery Pro / Re: Filter range options (V 5.3.0)
« on: October 31, 2018, 06:43:07 pm »
Thanks.
It works fine !

Now, is there a way to display, in the filter input, the rendering rather than the "true" value?


7
Help for ParamQuery Pro / Re: Filter range options (V 5.3.0)
« on: October 30, 2018, 07:49:50 pm »
I feel that it takes the base value and not the value after the render.
My need is to be able to keep the base value (to be able to make the modifications), but to filter on the values after render.

8
Help for ParamQuery Pro / Re: Filter range options (V 5.3.0)
« on: October 30, 2018, 06:57:04 pm »
Sorry for this loooooong wait: /
I can't do a JSFiddle, too expensive in time.
Here is the complete statement from my column:

Code: [Select]
{
            dataIndx: 'action_plan_check_status', title: $.i18n.t("nucleys_elabel:general.nucleys_table_action_plan_check_status"), minWidth: '5%', maxWidth: '100%',
            filter: {
                crules: [{
                    condition: "range"
                }],
                options: [
                    { "value": "pending", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_pending") },
                    { "value": "validated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_validated") },
                    { "value": "unvalidated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_unvalidated") }
                ]
            },
            render: function( ui ){
                return {
                    text: ui.rowData.action_plan_check_status ? $.i18n.t("nucleys_elabel:general.action_plan_check_status_"+ui.rowData.action_plan_check_status) : '',
                };
            },
            exportRender: function( ui ){
                return {
                    text: ui.rowData.action_plan_check_status ? $.i18n.t("nucleys_elabel:general.action_plan_check_status_"+ui.rowData.action_plan_check_status) : '',
                };
            },
            editor: {
            type: 'select',
            valueIndx: "value",
            labelIndx: "text",
            options: [
                    { "value": "pending", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_pending") },
                    { "value": "validated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_validated") },
                    { "value": "unvalidated", "text": $.i18n.t("nucleys_elabel:general.action_plan_check_status_unvalidated") }
                ]
        }
        }

9
Help for ParamQuery Pro / Re: Filter range options (V 5.3.0)
« on: September 25, 2018, 12:31:36 pm »
Thanks for the reply.

I've already tried several methods, including this one.
Here is the result.

10
Help for ParamQuery Pro / Filter range options (V 5.3.0)
« on: September 24, 2018, 07:20:25 pm »
Hi all,

I've a problem with the options of my range filter.

Here the code :

Code: [Select]
filter: { type: "select",
                crules: [{
                    condition: "range"
                }] ,
                valueIndx: "value",
            labelIndx: "text",
                options: [
                    { "value": "pending", "text": "Pending" },
                    { "value": "validated", "text": "Validated" },                   
                    { "value": "unvalidated", "text": "Unvalidated" }
                ],
                listeners: ['change']
            }

The result in attachments.


Thanks

11
Help for ParamQuery Pro / Multiple filters by columns
« on: December 22, 2017, 04:49:49 pm »
Hi,

Would it be possible to be able to put several filters for the same column?
For example to have an input for a basic search and at the same time to be able to filter on empty / non-empty.
Because the management of a single type of filter greatly limits the use.

12
Suggest new features / Multiple filters by columns
« on: December 05, 2017, 07:34:47 pm »
Hi,

Would it be possible to be able to put several filters for the same column?
For example to have an input for a basic search and at the same time to be able to filter on empty / non-empty.
Because the management of a single type of filter greatly limits the use.


Pages: [1]