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 - Hidehiro Ishii

Pages: [1] 2 3
1
Hi Team,

Thank you for your reply.
I have understood it is not possible to customize V5.3.0 like V5.1.0.
I hope to guarantee compatibility of previous version
and to change a function of local header filtering like MS Excel.
Please close this case.

Thanks again.

2
Thank you for your reply.
I have one more question.
Can I configure to disappear a dropdown list automatically after selecting a item ?

3
Hi Team、

I have tried to customize to make a function of local header filter look like v5.1.0 on v5.3.0.
But I can not find out how to customize what I want.
I will show a screen shot image that I want.
Please let me know it is possible to customize on v5.3.0.
And if it is possible,let me know how to customize.

4
Hi Team,

MS Excel has a function of filter.
I will show you a screenshot of a function of filter on MS Excel.
Please check attached file.
On MS Excel, a function of filter works correctly without clearing and re-checking the header checkbox.
I want same way to work a function of filter on v5.3.0.
On v5.3.0, after entering "ar" in the search box, it does NOT work correctly if clearing & re-checking the header checkbox.
I hope it works correctly this case.
And I will try to customize in v5.3.0.

5
Hi Team,

Thank you for your reply.
I have checked  a procedure that you said.
And I have got a result that I want.
But I think it is not friendly to the user.
Because it is hard for me to be image clearing the header checkbox before entering a search word into search box.
I hope it will change a user interface next version like a MS Excel.
By the way,
Can I customize a function of local header filtering(Shipping Via) like a PQGrid 5.1.0 ?
 

6
Hi Team,

I want to use local header filtering with [Range] condition.
But I can not find out how to use what I want.
I will send a screenshot with a comment what I want.
Please let me know a way what I want.

7
Hi Team,

Thank you for your reply.
It is so useful example for me.
And I have understood how to use the new API.
Please close this case.

 

8
Help for ParamQuery Pro / Re: rowDblClick do NOT work PQGrid 5.2.0
« on: July 29, 2018, 06:43:57 am »
Hi Team,

I had checked a function of rowDblClick again with sample program.
It seems it works correctly.
I will try to check a behavior of rowDblClick with my program again.
So please close this case.

9
Help for ParamQuery Pro / rowDblClick do NOT work PQGrid 5.2.0
« on: July 28, 2018, 09:13:48 pm »
Hi Team,

I have been testing PQGrid 5.2.0.
I have found out a event function of rowDblClick on PQGrid 5.2.0.
(This event works correctly on PQGrid 5.1.0. )
Please check this event works correctly or not on PQGrid 5.2.0.

10
Hi team,

I am so happy to be released PQGrid 5.2.0.
I have a question of the new function of added filter condition.
I want to reduce a item of filter condition.
(reject items "Greater than","Greater than or equal","Less than","Less than or equal" etc)
Because there are so many items of filter condition,so the pull down menu is so long.
And I want to change a item of filter condition by each columns.
Please let me know how to solve these problems.

11
Hi Team,

I am sorry that my response is too late.
According to your sample code, I have understood how to use Font Awesome with Render cells.
Please close this case.
Thank you for your answer.

Best Regards,

Koichi Ida

12
Hi Team,

Please reply this question.
Is it difficult ?

13
Help for ParamQuery Pro / Re: How to Export Local Data
« on: June 12, 2018, 01:30:11 pm »
Hi. Team,

Thank you for your reply.
I think it is NOT easy to use the version 1.3.8 with my environment.
So I have decided to use the version 1.3.2.
By the way, I want to open savefile dialog when I export file with FileSaver.
Because I want to select folder to save file and to change file name.
Can I do it ?

14
Help for ParamQuery Pro / How to use Font Awesome with Render cells
« on: June 11, 2018, 07:29:49 am »
Hi Team,

I want to use <i class="fas fa-arrow-up"></i> of Font Awesome with Render cells
instead of <img src="/content/images/arrow-up.gif>.
Please let me know a sample code which is how to use Font Awesome.

15
Help for ParamQuery Pro / How to Export Local Data
« on: June 08, 2018, 10:52:48 am »
Hi Team,

I want to grid data locally without round trip to remote server.
So I have used a newest version of FileSaver.js(2018-03-22) with a sample code which is on your site(Demo Name is Local Export).
But it does NOT work correctly.
And then I have changed a old version of FileSaver.js(2014-01-24),is does work correctly.
Please let me know how to use a newest version of FileSaver.js with your sample code as follows.

    $(function () {
        function fillOptions(grid) {
            var column = grid.getColumn({ dataIndx: 'ShipCountry' });
            column.filter.options = grid.getData({ dataIndx: ['ShipCountry'] });
            column.filter.cache = null;
            grid.refreshHeader();
        }
        var colM = [
            { title: "ShipCountry", width: 120, dataIndx: "ShipCountry",
                filter: {
                    type: 'select',
                    prepend: { '': 'All Countries' },
                    valueIndx: 'ShipCountry',
                    labelIndx: 'ShipCountry',
                    condition: 'equal',
                    listeners: ['change']
                }
            },
            { title: "Customer Name", width: 130, dataIndx: "ContactName" },
            { title: "Freight", width: 120, format: '$##,###.00',
                summary: {
                    type: "sum"
                },
                dataType: "float", dataIndx: "Freight"
            },
            { title: "Shipping Via", width: 130, dataIndx: "ShipVia" },
          //{ title: "Shipped Date", width: 100, dataIndx: "ShippedDate", dataType: "date" },
            { title: "Shipping Address", width: 220, dataIndx: "ShipAddress" },
            { title: "Shipping City", width: 130, dataIndx: "ShipCity" }
      ];
        var dataModel = {
            location: "remote",
            dataType: "JSON",
            method: "GET",
            url: "/Content/orders.json"
            //url: "/pro/orders/get",//for ASP.NET
            //url: "orders.php",//for PHP
        };
        var groupModel = {
            on: true,
            dataIndx: ['ShipCountry'],
            showSummary: [true],
            grandSummary: true,
            collapsed: [false],
            title: [
                "{0} ({1})",
                "{0} - {1}"
            ]
        };
        var obj = {
            height: 500,
            toolbar: {
                items: [
                {
                    type: 'select',
                    label: 'Format: ',               
                    attr: 'id="export_format"',
                    options: [{ xlsx: 'Excel', csv: 'Csv', htm: 'Html', json: 'Json'}]
                },
                {
                    type: 'button',
                    label: "Export",
                    icon: 'ui-icon-arrowthickstop-1-s',
                    listener: function () {

                        var format = $("#export_format").val(),                           
                            blob = this.exportData({
                                //url: "/pro/demos/exportData",
                                format: format,                               
                                render: true
                            });
                        if(typeof blob === "string"){                           
                            blob = new Blob([blob]);
                        }
                        saveAs(blob, "pqGrid."+ format );
                    }
                }]
            },
            dataModel: dataModel,
            scrollModel: { autoFit: true },
            colModel: colM,
            numberCell: { show: false },
            filterModel: { on: true, header: true, type: "local" },
            selectionModel: { type: 'cell' },
            groupModel: groupModel,
            load: function (evt, ui) {
                //options for ShipCountry filter.   
                fillOptions(grid);
            },
            showTitle: false,
            resizable: true,
            virtualX: true,
            virtualY: true,
            hwrap: false,
            wrap: false
        };
        var grid = pq.grid("#grid_export", obj);

    });

Pages: [1] 2 3