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

Pages: [1]
1
OK.
I confirmed it within the company that I already registered Pro license to another user ID.
Next time I will "Help for ParamQuery Pro" to use Pro license user to ask.

2
Hi.

I decided to upgrade PQGrid used in my project from v3.3.0 to v5.1.0.

Thank you for your support.

3
Thank you.
In https://paramquery.com/pro/demos/infinite_scroll it was solved by adding the following code after beforeTableView.

Code: [Select]
beforePaste: function(evt, ui){
    //sanitize pasted data.
    var CM = this.getColModel(),
        rows = ui.rows,
        area = ui.areas[0],
        c1 = area.c1;

    for(var i=0; i<rows.length; i++){
        var row = rows[i];
        for(var j=0; j<row.length; j++){
            var column = CM[j+c1],
                dt = column.dataType;
            if( dt == "integer" || dt == "float" ){

                row[j] = row[j].replace(/\,/g,"");
            }
        }
    }
}

v3.3.0-3.4.x does not have beforePaste.
Is there an Events that can be used instead?
There was no areas in ui of beforeValidate.

4
Hi.

When pasting numerical values including ","(Thousand separator), value after "," can not be pasted.
Is there a solution?

Thanks in advance.


e.g.

5
ParamQuery Pro Evaluation Support / Re: How to cancel "left justified"
« on: April 24, 2018, 07:59:44 am »
The problem was resolved by replacing space with "&nbsp;" in the colModel's render event.
Thank you, you've been so helpful.

Code: [Select]
render: function (ui) {
    return { text: ui.cellData.replace(/\s/g, "&nbsp") }
}

6
ParamQuery Pro Evaluation Support / Re: How to cancel "left justified"
« on: April 24, 2018, 06:14:40 am »
Thank you.

By setting the value of ui.newVal to ui.rowdata in the cellSave, it was possible to set the value to include the space.
However, it is trimmed on display.
Is it possible to make the same value on display?

Code: [Select]
cellSave: function (evt, ui) {
    ui.rowData[ui.dataIndx] = ui.newVal;
}

7
ParamQuery Pro Evaluation Support / Re: How to cancel "left justified"
« on: April 23, 2018, 12:32:49 pm »
Thank you.
I would like to register the inputed space in the database, so I will consider another plan.

8
ParamQuery Pro Evaluation Support / How to cancel "left justified"
« on: April 23, 2018, 11:03:39 am »
Hi

Even if you input a space at beginning of the cell, space is deleted when you complete the input.
Is it possible to not delete the space?

Thanks in advance.


9
Bug Report / Re: Copy and paste problems with multiple cells
« on: April 12, 2018, 09:40:09 am »
Are you planning to deal with this problem with future patches?
Or is there any advice to do interim correspondence?

Thanks in advance.

10
Bug Report / Re: Copy and paste problems with multiple cells
« on: April 03, 2018, 02:21:21 pm »
This is an example of row pasting.

  • Clear some of the bottom cells.

  • Copy the column.

  • Paste in another column. The first cell of the copy source is pasted in the bottom cell.


11
Bug Report / Copy and paste problems with multiple cells
« on: April 03, 2018, 01:57:04 pm »
If you copy multiple cells to include blank cells and paste it into another cell, you can not paste correctly.

e.g.
  • Move to https://paramquery.com/pro/demos/copy_paste
  • Clear the values of some cells.
  • Select and copy multiple cells so that the cell that cleared the value is at the bottom.
  • Select another cell.
  • The bottom blank cell is not pasted.

When copying and pasting a column, the first cell of the copy source is pasted at the bottom.

Pages: [1]