Converting a huge client/Server app to web and mobile app, module by module, I know I have to through a lot.
in our code, frequently required to know the ancestor class name.. ie
///
ClassDefinition cd_windef
do
cd_windef = FindClassDefinition(as_classname)
if cd_windef.ancestor.name = "w_base" then
exit
else
cd_windef = FindClassDefinition(cd_windef.ancestor.name)
end if
loop while (cd_windef.ancestor.name="")
RETURN cd_windef.ancestor.name
//
Is there any list of Unsupported Object/Function calls and their workaround somewhere, I went through PowerServer help and still learning.
Thanks.
if you are looking to do some specific processing based on the window being inherited from a specific window, then you design a work around.