rowfocuschanged


pfcdwsrv.pbl   >   pfc_w_filterextended   >   dw_functioncategory   >   rowfocuschanged   

Full name pfc_w_filterextended.dw_functioncategory.rowfocuschanged
Access public
Extend of
Return value
Prototype event rowfocuschanged()

Name Datatype
No Data

Name Datatype
ls_category string

event rowfocuschanged;call super::rowfocuschanged;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  rowfocuschanged
//
//	Description:
//	Filter functions to the correct category
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	5.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////

string	ls_category

if currentrow > 0 then
	inv_rowselect.of_RowSelect (currentrow)

	ls_category = GetItemString (currentrow, "category")
	dw_function.SetFilter ("category = '" + ls_category + "'")
	dw_function.Filter()
	if dw_function.RowCount() > 0 then
		dw_function.SetRow (1)
		dw_function.event rowfocuschanged (1)
	end if
end if
end event

     
Name Owner
pfc_w_filterextended.open pfc_w_filterextended

     
Name Owner
datawindow.filter datawindow
datawindow.getitemstring datawindow
datawindow.rowcount datawindow
datawindow.setfilter datawindow
datawindow.setrow datawindow
pfc_n_cst_dwsrv_rowselection.of_rowselect pfc_n_cst_dwsrv_rowselection
pfc_w_filterextended.dw_function.rowfocuschanged dw_function
pfc_u_dw.rowfocuschanged pfc_u_dw

     
Full name
pfc_w_filterextended.tabpg_functions

     
Name Scope
No Data