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

Pages: [1]
1
Help for ParamQuery Pro / Re: Resize terminate inline editing
« on: May 08, 2017, 11:41:48 pm »
Thank you. Works. Can I also check if the focus is on a search field (in the header)?

2
Help for ParamQuery Pro / Resize terminate inline editing
« on: May 08, 2017, 07:59:14 pm »
I have a small problem. The size of the grid is automatically adjusted for me with a surrounding div. This looks something like this:

Quote
$(".pq-grid").each(function(i) {
        $( this ).pqGrid("option", "width", outerDivWidth);
        $( this ).pqGrid("option", "height", outerDivHeight);
        $( this ).pqGrid("refresh");
});

This also works great. But on mobile devices the keyboard is shown when editing directly. This causes a resize. A "refresh" is called again on the grid. This will terminate the direct edit again. Is there a way to prevent this?

3
Help for ParamQuery Pro / Re: Add title to toolbar button
« on: March 27, 2017, 05:52:22 pm »
Many Thanks. Has worked perfectly.

4
Help for ParamQuery Pro / Add title to toolbar button
« on: March 26, 2017, 01:20:49 am »
Is it possible to set title / hint with a toolbar button?

var toolbar = {
    cls: 'pq-toolbar-crud',
    items: [
        {
            type: 'button',
            label: 'Add',
            icon: 'ui-icon-plus',
            listener: function(){ }
        },
        {
            type: 'checkbox',
            label: 'Merge cells',
            value: true, //checked initially.
            listener: function(){ }           
        },
        { type: 'button', label: 'Delete', icon: 'ui-icon-minus', listener: deletehandler }
    ]
};         

5
Ok. Thank you for your help  :)

6
I have a grid with remote data. For some columns, I use the auto summary function (summary: {type: "sum"}). The group model I use with the setting "grand summary: true".

Is it possible to edit the content of the summary row for specific columns after loading or filtering?

7
Help for ParamQuery Pro / Re: Remote Summary
« on: May 17, 2016, 02:04:52 am »
Thanks a lot.

8
Help for ParamQuery Pro / Re: Toggle header filter
« on: May 17, 2016, 02:02:41 am »
Ok. Thanks for your help  :D

9
Help for ParamQuery Pro / Re: Remove HTML-Tags for export
« on: May 17, 2016, 12:43:27 am »
Thanks for the answer.

But there is one thing I don't understand.

The data for my colModel is loading dynamically and supplied as JSON. How can I give a rendering function for the column in the JSON-Data?

10
Help for ParamQuery Pro / Remove HTML-Tags for export
« on: May 16, 2016, 12:04:49 am »
Hi.

My summaryData contains HTML tags. How can I prevent that these are displayed after exporting to Excel.

Example: <b>Total:</b>

Thanks

11
Help for ParamQuery Pro / Toggle header filter
« on: May 15, 2016, 11:53:20 pm »
Hi.
Another question  :)
Is there a way to toggle the visibility of header filter?

Thanks

12
Help for ParamQuery Pro / Remote Summary
« on: May 15, 2016, 05:53:54 pm »
Hi.

I need a summary Row with remote Data (JSON). Is that possible?

Thanks

Pages: [1]