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

Pages: [1]
1
use group summary

i want to add class or style at only summaryTitme cell.
is possible?


2
ParamQuery Pro Evaluation Support / how to change(or update) colModel....
« on: November 13, 2020, 03:18:55 pm »
hi~


after loaded, i got the json data with dataModel.url..
i want to add more Column with this json data key..



      var grid;
        $(function () {
            colM = new Array();
            colM.push({title: "all", align: "center", dataIndx : 'sAll', type:'checkbox', dataType: 'bool', cb: {all: true, header: false},editable: true});
            colM.push({title: "subject", align: "center", dataIndx: "subject"});
            colM.push({title: "help", align: "center", dataIndx: "help"});
            colM.push({title: "id", align: "center", dataIndx: "id"});

            pqGridObj.colModel = colM;
            pqGridObj.pageModel.type = null;
            pqGridObj.height = nowHeight();
            pqGridObj.toolbar = null;
            pqGridObj.dataModel.url = "auth_ori.run";
            pqGridObj.dataModel.recIndx = "id";
            pqGridObj.dataModel.getData = function (response) {
                if (response.data.length>0){
                    var dataObj = Object.getOwnPropertyNames(response.data[0]);

                    for(i=0;i<dataObj.length;i++) {
                        if(dataObj.indexOf("admin_")>=0) {
                           colM.push({dataIndx: dataObj, title: dataObj.split("_")[2], type: 'checkbox', dataType: 'bool', cb: {header: true, all: true}, editable: true});
>>>>>>>>>>>>>>> column read data.......but, did not create checkbox, title, and title_checkbox.....

                        }
                    }
                }
                grid.colModel = colM;
                return { data: response.data };

            };
            grid = pq.grid("#grid_json_scroll",pqGridObj);
        })


3
hi ~

IE version is 11.
It loads normally with IE default option.
but, after change opton (F11 -> emulator -> document mode -> 5) that is not work.
(because my site must use with compatibility View.)

Error message : script 438,  object is not support 'bind' property or method. Row19, column 411

thank you.

4
I used version pq-grid pro 2.1 previously.
I upgraded to pq-grid pro 6.0 recently.

I'm having trouble applying to an existing site.
this site can access the Internet Browser Compatibility View.
It worked fine in 2.1.0, but in 6.0 it gets loaded as an error.

Is there a way to solve this problem?

5
News / Re: Upgrade to Pro Version 2.0.2
« on: December 03, 2013, 05:47:18 am »
no download link found in main menu..

Pages: [1]