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.


Topics - mscodigno

Pages: [1]
1
Help for ParamQuery Pro / Pro subscription remaining days
« on: November 09, 2021, 12:10:12 pm »
Hello, I bought a pro subscription on 2021-02-23, it shows 2021-11-22 as the expiry date in my profile. Is the subscription 1 year?

2
Help for ParamQuery Pro / fillHandle groupModel
« on: October 18, 2021, 12:39:52 pm »
Hello, I want to use the fillHande property with the groupModel, but dragging it down changes all the cells.


https://jsfiddle.net/zekeriyaerogluu/xayLouvh/7/

3
Help for ParamQuery Pro / Bootstrap datepicker
« on: October 11, 2021, 12:41:24 pm »
Hello, I want to use bootstrap datepicker in the date field, but when I select the date, it does not write it to the cell.
I used this example;
https://paramquery.com/pro/demos77/editing_custom

4
Help for ParamQuery Pro / groupModel Checkbox
« on: October 08, 2021, 04:43:28 pm »
Hi, is there any checkbox usage with groupModel?

5
Help for ParamQuery Pro / Edit box arrow key navigation
« on: May 11, 2021, 03:14:14 pm »
Hello, I want to add navigation with arrow keys to the editor. I tried this topic but it didn't work.
https://paramquery.com/forum/index.php?topic=2630.msg10101#msg10101


http://jsfiddle.net/zekeriyaerogluu/kqmzv45u/41/

6
Help for ParamQuery Pro / Does not filter on the formatted price
« on: April 20, 2021, 01:19:47 pm »
Hello, the price field comes from the database in the format '#. ###, 00'. I cannot use the filtering feature in this column. What should I do?

https://jsfiddle.net/zekeriyaerogluu/kqmzv45u/31/

7
Help for ParamQuery Pro / Html column grouping
« on: April 14, 2021, 03:11:15 pm »
I want to group the column whose data type is html, but it is broken like in the image. How can I solve this problem?

8
Help for ParamQuery Pro / date filter datepicker problem
« on: March 17, 2021, 02:47:45 pm »
Hello, I have a column of dates in 'dd / mm / yy' format. When I want to filter, I get incorrect results.
I have bootstrap-datepicker plugin in my theme. The format of the date I choose is 'dd.mm.yy'. I think the problem is caused by the format of this plugin.

https://jsfiddle.net/zekeriyaerogluu/kqmzv45u/18/

9
Help for ParamQuery Pro / clicksToEdit: 1
« on: March 09, 2021, 06:21:56 pm »
Hello, there is "clicksToEdit: 1" parameter in the editing model, but when you click on another cell while the textbox is open, it first closes the textbox and opens the editor at the second click. Can I do this with one click?

10
Help for ParamQuery Pro / Input boxes come open.
« on: March 09, 2021, 12:07:25 pm »
Hello,
1 -> Ater the grid is loaded, I want the input boxes in the editable fields in the last line to come open. Is this possible?

----

2 -> When the 'PARA BİRİMİ' option changes, I want to turn off the editability of the 'KUR' field on the same line.

11
Hello, I want to get excel output locally, but I get the following error;
 - Uncaught Error: This method has been removed in JSZip 3.0, please check the upgrade guide. -> datatables.bundle.js:15556

The error appears in the DataTable script, DataTable is used on every page.
How can I solve this problem?

Code: [Select]
{
    type: 'button',
    label: "Export",
    icon: 'ui-icon-arrowthickstop-1-s',
    listener: function() {

        var format = $("#export_format").val(),
            blob = this.exportData({
                format: format,
                nopqdata: true,                       
                render: true
            });
        if (typeof blob === "string") {
            blob = new Blob([blob]);
        }
        saveAs(blob, "pqGrid." + format);
    }
}

Pages: [1]