From f62eae0e6bbae2d8e672f319bce0d49ecea12b01 Mon Sep 17 00:00:00 2001 From: "hagun.kim" Date: Wed, 17 Jun 2015 20:17:52 +0900 Subject: [PATCH] [TAU] Update documents for UI components 1. IndexScrollbar 2. DropdownMenu 3. PageIndicator 4. TextInput 5. SelectMenu(deprecated) Change-Id: I42d8331dc0811e4517606c2fbee3f14fb7a6eacf Signed-off-by: hagun.kim --- .../deprecated/mobile_SelectMenu.htm | 23 - .../Mobile_UIComponents/mobile_DropdownMenu.htm | 14 +- .../Mobile_UIComponents/mobile_IndexScrollBar.htm | 480 +-------------------- .../Mobile_UIComponents/mobile_PageIndicator.htm | 161 +++---- .../Mobile_UIComponents/mobile_TextInput.htm | 279 ++++++++++++ .../Mobile_UIComponents/widget_reference.htm | 12 +- 6 files changed, 385 insertions(+), 584 deletions(-) create mode 100644 org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/mobile_TextInput.htm diff --git a/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/deprecated/mobile_SelectMenu.htm b/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/deprecated/mobile_SelectMenu.htm index 5dcd684..3899000 100644 --- a/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/deprecated/mobile_SelectMenu.htm +++ b/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/deprecated/mobile_SelectMenu.htm @@ -103,20 +103,6 @@ To support Backward compitablity, please import tau.support-2.3.js. </select> -
  • Setting the label type - -

    You can declare the SelectMenu type manually. If you set the data-label attribute to true (default is false), the select menu has a label type. The size of the label type is inherited by its parent element.

    - -
    <div style="width:300px; height:150px;">
    -   <select id="selectmenu" data-native-menu="false" data-label="true">
    -      <option value="1">Item1</option>
    -      <option value="2">Item2</option>
    -      <option value="3">Item3</option>
    -      <option value="4">Item4</option>
    -   </select>
    -</div>
    -
  • -
  • Setting the inline type

    When the data-inline attribute is set to true, the select menu width is determined by its text (default is false).

    @@ -175,15 +161,6 @@ To support Backward compitablity, please import tau.support-2.3.js. Sets whether the select menu component is of an inline or normal type. - - data-label - boolean - false - Sets whether the select menu component is of a label or normal type. - - - - diff --git a/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/mobile_DropdownMenu.htm b/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/mobile_DropdownMenu.htm index bb96bb3..f8e9f11 100644 --- a/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/mobile_DropdownMenu.htm +++ b/org.tizen.web.apireference/html/ui_fw_api/Mobile_UIComponents/mobile_DropdownMenu.htm @@ -11,7 +11,7 @@

    Dropdown Menu

    -DropdownMenu widget provide creating DropdownMenu widget in the form of dropdown list and managing its operation. +DropdownMenu component allows you to create the component in the form of a drop-down list and manage its operation.

    Table of Contents

      @@ -38,7 +38,7 @@ DropdownMenu widget provide creating DropdownMenu widget in the form of dropdown

      Manual constructor

      -

      For manual creation of DropdownMenu widget you can use constructor of widget.

      +

      For manual creation of DropdownMenu component you can use constructor of component.

          <select id="dropdownmenu" data-native-menu="false">
               <option value="1">Item1</option>
      @@ -113,14 +113,14 @@ DropdownMenu widget provide creating DropdownMenu widget in the form of dropdown
       		data-inline
       		boolean
       		false
      -		Sets the DropdownMenu widget as inline/normal type.
      +		Sets the DropdownMenu component as inline/normal type.
       	
       
       	
       		data-native-menu
       		boolean
       		true
      -		Sets the DropdownMenu widget as native/custom type.
      +		Sets the DropdownMenu component as native/custom type.
       	
       
       	
      @@ -413,6 +413,12 @@ widget.disable();
       
       
       
      +
      +

      Where to Go Next

      +