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

Pages: [1]
1
Help for ParamQuery Pro / PQSelect multiselect grouping
« on: March 06, 2018, 10:39:10 pm »
Hi,

I have two questions:

1. I want to group items in PQSelect. I went through this https://paramquery.com/pro/api#option-column-editor but its not elaborate enough on how to implement it. Any code snippet will be
    helpful.

2. How to exclude a column from pqselect but show it on pqgrid.

2
Help for ParamQuery Select / PQSelect multiselect grouping
« on: March 02, 2018, 09:35:20 pm »
Hi,

I have two questions:

1. I want to group items in PQSelect. I went through this https://paramquery.com/pro/api#option-column-editor but its not elaborate enough on how to implement it. Any code snippet will be
    helpful.

2. How to exclude a column from pqselect but show it on pqgrid.

3
Help for ParamQuery Pro / Re: Date Filter in toolbar
« on: March 01, 2018, 03:26:41 am »
Thanks for the reply. I have managed to set up the filter but I was not able to get the datepicker to work.
I am adding custom code into the type to render a pair of textboxes for the 'to' and 'from' date.

The accountAndDateFilter function is where all the filtering happens.

I also made a type: "textbox" feild in the toolbar and assigned it the datepicker through init like in the local date filter demo.
That did not seem to work either.

As a control, I made a textbox outside the grid and assigned it a datepicker and that seem to work just fine.

Note: I am filtering locally.

Code: [Select]
//Custom HTML
var date_range_button1 =
'<input id="fromDate1" type="text" onchange="accountAndDateFilter()" class="hasDatepicker"> — <input id="toDate1" type="text" onchange="accountAndDateFilter()" class="hasDatepicker">';

//Entry in the toolbar
items: [{
type: date_range_button1 ,
}

//Executed after the grid has been initilized
$("#fromDate1").datepicker();
$("#toDate1").datepicker();

4
Help for ParamQuery Pro / Date Filter in toolbar
« on: February 28, 2018, 04:18:46 am »
I want to filter the date column and I want to enter the date ranges in the toolbar. All the code examples I found online only explain how do this by using the column header.
Could you point me in the right direction.

Thanks
 

Pages: [1]