This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - creator.ShowView() defination location

Rahul. - Friday, July 24, 2015 6:53 AM:

Hi,
I am trying to customize page which displays part details in main grid page.
To view details "onShowItemDefault" method is used by default which internally uses Creator.ShowView() method.
If I am right I have to customize code in ShowView() so my changes will get reflect.

But I couldn't find definition of this method in aras code base.
here is code snippet used in onShowItemDefault():

    if (viewMode === 'tab view' || viewMode === 'new')
        {
            var view = new View(inDom, inArgs);
            var creator = new Creator(view);
            return creator.ShowView();
        }

 

Where do I find definition of method?