Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/04/21 in all areas

  1. Hello friends, it is with great happiness that I announce that today the application is running smoothly, as we can see in the image we hit 354 sessions and we had no problem with performance, of course I had a job analyzing my codes and improving, but mainly we doubled to 16gb memory, 8 processors and 1gigabite network.
    2 points
  2. Hello everybody, Need help How get column value from UnidbPivotGrid via exevent rowselect or cellselect? when mouse select row or cell I need read value of cell or column via ajaxevent
    1 point
  3. How simple the solution was! Thank you Sherzod. I really appreciate you taking the time to straightening me out.
    1 point
  4. working code procedure TMainForm.UniDBPivotGrid1AjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin if EventName='onSelect' then ShowMessage(Params.Values['bdata']); end; procedure TMainForm.UniFormShow(Sender: TObject); begin {With UniDBPivotGrid1, JSInterface do begin JSAddListener('select', JSFunction('selected', 'console.log("this",this);console.log("selected",selected);')) end;} With UniDBPivotGrid1, JSInterface do begin JSAddListener('select', JSFunction('a,b', 'ajaxRequest('#1', "onSelect", ["bdata="+b.data["ext-35"]]);')) end; end;
    1 point
  5. Hello, eventname is onSelect. With UniDBPivotGrid1, JSInterface do begin JSAddListener('select', JSFunction('a,b', 'ajaxRequest('#1', "onSelect", b.data); ')) end;
    1 point
  6. Hi, I need for sample c1 and ext-36 wich you marking values how getit and send ajaxrequest with this values? UnidbPivotgrid from ajaxevent if eventame = 'blabla' var1:= value1 var2:= value2 Thank's advance
    1 point
  7. When you select a cell you will get below values. Which one do you need?
    1 point
  8. This method doesn't work .. Can you show the sample more detail how get from ajaxrequest.. I have PivotGrid LeftAxis FIELD1,FIELD2,FIELD3,FIELD4 I need when rowselect or cellselect get value from FIELD1
    1 point
  9. Hello You can use "select" event. With UniDBPivotGrid1, JSInterface do begin JSAddListener('select', JSFunction('this,selected', 'console.log("this",this);console.log("selected",selected);')) end;
    1 point
×
×
  • Create New...