Exemple #1
0
    private string GetRecordingsViewerPageCommandHandler() {
      int recordingBookId = int.Parse(GetCommandParameter("recordingBookId", true));
      int page = int.Parse(GetCommandParameter("page", true));
      int pageSize = int.Parse(GetCommandParameter("itemsPerPage", true));

      RecordingBook recordingBook = RecordingBook.Parse(recordingBookId);

      return LRSGridControls.GetRecordingsSummaryTable(recordingBook, pageSize, page);
    }
Exemple #2
0
 protected string GetRecordingsViewerGrid() {
   return LRSGridControls.GetRecordingsSummaryTable(this.recordingBook.Recordings, this.recordingsPerViewerPage, 0);
 }