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

Pages: 1 ... 6 7 [8] 9
106
Help for ParamQuery Pro / Performance
« on: December 14, 2016, 06:53:35 pm »
Hi

I have a dataset with around 60 000 rows and 20 columns. The data is loaded through <script src="data.js"></script> where is its stored as JSON data (Array of row objects).
I use virtualY: true

It takes around 20 seconds to load the table in Chrome...What would be the easiest way to increase loading speed / filtering?

Thanks.

107
Help for ParamQuery Pro / Custom HTML in toolbar
« on: December 06, 2016, 08:47:27 pm »
I would like to add some labels (custom HTML) above some select boxes in the toolbar.
What is the best approch for this?

Thanks.

108
Suggest new features / Header filter
« on: December 06, 2016, 07:26:37 pm »
When using multiple select filter (header filter), would it be possible to select all that match search criteria in the select?
Using the "Select all" in the box will select all possible values (ignoring search criteria).

109
Help for ParamQuery Pro / colSelector and pqSelect
« on: November 26, 2016, 02:05:25 am »
Code: [Select]
$(".columnSelector").val("value");
works before it has been converted to pqSelect, after conversion it doesn't work...tried:

$( ".columnSelector" ).pqSelect( "val", "value" );

without success...

110
Help for ParamQuery Pro / Call function from listener
« on: November 17, 2016, 01:53:07 pm »
Hi

I would like to call a function from a listener:

listener: function () {             
   call function in the create: function part
}

create: function (evt, ui) {   
   function code   
}

How can I do that?
Thanks.

111
Help for ParamQuery Pro / Filter condition
« on: November 16, 2016, 02:28:29 pm »
Hi, Im using:

Code: [Select]
$("#grid_array").pqGrid( "filter", { oper: 'replace', data: [
            { dataIndx: 'Column1', condition: 'equal', value: '0'},
            ]})

to set a filter...Would it be possible to add expression OR like 'Column1' == '0' OR 'Column2' == '0'?

112
Help for ParamQuery Pro / Hide column by dataIndx
« on: November 15, 2016, 03:30:23 pm »
Is it possible to hide column by dataIndx?
Instead of using index:

Code: [Select]
colModel[0].hidden = true;
Thanks.

113
Bug Report / saveState and columnSelector
« on: November 14, 2016, 09:03:24 pm »
Hi

Is there any update on this?

http://paramquery.com/forum/index.php?topic=1610.0

Thanks.

114
Help for ParamQuery Pro / colModel reorder
« on: October 24, 2016, 02:39:44 am »
Im using splice to reorder the colModel and need to update the new colModel to the show / hide column feature...
Whats the best approach to do this?

Thanks.

115
Help for ParamQuery Pro / Optgroup in select
« on: October 18, 2016, 02:23:25 pm »
I have a select in toolbar like this:

Code: [Select]
options: [{
 test: 'test',
 test2: 'test2',
 test3: 'test3',
 ...

How could I add optgroup to group test2 and test3?

116
Help for ParamQuery Pro / pqSelect single select
« on: October 18, 2016, 02:08:18 pm »
When applying pqSelect to  single select I get a box inside the dropdown box with the option text inside it...how can I fix that?
Thanks.

117
Help for ParamQuery Pro / Select in toolbar with pqSelect
« on: October 17, 2016, 04:28:20 pm »
Trying to apply pqSelect on select in toolbar...no success...

Code: [Select]
type: 'select',
                        label: 'Test: ',               
                        attr: 'id="TestID"',
                       
                        options: [{ ,
                            ...
                        }],
                       
                        value: 'test',
               
                init: function(){
                    $("#TestID").pqSelect({
                        multiplePlaceholder: 'Test'})},

                listener: function(){...

Thanks in advance.

118
Help for ParamQuery Pro / Function in listener
« on: October 14, 2016, 07:27:09 pm »
Hi

Is it possible to call the function in a listener?

Ex:
Code: [Select]
{
                        type: 'button',
                        label: 'test',
                        icon: 'icon',
                        listener: function () {
                            alert('test')
                        }

119
Help for ParamQuery Pro / Execute function onSelect
« on: October 12, 2016, 08:32:29 pm »
Trying to call function when a certain select option is chosen in toolbar.

Code: [Select]
...
type: 'select',
label: 'Select ',               
options: [{ default: '', test: 'Select1'}],
value: 'default'
...

How can I call function when Select1 is chosen?
Thanks.

120
Help for ParamQuery Pro / Change column order
« on: October 12, 2016, 07:43:38 pm »
Hi

How can I change the column order after initialization?

Pages: 1 ... 6 7 [8] 9