Jump to content

Search the Community

Showing results for tags 'Popup menu'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 5 results

  1. This code works WHEN NO POPUPMENU IS USED (no ContextMenu is ever shown as expected). If PopUpMenu is used (LeftMenu.Popup(x, y, LeftPanel);) no matter what I do I get the extra "Open In New Tab" window over the top of my PopUpMenu ? Please advise how to prevent "Open In New Tab" window when using PopUpMenu - Thanks in advance. s:= 'afterrender=function afterrender(sender, eOpts) '#13#10+ '{'#13#10+ ' sender.getEl().dom.addEventListener(''mousedown'', function(e) '#13#10+ ' {'#13#10+ ' if (e.target.tagName == ''IMG'' && e.button == 2) '#13#10+ ' { '#13#10+ ' t1 = e.target.getAttribute("data-tableId"); '#13#10+ ' c1 = e.target.getAttribute("data-caption"); '#13#10+ ' e.preventDefault(); '#13#10+ ' ajaxRequest(sender, ''_RightClick_'', {tableId: t1, cap: c1, x: e.offsetX, y: e.offsetY}); '#13#10+ ' } '#13#10+ ' }), '#13#10+ ' sender.getEl().dom.addEventListener(''contextmenu'', function(e) '#13#10+ ' { '#13#10+ ' e.preventDefault(); '#13#10+ ' }) '#13#10+ '}'; LeftHTMLFrame.ClientEvents.ExtEvents.Add(s);
  2. Is it possible to tell when the popup menu below appears and when it closes via events:
  3. How can I did disable the popup menu that appear when you right mouse on a UniHTMLMemo?
  4. Boa tarde amigos. Estou com o seguinte problema? Estou tentando usar o popup menu dentro de um grid porem quando pressiono o botão direito do mouse alem do meu popup também é apresentado o popup do Browse. Como eu desabilito o popup do Browse para que ele não apareça em minha aplicação? Agradeço pela ajuda dos amigos.
  5. Uses CLIPBrd.... Select the text UniEdit and click the right mouse button and run context menu . procedure TMainForm.CommentEditMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin if Button=mbRight then UniPopupMenu1.Popup(828+X,Height+18+Y); end; When I want to copy the selected uniedit text. procedure TMainForm.N1Click(Sender: TObject); begin Clipboard.Clear; Clipboard.AsText:=CommentEdit.Text; end; After right-clicking the selection text disappears.
×
×
  • Create New...