X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=docs%2Fcontent%2Fshared-javascript-and-cpp-documentation%2Fitem-view.md;h=0242d1972cb8b782767a8e398855879c7a470d6c;hb=fe706c2b9e0a2ce31c91317dd6749faecef6d92e;hp=13132535ed8adba1127e6eca38f26a3e8082f6b4;hpb=5f6e04b26996da4c06716ce044bdfdb0e7e2e61b;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/docs/content/shared-javascript-and-cpp-documentation/item-view.md b/docs/content/shared-javascript-and-cpp-documentation/item-view.md index 1313253..0242d19 100644 --- a/docs/content/shared-javascript-and-cpp-documentation/item-view.md +++ b/docs/content/shared-javascript-and-cpp-documentation/item-view.md @@ -32,13 +32,12 @@ public: { // We should create the actor here that represents our item based on the itemId given. - // Here we'll create an ImageActor which uses the the itemId to parse the image in a particular directory. + // Here we'll create an ImageView which uses the the itemId to parse the image in a particular directory. std::ostringstream imageName; imageName << "my-image-folder/" << itemId << ".png"; // If item was 10, then this would result in my-image-folder/10.png - Dali::ResourceImage image = Dali::ResourceImage::New( imageName.str() ); - // Create an Image Actor from the image and return - return Dali::ImageActor::New( image ); + // Create the Image View from the image and return + return Dali::Toolkit::ImageView::New( imageName.str() ); } }; ~~~ @@ -70,4 +69,13 @@ itemView.ActivateLayout( Dali::Stage::GetCurrent().Add( itemView ); ~~~ +## Actions +The item-view provides an action to stop the scroll animation if desired. + +~~~{.cpp} +Property::Map attributes; +itemView.DoAction( "stopScrolling", attributes ); +~~~ + + */ \ No newline at end of file