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

Pages: [1]
1
My conpany purchased the licenece and give me the Transaction ID,  how can i get the pro sdk?

2
Hi
In ver 5.0 ,After press 'Enrter'  , the autocomplete  in celleditor  will close , then it trigger sequence is   autocomplete box's change event >pqgrid cell value changed event. but after 5.0 the event sequence becomes : pqgrid cell value changed event>autocomplete box's change event .This cause the autoComplete change event not work.
Please help
Here is the celleditor init code
Code: [Select]
            editor: {
                    type: "textbox",
                    init: function(ui) {
                        var tableID = ui.$cell.parent().parent()[0].id;
                        var $inp = ui.$cell.find("input");
                        $inp.autocomplete({
                            //.....
                            change: function(event, obj) {
                                updRow[ui.dataIndx] = obj.item.label;
                                if (nmeMapping) {
                                    $.each(nmeMapping, function(i) {
                                        if (obj.item[this])
                                            ui.rowData[i] = obj.item[this];
                                        else if (obj.item.extraInfoMap)
                                            ui.rowData[i] = obj.item.extraInfoMap[this];
                                        else
                                            ui.rowData[i] = ''
                                    });
                                }
                            }
                        })
                    }

3
Bug Report / Grid export to xlxs file open error
« on: June 15, 2018, 11:35:23 am »
When I use excel 2017 open file .it becomes wrong

Here is the code,and attachments with the file and picture

var blob = table.pqGrid("exportData",{format:'xlsx'});
       if(typeof blob === "string"){                           
            blob = new Blob([blob]);
        }
        saveAs(blob, fileNme+".xlsx" );

4
ParamQuery Pro Evaluation Support / When autofit ,the scrollbar always show
« on: December 21, 2017, 04:37:02 pm »
When autofit ,the scrollbar always show, please help

Thanks

5
Bug Report / Re: Meet error when use 'getSelection' under remote paging
« on: December 21, 2017, 06:56:16 am »
after upgrade to 5.0 ,this issue appear again, please help me

thanks

6
after upgrade to 5.0 ,autofit will makes column equal width ,but in 4.0 it not 。 Is this a new feature?

7
Bug Report / Meet error when use 'getSelection' under remote paging
« on: October 27, 2017, 03:05:07 pm »
Hi
 I user remote paging ,page 1 is ok when I go to  page 2+  the following code got error


var grid = tablePort.pqGrid( "getInstance" ).grid;
var selectRow = grid.SelectRow().getSelection();

Uncaught TypeError: Cannot read property 'pq_rowselect' of undefined

Please help
Thanks

Pages: [1]