화면 » Api
  
fireparenttabevent
  
Description
화면이 링크된 탭 컴포넌트의 on_itemscreenevent를 발생시킨다.
  
  
Parameters
  
    
      | Parameters | 
      Type | 
      Description | 
    
  
  
        
    
        | bFireAsync | 
        BOOL | 
 	비동기로 이벤트 발생 여부 | 
      
    
    
        | strEventName | 
        STRING | 
 	이벤트 이름 | 
      
    
    
        | strEventValue | 
        STRING | 
 	이벤트 값 | 
      
  
  
Return Value
  
    
      | Type | 
      Description | 
    
  
  
    
      | BOOL | 
      정상 처리 여부 | 
    
  
Example
function btn_event_on_mouseup(objInst)
{
	var is_fire_async, event_name, event_value;
	
	is_fire_async = true;
	event_name = "on_datechanged";
	event_value = {
		date: this.dt_date.gettext()
	};	
	screen.fireparenttabevent(is_fire_async, event_name, 
        factory.jsonstringify(event_value));
}
  
Viewer Ver.
9.1.1.1
  
Update Date
 20240905