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

Pages: [1]
1
ParamQuery Pro Evaluation Support / listener columnDrag complete
« on: January 27, 2021, 12:57:08 pm »
my boss want to save custom config ,like hidden column,change column order,

it has a event : columnDrag,but it's listener drar start ....

how can i listener event of drag complete?

thank you very much!

2
excuse me,

i find a bug of the method [deleteRow];

like this config:
dataModel: { location: "remote"},
pageModel{ type: "remote"},

when i delete one row in page2 or more(page > 1) by method [deleteRow],

it's can not delete correct row of 2times or more,

this my code:

let sel_row = $pqgrid.SelectRow();
let selectArray = sel_row.getSelection();
let _rowIndex = selectArray[0].rowIndx;
$pqgrid.deleteRow({ rowIndx: _rowIndex });

remark: console.log(selectArray); data is correct;

i watch this demo,has same problem
https://paramquery.com/pro/demos/editing_remote_page

3
ParamQuery Pro Evaluation Support / about selectionModel and SelectRow
« on: January 21, 2021, 09:04:32 am »
excuse me,
when i set: 
selectionModel: { type: 'cell', row: true }
it's can selected row by number cell,

but, i want to get my SelectRow from this:
let sel = $pqgrid.SelectRow();
let selectArray = sel.getSelection();

it's hasn't any data, selectArray = []???

how can i get SelectRow?

thank you vary much

4
Suggest new features / freezeRows and freezeCols
« on: December 30, 2020, 08:58:45 am »
pqgrid can Frozen rows and Frozen columns, is wonderful;

now i want to Frozen columns by the column name,

for example :

Frozen the column "userName",

how can i do for this?

thank you~

5
ParamQuery Pro Evaluation Support / how can i get pq_curpage?
« on: December 30, 2020, 06:50:24 am »
excuse me,

I use pageModel of remote

my API must POST argument “currentPage” for pager,how can i set the “currentPage”  = pq_curpage ?

thank you~

6
Suggest new features / treeModel how to show the node line?
« on: December 29, 2020, 02:23:33 pm »
like this :

O---
   |
  O---
   |
  O---

Pages: [1]