jQuery를 통해 조건부 컨텍스트 메뉴 항목을 표시하려고합니다.ContextMenu jQuery의 항목
예 :
내 계좌에 자동차가 있습니다. 그리고 조건에 대한 옵션을 보여주고 싶었습니다.
자동차가 내 것이면 모든 메뉴 항목을 볼 수 있어야합니다. 그리고 나와 공유하는 경우 나만 볼 수있는보기 메뉴가 있습니다.
if (type == 'vehicle') {
(function() {
var vehicle_id = node.data.vehicle_id;
var vehicle_status = '';
$.ajax({
url: baseUrl + '/check-vehicle-status/'+vehicle_id,
success: function(data) {
console.log(data);
if(data == 'shared'){
//what should I write here? to show only View option
}
}
});
items = {
"View": {
"label": "View Vehicle",
"action": function action() {
self.viewVehicle(vehicle_id);
}
},
"modify": {
"label": "Edit Vehicle",
"action": function action() {
self.editVehicle(vehicle_id);
}
},
"delete": {
"label": "Delete Vehicle",
"action": function action() {
dialogHandler.showDeleteVehicle(function() {
self.removeVehicle(vehicle_id);
});
}
},
이미 난 내 자신 또는 저와 공유 나에게 차를 제공 자동차 ID와 아약스 호출을 보내고 –
이 무엇을 공유하십시오. soo 자동차가 나와 공유하는 경우이 조건을 추가하려면 View oprion 만 표시하십시오. 다른 모든 옵션은 EDIT, DELETE 등을 좋아합니다. – MongoUser