OnHelp event


This event starts when the user click on the button , present in the ErgoDataGrid from version 3.0 toolbar if canHelp = true.

   Sintax

function OnHelp ()



Example

This example shows the OnHelp function for the "Cars" table: it's the first step for the filter and sort execution from the code; here the behaviour makes open a pop-up within the procedures for these advanced procedures executions.

function OnHelp() {
	var height=300;
	var width=400;
	var language;
	if (this.language=="it") 
		language="Italiano";
	else
		language="English";
	window.open('','',"height="+height+",width="+width+",top="+(screen.height-height)/2+",left="+(screen.width-width)/2+
	  ",toolbar=no,directories=no,status=no,location=no,menubar=no,resizable=no,scrollbars=no").location.href="helpCars"+language+".htm";
}