Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/29/23 in all areas

  1. Try this approach: procedure TMainForm.UniButton1Click(Sender: TObject); begin //UniContainerPanel1.ScrollBy(-100,0); //not working UniContainerPanel1.JSInterface.JSCall('getScrollable().scrollBy', [-100, 0]); end; procedure TMainForm.UniButton2Click(Sender: TObject); begin //UniContainerPanel1.ScrollBy(100,0); //not working UniContainerPanel1.JSInterface.JSCall('getScrollable().scrollBy', [100, 0]); end;
    1 point
×
×
  • Create New...