Pages

Friday, January 19, 2024

How to apply Label Border Color in the Nintex form using jQuery


Using a Custom Class on your Nintex form label control

If your label has a custom class, such as CSS class property then apply Label control name is LabelToolTips


Use in the following code on your code logic

NWF$('.LabelToolTips').css('border', '2px solid #ff0000'); // Red border

NWF$('.LabelToolTips').html("*If you are unsure, choose Intranet Issue"); //Apply Value

NWF$('.LabelToolTips').css('border', 'none'); // Remove Border


Wednesday, December 20, 2023

Friday, September 29, 2023

Monday, August 28, 2023

Tuesday, July 4, 2023

Thursday, June 22, 2023

Thursday, December 15, 2022

Hide Sharepoint Web Parts using Javascript

 I have placed List webpart to filter some value then pass to other Webpart to display filtered Content.

The following code will hide the List webpart then users will not see those Hidden Value.

you just find that webpart ID and add in the following code.

Add this to Script Editor Webpart. Publish the page then the web part will be hidden.


Work Around Code:

<script type="text/javascript">

document.getElementById('MSOZoneCell_WebPartWPQ6').style.display='none';

</script>