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 - rebound.support

Pages: [1] 2
1
Hi,

i want to implement pager in both Header and Footer.

when i am trying to add it footer then header pager disappears. If i put it on header then footer pager disappears.

Please suggest, how to put it on both places.

2
paramquery version 8.1.0

and code is attached in zip file attached.

3
I want to enable the column stretch like excel using cursor.

I am not able to stretch the column in this representation as values get cut and if i increase the width then the horizontal scroll become to lengthy.

can anybody provide how to do it.

4
having problem while displaying the grid header properly after setting the column freeze.

when i click on the expand button the nested grid shows the data after the freeze column so can anybody provide how to handle this

5
ParamQuery Pro Evaluation Support / Freeze column with detailed mode
« on: August 22, 2022, 03:59:05 pm »
Hi,

I need help as how to freeze the column with detailed model shown when expanding the tild arrow.

i was able to freeze column but when i expand the row the detailed row shown is not in proper format


6
Help for ParamQuery Pro / Re: Nested grid view with column
« on: June 01, 2021, 05:49:54 pm »
Hi,

I have following query for the nested grid view export.

1. Should it mandatory for the row number before export as mention below link.

   https://paramquery.com/pro/demos/export_detail

2. Any demo link for export nested grid.

7
Help for ParamQuery Pro / Re: Nested grid view with column
« on: May 31, 2021, 04:45:10 pm »
Hi

8
Help for ParamQuery Pro / Nested grid view with column
« on: May 31, 2021, 10:52:54 am »
Hi,

I want a nested grid with column and dynamic data.

Nested grid should be minimum 3 layer.

Could you please share me a demo link.

9
Help for ParamQuery Pro / Grid Data Validation
« on: May 21, 2021, 01:52:12 pm »
Hi,

Could you please share me demo link for validating duplicate record insertion.

1. when user will click on the add button after that a new line in grid will be added after that user will fill all the record and click on update button.
2. Now value from response is -1 and I want to show message to the user that "Record already exists".
3. User can change the value from the same grid line and update again.

Tnx

10
Help for ParamQuery Pro / Re: Filter header box
« on: May 20, 2021, 07:27:31 pm »
Hi,

I want to bind dynamic header data into to dropdown in filter section. Please help or provide me example of code to binding dynamic data in filter section.
===============================================

filter: function () {
                        $.getJSON("controls/Nuggets/KPITargetMainInfoNew/KPITargetMainInfoNew.ashx?Action=MonthNew", function (response) {
                            grid.getColumn({ dataIndx: "MonthName" }).filter.options = [{ 1: "January" }, { 2: "February" }, { 3: "March" }, { 4: "April" }, { 5: "May" }, { 6: "June" }, { 7: "July" }, { 8: "August" }, { 9: "September" }, { 10: "October" }, { 11: "November" }, { 12: "December" }];
                            alert(response);
                        });
                    },

11
Help for ParamQuery Pro / Re: Filter header box
« on: May 20, 2021, 03:51:45 pm »
Hi,

Following response is showing in the console.

[{1:"January"},{2:"February"},{3:"March"},{4:"April"},{5:"May"},{6:"June"},{7:"July"},{8:"August"},{9:"September"},{10:"October"},{11:"November"},{12:"December"}]

12
Help for ParamQuery Pro / Re: Filter header box
« on: May 20, 2021, 01:46:15 pm »
Hi,

==========================
Below code not working:

  var column = grid.getColumn({ dataIndx: 'MonthName' });
                        $.getJSON("Common.ashx?Action=MonthNew", function (response) {
                            column.filter.options = [{ 1: "January" }, { 2: "February" }, { 3: "March" }, { 4: "April" }, { 5: "May" }, { 6: "June" }, { 7: "July" }, { 8: "August" }, { 9: "September" }, { 10: "October" }, { 11: "November" }, { 12: "December" }];
                        });

=================
Below code working:

  var column = grid.getColumn({ dataIndx: 'MonthName' });
                        $.getJSON("Common.ashx?Action=MonthNew", function (response) {

                        });
                        column.filter.options = [{ 1: "January" }, { 2: "February" }, { 3: "March" }, { 4: "April" }, { 5: "May" }, { 6: "June" }, { 7: "July" }, { 8: "August" }, { 9: "September" }, { 10: "October" }, { 11: "November" }, { 12: "December" }];

===============

In the above code how I set the handler response to column filter options.

13
Help for ParamQuery Pro / Re: Filter header box
« on: May 20, 2021, 12:34:06 pm »
Hi,

Yes I am agree with the given example but the issue is still same.

Could you please share the header filter with any dynamic data instead of hard code.

14
Help for ParamQuery Pro / Re: Filter header box
« on: May 19, 2021, 06:48:59 pm »
Hi,

Code:
================
For DropDown:

{
                            title: "Month", dataIndx: "MonthName", width: 110, valueIndx: "Month", align: "center",
                            filter: {
                                crules: [{ condition: 'range' }], 
                                options: [
                                ],
                            },
                            editor: {
                                type: 'select',
                                valueIndx: "ID",
                                labelIndx: "Name",
                                mapIndices: { "Name": "MonthName", "ID": "Month" },
                                options: [
                                ]
                            },
                            validations: [{ type: 'minLen', value: 1, msg: "Required" }]
                        },
========================

For Filling data to filter:

create: function (evt, ui) {
$.getJSON("Common.ashx?Action=MonthNew", function (response) {
                            var column = grid.getColumn({ dataIndx: 'MonthName' });
                            column.filter.options = response;
                        });
},

===================
Response from  Handler is:

{1:"January"},{2:"February"},{3:"March"},{4:"April"},{5:"May"},{6:"June"},{7:"July"},{8:"August"},{9:"September"},{10:"October"},{11:"November"},{12:"December"}

==============================

Value in Filter dropdown:

No row to display.

==================================

Console Error:
 No Error.



15
Help for ParamQuery Pro / Re: Filter header box
« on: May 19, 2021, 04:08:53 pm »
Hi,

Can you guide me to how to bind filter options dynamic?
Following code I have added but not working.

create: function (evt, ui) {
$.getJSON("Common.ashx?Action=MonthNew", function (response) {
                            var column = grid.getColumn({ dataIndx: 'MonthName' });
                            column.filter.options = response;
                        });
},

Pages: [1] 2