Skip to main content Skip to complementary content

off method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.

qlik.off(eventName)

Removes listeners for the generic events.

Version history

Version history
Version state Details
Introduced Qlik Sense July 2018

Parameters

eventName

Type: String

Name of the event. Can be:

  • error
  • warning
  • closed

Removes all listeners if no eventName is provided.

Example

require( ["js/qlik"], function ( qlik ) {
	qlik.on( "error", function ( error ) {
		$( '#popupText' ).append( error.message + "<br>" );
		$( '#popup' ).fadeIn( 1000 );
	} );
	$( "#closePopup" ).click( function () {
		$( '#popup' ).hide();
	} );
    qlik.off("error");	
} );

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!