Reputation: 3719
In cxGrid,when right clicking inside a blob field with your right mouse button you get the standard popup menu :
How can I remove the "Assign from camera option" ? I know there used to be such an option but now I can not find it anywhere. DevExpress is 14.2.2.
Edit:
Here are the settings of the field in question :
And here how it looks in action:
Upvotes: 1
Views: 485
Reputation: 6402
The popup menu is not relates to a blob field. It is releated to a TcxImage
. So the popup menu will appear on a TcxImage
component and on any Column in a TcxGrid
on which you sat the Properties
property to Image
.
Given that the answer is more or less the same:
On a TCxGrid
Find the correct Column, then goto properties
=> PopupMenuLayout
=> MenuItems
, and here you remove the unwanted menu items. The "Assign from camera option" is called pmiWebCam
.
Hope this answers you question.
Upvotes: -1