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

Pages: [1]
1
hi

is there a property that can be used in order to let the rows height be calculated based on number of rows in grid, ??
exactly as autoFit = true , for the column width ??


please help

2
hi

any help how could run the below filter on same dataindex:

{{{{greater than 10 AND greater than 100 OR equal 200}}}}.

which mean i have 2 modes [AND / OR], while in filter i saw that we can defined just one MODE.

how could i run such filter ??

pleas help.

3
ParamQuery Pro Evaluation Support / filter single dataIndex column
« on: October 16, 2019, 03:38:25 pm »
hi

i have a dialog and user could add up to 3 conditions [so he can use AND | OR conditions], please see below as example

how could i filter single column , by the below conditions: i.e.
 great > 200 AND equals 400 OR equals 500

as i could not use MODE property , since it's accept only one parameter  "AND", "OR"

crules: Array(3)
0: {condition: "great", value: "200"}
1: {condition: "equal", value: "400"}
2: {condition: "equal", value: "500"}

dataIndx: "1"
mode: "AND" ///  missing the OR for the last condition [ not sure how should i do that.]

4
hi

if i have 4 filtered columns and want to reset only the first columns , how should i do that??

since when i call  grid.reset({filter:true}) , it reset all the filters on the grid .

i want a specific one only.

please help

5
thanks

i used a custom filter of range , to display only the topN rows,

if i use your approach  of hiding rows , that may effect the performance [already verified that], specifically when have a large data

6
hi

is there a functionality to display only Top N rows.

please note :
i dont want to recreate the grid with new data of N rows,  i only need to display the TOP N rows, and do some stuff on this like filtering etc...

7
Help for ParamQuery Grid (free version) / Reload Refresh grid with new data
« on: December 24, 2018, 04:10:49 pm »
hi

im not able to reload the grid with new data [new number columns, new rows ]. or reset to default data
im trying to do this :

 let pqGrid = $(this.getContentElement()).pqGrid( 'instance');
          if (pqGrid){
                pqGrid.option("dataModel.data", this._pqGridData);
}

but getting the below error :
Uncaught TypeError: Cannot read property 'widget' of undefined
    at t.(anonymous function).(anonymous function).o._setOption (http://192.168.10.178/js/lib/pqgrid/pqgrid.min.js:10:2090)
    at t.(anonymous function).(anonymous function)._setOption (http://192.168.10.178/js/lib/jquery/jquery-ui-1.12.1.min.js:6:4499)
    at t.(anonymous function).(anonymous function)._setOptions (http://192.168.10.178/js/lib/jquery/jquery-ui-1.12.1.min.js:6:7740)
    at t.(anonymous function).(anonymous function).option (http://192.168.10.178/js/lib/jquery/jquery-ui-1.12.1.min.js:6:7673)
    at HTMLDivElement.<anonymous> (jquery-ui-1.12.1.min.js:6)
    at Function.each (jquery-3.3.1.js:354)
    at jQuery.fn.init.each (jquery-3.3.1.js:189)
    at jQuery.fn.init.t.fn.(anonymous function) [as pqGrid] (http://192.168.10.178/js/lib/jquery/jquery-ui-1.12.1.min.js:6:5787)
    at Grid.drawContent (Grid.js:16)
    at Grid.draw (BaseVxComponent.js:122)

8
hi

im encountering with an issue seems like a bug:
when trying to perform paging while mergeCells is defined.

please:
go to Auto Merge - Demo - and try to add paging to the grid. "  pageModel: { type: "local", rPP: 5, strRpp: "{0}", strDisplay: "{0} to {1} of {2}"},"

when performing a paging the MergedCells displayed as not merged.

please check this issue and appreciate your response ASAP.

Thanks


9
ParamQuery Pro Evaluation Support / Re: merge cells
« on: October 16, 2018, 05:39:53 pm »
if i run the below on Sort :
 this.option("mergeCells", _grid._mergeCells);
 this.refreshView();

data will not be merged as expected since, the _mergeCells is not updated yet.
this piece of code should execute after sort done OR render done.

10
ParamQuery Pro Evaluation Support / Re: merge cells
« on: October 16, 2018, 05:33:20 pm »
right .
my problem is that i a have a large data , 100K records.
and as i mentioned before im running the merge only for rendered cells, [for performance issue , im not going to merge the overall column].

mean, when do a sort, a new data will be rendered [during this functionality i updated the mergeCells object "code below"],

and after rendered finish, there should be an event to execute the merge functionality.
im looking up for that event . to execute :
 this.option("mergeCells", _grid._mergeCells);
  this.refreshView();






code below:
renderCell(ui) {
        let rowData = ui.rowData;
        let dataIndx = ui.dataIndx;
        let pq_style = {};
        let reOrderRowIndex = rowData.pq_order != null ? rowData.pq_order : ui.rowIndx;

        let cellConfiguration = this._grid.getConfiguration(ui.column.nameIndx,reOrderRowIndex,null);
       
        if (cellConfiguration.MERGE_ROWS){
            this.updateMergeRowsIndexes(ui.column.nameIndx,ui.rowIndx ,reOrderRowIndex, dataIndx );
        }
        // get cell format style properties
        let cellStyle = this.getCellStyle(cellConfiguration);
        cellStyle.cell_format += ui.cellData;
        pq_style.style =  cellStyle.css;

        rowData.pq_cellattr = rowData.pq_cellattr || {};
        rowData.pq_cellattr[dataIndx] = pq_style;

        return "<span class='vx-align-middle'></span>" + cellStyle.cell_format ;
    }

    updateMergeRowsIndexes (colIdx, rowIdx, reOrderRowIndex,dataIndx){
        let curCellData =  this._grid._compData.data.columns[colIdx][rowIdx];
        let prevCellData = this._grid._compData.data.columns[colIdx][rowIdx-1] !== undefined ?  this._grid._compData.data.columns[colIdx][rowIdx-1] : undefined;

        let currCellConfiguration = this._grid.getConfiguration(colIdx, reOrderRowIndex,null);
        let prevCellConfiguration = this._grid.getConfiguration(colIdx, reOrderRowIndex-1,null);

        // check current merge object position is already defined
        let currMergeObj = _.find(this._grid._mergeCells,{"rd": rowIdx-1 , "c1":dataIndx});
       
        if (prevCellData !== undefined && prevCellData == curCellData && this.isCellStyleConfigurationEquivalent(currCellConfiguration, prevCellConfiguration)){
            if (this._grid._mergeCells.length == 0 || !currMergeObj){
                    this._grid._mergeCells.push({r1: rowIdx-1, c1: dataIndx, rc: 2, cc: 1, rd:rowIdx});
                } else{
                    currMergeObj.rc ++;
                    currMergeObj.rd = rowIdx;
            }

        }
    }

11
ParamQuery Pro Evaluation Support / merge cells
« on: October 16, 2018, 04:41:13 pm »
hi

im running merge cells on render [since i need to merge based on cell data and cell property i.e. "bgColor, font-color, icon"], mean , cells should be merge if already rendered only, [for performance issue , as i dont need to merge all columns ],
the mergeCells should execute for the first time grid was loaded / on scroll/on sort.

my question:
1.in which event should i run the merge ?
as i have the create event - which good for the first time grid loaded
but what regarding the scroll and espically sort ??
as i dont have an event "onSortEnd" or "afterSort".

i need an event that occurs/been called after render completely finished.

please note that i could not run the merge on refresh event , since we need to to call the refreshView event in order to do the merge which called the refresh event it's self.
as if i do this we will stack in a loop.

please advice..

Pages: [1]