Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
How to get DAPINode?
Zimmer_Zimmer_(x-zimmer_-_(deleted))
In the webnode browseview.html file the method of iterating over contents is (briefly):;;webscript BrowseView( Object prgCtx, Dynamic request, Dynamic data ) ;Record nodeRec ;Dynamic contents = data.contents ;for nodeRec in contents do stuff ;end;;endWhile iterating in the 'do stuff' section, how do I get the actual DAPINode corresponding to the nodeRec? What I'm trying to accomplish is to display extendedData in the list view.Jeff
Find more posts tagged with
Comments
Bickers
Jeff,Try this...;DAPINODE myNode;Object dSession=prgCtx.DapiSess();for nodeRec... ;myNode = DAPI.GetNodeById( dSession, nodeRec.OwnerID, nodeRec.DataID)....;end