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

Pages: [1] 2
1
How to implement the image function, which example should be referenced?

2
Hello:
     How to add right-click function to table rows
thank you!!!

3
Help for ParamQuery Pro / Re: Date plus week as header instance?
« on: June 15, 2020, 05:25:56 pm »
非常感谢!!!

5
Help for ParamQuery Pro / Date plus week as header instance?
« on: June 15, 2020, 09:53:44 am »
paramvir:Hello!To ask you about a matter, is there an example that the date plus the week is the header of the table?

6
Help for ParamQuery Pro / How to adjust the filter box display width?
« on: April 06, 2020, 07:00:32 pm »
How to adjust the filter box display width?

7
The problem has been solved, thank you very much!

8
Thank you very much for your reply!I am a front end novice, did it your way, but still not right, request guidance.
            // 导出
            $('#Export').on('click', function () {
                var grid = $("#gridtable").pqGrid('instance');


                //alert(JSON.stringify(grid));
                //now call grid method.
                gridlistener();
error:
TypeError: grid.listener is not a function

                toolbar: {
                    items: [
                        {
                            type: 'button',
                            label: "Export to Excel",
                            icon: 'ui-icon-arrowthickstop-1-s',
                            listener: function () {

                                var blob = this.exportData({
                                    //url: "/pro/demos/exportData",
                                    format: 'xlsx',
                                    render: true,
                                    type: 'blob'
                                });
                                saveAs(blob, "销售跟踪表.xlsx");
                            }
                        }]
                },   

9
Table export button if the implementation is not in the toolbar?

10
Help for ParamQuery Pro / Table export problem!
« on: April 02, 2020, 08:19:02 am »
                            title: "增幅",
                            width: 70,
                            dataType: "float",
                            align: "right",
                            dataIndx: "XSZZL",
                            format: function (val) {
                                if (val <= 0) {
                                    return redblack + val +'%'+ endblack;
                                } else {
                                    return black + '+' + val + '%'+endblack;
                                }

                            }
After the data has been formatted, the export is like this

<a style="">&nbsp;+35.29%</a>

11
Help for ParamQuery Grid (free version) / I have paid successfully
« on: March 30, 2020, 02:01:55 pm »
I have paid successfully. When can you send the code to my email?E-mail: 452354437 @qq.com

12
Help for ParamQuery Grid (free version) / export grid data error
« on: March 18, 2020, 09:12:28 pm »
export grid data error:
ReferenceError: saveAs is not defined.
Is there a lack of file references?

      <!--jQuery dependency-->   
          <script src="js/jquery/jquery-1.9.1.min.js"></script>   
      
      <!--jQueryUI version >= 1.11.4 only -->
          <link rel="stylesheet" href="js/jquery-ui-1.11.4/jquery-ui.min.css" />
          <script src="js/jquery-ui-1.11.4/jquery-ui.min.js"></script>
      
      <!--ParamQuery Grid css files-->
          <link rel="stylesheet" href="js/paramquery-pro/pqgrid.min.css" />   
      
          <!--add pqgrid.ui.css for jQueryUI theme support-->
          <link rel="stylesheet" href="js/paramquery-pro/pqgrid.ui.min.css" />
      
          <!--ParamQuery Grid custom theme e.g., office, bootstrap, rosy, chocolate, etc (optional)-->
          <link rel="stylesheet" href="js/paramquery-pro/themes/bootstrap/pqgrid.css" />
      
      <!--ParamQuery Grid js files-->
          <script type="text/javascript" src="js/paramquery-pro/pqgrid.min.js" ></script>   
      
          <!--ParamQuery Grid localization file (necessary since v5.2.0)-->
          <script src="js/paramquery-pro/localize/pq-localize-zh.js"></script>
      
      <!--Include pqTouch file to provide support for touch devices (optional)-->
          <script type="text/javascript" src="js/paramquery-pro/pqTouch/pqtouch.min.js" ></script>   
      
      <!--Include jsZip file to support xlsx and zip export (optional)-->
          <script type="text/javascript" src="js/paramquery-pro/jsZip-2.5.0/jszip.min.js" ></script>   
      
      <!--Include jquery.resize to support auto height of detail views in hierarchy (optional)-->
          <script type="text/javascript" src="js/paramquery-pro/javascript-detect-element-resize/jquery.resize.js" ></script>

13
Does the table support watermarking?To prevent screenshots, the watermark shows the user's account or name.

14
Does the table support watermarking?To prevent screenshots, the watermark shows the user's account or name.

15
ParamQuery Pro Evaluation Support / Re: Does the demo not support grouping?
« on: February 27, 2020, 12:43:46 pm »
This is the way I fetch Numbers from the background, one query, one fetch from the background, and then update the ta

Pages: [1] 2