messages.dialogs.search.dragHandleString(default: "Drag search")

Specifies the tooltip text for the drag handle element of the search dialog. This allows users to reposition the search dialog by dragging it to different locations.

Example

<div id="pdfviewer"></div>
<script type="module">
  $("#pdfviewer").kendoPDFViewer({
    pdfjsProcessing: {
      file: "https://demos.telerik.com/kendo-ui/content/web/pdfViewer/sample.pdf"
    },
    messages: {
      dialogs: {
        search: {
          dragHandle: "Custom Drag Handle Message"
        }
      }
    }
  });
</script>