Skip to main content
Nintex Community Menu Bar
Solved

Deactive Information Button

  • November 8, 2019
  • 2 replies
  • 12 views

Hello,

how can i deactivate or delete the infobutton from the window that opens if i use the picker?

 

regards,

Marcel


12994i1B71302CBB5C02CA.png

Best answer by Kikki

You can remove it with jQuery. Try adding the following code to a literal DataLabel. Don't forget to deselect "Prevent XSS". You might also need to add the same code for ".menu-item.picker-search" click event, since you can open the search windows via 2 ways.

$(function() {
$( ".picker-search.border-left-only" ).click(function(){
setTimeout(function() {
$(".help").hide();
}, 1);
});
});

 

2 replies

Forum|alt.badge.img+15

Hi,


 


There is no configuration within K2 that can allow you to deactivate that button. You will have to explore some other ways, such as using javascript to do it.


 


  • Answer
  • November 11, 2019

You can remove it with jQuery. Try adding the following code to a literal DataLabel. Don't forget to deselect "Prevent XSS". You might also need to add the same code for ".menu-item.picker-search" click event, since you can open the search windows via 2 ways.

$(function() {
$( ".picker-search.border-left-only" ).click(function(){
setTimeout(function() {
$(".help").hide();
}, 1);
});
});