Link - Subtle
Subtle links should be used to indicate less important links in tables with a large number of links. In this example all columns contain links, only the first column is non-subtle.
Z2UI5_CL_SMPC_APP_446
Controls
sap.m
UI5 1.71
The facts
- Repository
- abap2UI5/samples-controls
- Class
Z2UI5_CL_SMPC_APP_446- Source file
z2ui5_cl_smpc_app_446.clas.abap↗- Library
- sap.m
- UI5 entity
sap.m.Link- Demo kit sample
sap.m.sample.LinkSubtle- SAP's own sample
- running at sdk.openui5.org ↗
- Minimum UI5
- 1.71 — the floor abap2UI5 holds its samples to
- In the playground
- runs in the browser, with no system and nothing installed
Keywords: link, sap.m, linksubtle, table, toolbar, title, column, text, columnlistitem, objectidentifier
Controls it builds
- sap.m.Column
- sap.m.ColumnListItem
- sap.m.Link
- sap.m.ObjectIdentifier
- sap.m.Table
- sap.m.Text
- sap.m.Title
- sap.m.Toolbar
- sap.ui.core.mvc.View
Read out of the builder chain by the abap2UI5 linter, not from the category this sample is filed under — which is what makes “which samples build one of these” a question the catalogue can answer at all.
Libraries
Run it here
The sample running, in this page — the app on its own, with no editor over it.
Switch to Playground with this code
Nothing is installed and nothing is sent anywhere: the ABAP is compiled to JavaScript in this browser and runs against abap2UI5 itself.
The ABAP
z2ui5_cl_smpc_app_446.clas.abap — 411 lines
Click a number to link to a line — shift-click for a range.
Read it on GitHub ↗
" @keywords link sap.m linksubtle table toolbar title column text columnlistitem objectidentifier
" @summary Subtle links should be used to indicate less important links in tables with a large number of links. In this example all columns contain links, only the first column is non-subtle.
CLASS z2ui5_cl_smpc_app_446 DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
TYPES: BEGIN OF ty_s_product,
name TYPE string,
productid TYPE string,
suppliername TYPE string,
category TYPE string,
productpicurl TYPE string,
END OF ty_s_product.
TYPES ty_t_product TYPE STANDARD TABLE OF ty_s_product WITH EMPTY KEY.
DATA t_products TYPE ty_t_product.
PROTECTED SECTION.
DATA client TYPE REF TO z2ui5_if_client.
METHODS view_display.
METHODS on_event.
METHODS model_init.
PRIVATE SECTION.
ENDCLASS.
CLASS z2ui5_cl_smpc_app_446 IMPLEMENTATION.
METHOD z2ui5_if_app~main.
me->client = client.
IF client->check_on_init( ).
model_init( ).
view_display( ).
ELSEIF client->check_on_navigated( ).
view_display( ).
ELSEIF client->check_on_event( ).
on_event( ).
ENDIF.
ENDMETHOD.
METHOD view_display.
DATA(view) = z2ui5_cl_ui5_view_builder=>factory( ).
view->ele( n = `View` ns = `mvc`
)->a( n = `xmlns:mvc` v = `sap.ui.core.mvc`
)->a( n = `xmlns` v = `sap.m`
)->ele( `Table`
)->a( n = `id` v = `idProductsTable`
)->a( n = `inset` v = `false`
)->a( n = `items` v = |\{ path: '{ client->_bind_path( t_products ) }', sorter: \{ path: 'NAME' \} \}|
)->ele( `headerToolbar`
)->ele( `Toolbar`
)->tag( `Title`
)->a( n = `text` v = `Products`
)->a( n = `level` v = `H2`
)->end(
)->end(
)->ele( `columns`
)->ele( `Column`
)->a( n = `width` v = `12em`
)->tag( `Text`
)->a( n = `text` v = `Name`
)->end(
)->ele( `Column`
)->tag( `Text`
)->a( n = `text` v = `Id`
)->end(
)->ele( `Column`
)->a( n = `minScreenWidth` v = `Tablet`
)->a( n = `demandPopin` v = `true`
)->tag( `Text`
)->a( n = `text` v = `Supplier`
)->end(
)->ele( `Column`
)->a( n = `minScreenWidth` v = `Tablet`
)->a( n = `demandPopin` v = `true`
)->a( n = `hAlign` v = `End`
)->tag( `Text`
)->a( n = `text` v = `Category`
)->end(
)->ele( `Column`
)->a( n = `minScreenWidth` v = `Tablet`
)->a( n = `demandPopin` v = `true`
)->a( n = `hAlign` v = `End`
)->tag( `Text`
)->a( n = `text` v = `Picture`
)->end(
)->end(
)->ele( `ColumnListItem`
)->tag( `Link`
)->a( n = `text` v = `{NAME}`
)->a( n = `href` v = `{PRODUCTPICURL}`
)->tag( `ObjectIdentifier`
)->a( n = `title` v = `{PRODUCTID}`
)->a( n = `titleActive` v = `true`
)->a( n = `titlePress` v = client->_event( `IDENTIFIER_PRESS` )
)->tag( `Link`
)->a( n = `text` v = `{SUPPLIERNAME}`
)->a( n = `subtle` v = `true`
)->a( n = `press` v = client->_event( `LINK_PRESS` )
)->tag( `Link`
)->a( n = `text` v = `{CATEGORY}`
)->a( n = `subtle` v = `true`
)->a( n = `press` v = client->_event( `LINK_PRESS` )
)->tag( `Link`
)->a( n = `text` v = `picture`
)->a( n = `subtle` v = `true`
)->a( n = `href` v = `{PRODUCTPICURL}` ).
client->view_display( view->stringify( ) ).
ENDMETHOD.
METHOD on_event.
CASE client->get_event( ).
WHEN `LINK_PRESS`.
" handleLinkPress - MessageBox.alert("Link was clicked!")
client->message_box_display( text = `Link was clicked!` type = `alert` ).
WHEN `IDENTIFIER_PRESS`.
" handleObjectIdentifierPress - MessageBox.alert("Object Identifier was clicked!")
client->message_box_display( text = `Object Identifier was clicked!` type = `alert` ).
ENDCASE.
ENDMETHOD.
METHOD model_init.
" full mock /ProductCollection of ui5/mock/products.json (the fields the view binds)
t_products = VALUE #(
( name = `Notebook Basic 15` productid = `HT-1000` suppliername = `Very Best Screens` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1000.jpg` )
( name = `Notebook Basic 17` productid = `HT-1001` suppliername = `Very Best Screens` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1001.jpg` )
( name = `Notebook Basic 18` productid = `HT-1002` suppliername = `Very Best Screens` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1002.jpg` )
( name = `Notebook Basic 19` productid = `HT-1003` suppliername = `Smartcards` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1003.jpg` )
( name = `ITelO Vault` productid = `HT-1007` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1007.jpg` )
( name = `Notebook Professional 15` productid = `HT-1010` suppliername = `Very Best Screens` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1010.jpg` )
( name = `Notebook Professional 17` productid = `HT-1011` suppliername = `Very Best Screens` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1011.jpg` )
( name = `ITelO Vault Net` productid = `HT-1020` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1020.jpg` )
( name = `ITelO Vault SAT` productid = `HT-1021` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1021.jpg` )
( name = `Comfort Easy` productid = `HT-1022` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1022.jpg` )
( name = `Comfort Senior` productid = `HT-1023` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1023.jpg` )
( name = `Ergo Screen E-I` productid = `HT-1030` suppliername = `Very Best Screens` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1030.jpg` )
( name = `Ergo Screen E-II` productid = `HT-1031` suppliername = `Very Best Screens` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1031.jpg` )
( name = `Ergo Screen E-III` productid = `HT-1032` suppliername = `Very Best Screens` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1032.jpg` )
( name = `Flat Basic` productid = `HT-1035` suppliername = `Very Best Screens` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1035.jpg` )
( name = `Flat Future` productid = `HT-1036` suppliername = `Very Best Screens` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1036.jpg` )
( name = `Flat XL` productid = `HT-1037` suppliername = `Very Best Screens` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1037.jpg` )
( name = `Laser Professional Eco` productid = `HT-1040` suppliername = `Alpha Printers` category = `Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1040.jpg` )
( name = `Laser Basic` productid = `HT-1041` suppliername = `Alpha Printers` category = `Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1041.jpg` )
( name = `Laser Allround` productid = `HT-1042` suppliername = `Alpha Printers` category = `Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1042.jpg` )
( name = `Ultra Jet Super Color` productid = `HT-1050` suppliername = `Alpha Printers` category = `Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1050.jpg` )
( name = `Ultra Jet Mobile` productid = `HT-1051` suppliername = `Printer for All` category = `Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1051.jpg` )
( name = `Ultra Jet Super Highspeed` productid = `HT-1052` suppliername = `Printer for All` category = `Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1052.jpg` )
( name = `Multi Print` productid = `HT-1055` suppliername = `Printer for All` category = `Multifunction Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1055.jpg` )
( name = `Multi Color` productid = `HT-1056` suppliername = `Printer for All` category = `Multifunction Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1056.jpg` )
( name = `Cordless Mouse` productid = `HT-1060` suppliername = `Oxynum` category = `Mice`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1060.jpg` )
( name = `Speed Mouse` productid = `HT-1061` suppliername = `Oxynum` category = `Mice`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1061.jpg` )
( name = `Track Mouse` productid = `HT-1062` suppliername = `Oxynum` category = `Mice`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1062.jpg` )
( name = `Ergonomic Keyboard` productid = `HT-1063` suppliername = `Oxynum` category = `Keyboards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1063.jpg` )
( name = `Internet Keyboard` productid = `HT-1064` suppliername = `Oxynum` category = `Keyboards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1064.jpg` )
( name = `Media Keyboard` productid = `HT-1065` suppliername = `Oxynum` category = `Keyboards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1065.jpg` )
( name = `Mousepad` productid = `HT-1066` suppliername = `Oxynum` category = `Mousepads`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1066.jpg` )
( name = `Ergo Mousepad` productid = `HT-1067` suppliername = `Oxynum` category = `Mousepads`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1067.jpg` )
( name = `Designer Mousepad` productid = `HT-1068` suppliername = `Fasttech` category = `Mousepads`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1068.jpg` )
( name = `Universal card reader` productid = `HT-1069` suppliername = `Fasttech` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1069.jpg` )
( name = `Proctra X` productid = `HT-1070` suppliername = `Ultrasonic United` category = `Graphic Cards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1070.jpg` )
( name = `Gladiator MX` productid = `HT-1071` suppliername = `Ultrasonic United` category = `Graphic Cards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1071.jpg` )
( name = `Hurricane GX` productid = `HT-1072` suppliername = `Ultrasonic United` category = `Graphic Cards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1072.jpg` )
( name = `Hurricane GX/LN` productid = `HT-1073` suppliername = `Smartcards` category = `Graphic Cards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1073.jpg` )
( name = `Photo Scan` productid = `HT-1080` suppliername = `Printer for All` category = `Scanners`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1080.jpg` )
( name = `Power Scan` productid = `HT-1081` suppliername = `Printer for All` category = `Scanners`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1081.jpg` )
( name = `Jet Scan Professional` productid = `HT-1082` suppliername = `Printer for All` category = `Scanners`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1082.jpg` )
( name = `Jet Scan Professional` productid = `HT-1083` suppliername = `Printer for All` category = `Scanners`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1083.jpg` )
( name = `Copymaster` productid = `HT-1085` suppliername = `Alpha Printers` category = `Multifunction Printers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1085.jpg` )
( name = `Surround Sound` productid = `HT-1090` suppliername = `Speaker Experts` category = `Speakers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1090.jpg` )
( name = `Blaster Extreme` productid = `HT-1091` suppliername = `Speaker Experts` category = `Speakers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1091.jpg` )
( name = `Sound Booster` productid = `HT-1092` suppliername = `Speaker Experts` category = `Speakers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1092.jpg` )
( name = `Lovely Sound 5.1 Wireless` productid = `HT-1095` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1095.jpg` )
( name = `Lovely Sound 5.1` productid = `HT-1096` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1096.jpg` )
( name = `Lovely Sound Stereo` productid = `HT-1097` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1097.jpg` )
( name = `Smart Office` productid = `HT-1100` suppliername = `Technocom` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1100.jpg` )
( name = `Smart Design` productid = `HT-1101` suppliername = `Technocom` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1101.jpg` )
( name = `Smart Network` productid = `HT-1102` suppliername = `Technocom` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1102.jpg` )
( name = `Smart Multimedia` productid = `HT-1103` suppliername = `Technocom` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1103.jpg` )
( name = `Smart Games` productid = `HT-1104` suppliername = `Technocom` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1104.jpg` )
( name = `Smart Internet Antivirus` productid = `HT-1105` suppliername = `Brainsoft` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1105.jpg` )
( name = `Smart Firewall` productid = `HT-1106` suppliername = `Brainsoft` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1106.jpg` )
( name = `Smart Money` productid = `HT-1107` suppliername = `Brainsoft` category = `Software`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1107.jpg` )
( name = `PC Lock` productid = `HT-1110` suppliername = `Red Point Stores` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1110.jpg` )
( name = `Notebook Lock` productid = `HT-1111` suppliername = `Red Point Stores` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1111.jpg` )
( name = `Web cam reality` productid = `HT-1112` suppliername = `Red Point Stores` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1112.jpg` )
( name = `Screen clean` productid = `HT-1113` suppliername = `Red Point Stores` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1113.jpg` )
( name = `Fabric bag professional` productid = `HT-1114` suppliername = `Red Point Stores` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1114.jpg` )
( name = `Wireless DSL Router` productid = `HT-1115` suppliername = `Red Point Stores` category = `Telecommunications`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1115.jpg` )
( name = `Wireless DSL Router / Repeater` productid = `HT-1116` suppliername = `Red Point Stores` category = `Telecommunications`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1116.jpg` )
( name = `Wireless DSL Router / Repeater and Print Server` productid = `HT-1117` suppliername = `Technocom` category = `Telecommunications`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1117.jpg` )
( name = `USB Stick` productid = `HT-1118` suppliername = `Technocom` category = `Computer System Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1118.jpg` )
( name = `Travel Adapter` productid = `HT-1119` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1119.jpg` )
( name = `Cordless Bluetooth Keyboard, english international` productid = `HT-1120` suppliername = `Technocom` category = `Keyboards`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1120.jpg` )
( name = `Flat XXL` productid = `HT-1137` suppliername = `Technocom` category = `Flat Screen Monitors`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1137.jpg` )
( name = `Pocket Mouse` productid = `HT-1138` suppliername = `Technocom` category = `Mice`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1138.jpg` )
( name = `PC Power Station` productid = `HT-1210` suppliername = `Technocom` category = `PCs`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1210.jpg` )
( name = `Astro Laptop 1516` productid = `HT-1251` suppliername = `Ultrasonic United` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1251.jpg` )
( name = `Astro Phone 6` productid = `HT-1252` suppliername = `Ultrasonic United` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1252.jpg` )
( name = `Benda Laptop 1408` productid = `HT-1253` suppliername = `Ultrasonic United` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1253.jpg` )
( name = `Bending Screen 21HD` productid = `HT-1254` suppliername = `Ultrasonic United` category = `Flat Screens`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1254.jpg` )
( name = `Broad Screen 22HD` productid = `HT-1255` suppliername = `Ultrasonic United` category = `Flat Screens`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1255.jpg` )
( name = `Cerdik Phone 7` productid = `HT-1256` suppliername = `Ultrasonic United` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1256.jpg` )
( name = `Cepat Tablet 10.5` productid = `HT-1257` suppliername = `Ultrasonic United` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1257.jpg` )
( name = `Cepat Tablet 8` productid = `HT-1258` suppliername = `Ultrasonic United` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1258.jpg` )
( name = `Server Basic` productid = `HT-1500` suppliername = `Technocom` category = `Servers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1500.jpg` )
( name = `Server Professional` productid = `HT-1501` suppliername = `Technocom` category = `Servers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1501.jpg` )
( name = `Server Power Pro` productid = `HT-1502` suppliername = `Technocom` category = `Servers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1502.jpg` )
( name = `Family PC Basic` productid = `HT-1600` suppliername = `Titanium` category = `Desktop Computers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1600.jpg` )
( name = `Family PC Pro` productid = `HT-1601` suppliername = `Titanium` category = `Desktop Computers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1601.jpg` )
( name = `Gaming Monster` productid = `HT-1602` suppliername = `Titanium` category = `Desktop Computers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1602.jpg` )
( name = `Gaming Monster Pro` productid = `HT-1603` suppliername = `Titanium` category = `Desktop Computers`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-1603.jpg` )
( name = `7" Widescreen Portable DVD Player w MP3` productid = `HT-2000` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-2000.jpg` )
( name = `10" Portable DVD player` productid = `HT-2001` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-2001.jpg` )
( name = `Portable DVD Player with 9" LCD Monitor` productid = `HT-2002` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-2002.jpg` )
( name = `CD/DVD case: 264 sleeves` productid = `HT-2025` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-2025.jpg` )
( name = `Audio/Video Cable Kit - 4m` productid = `HT-2026` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-2026.jpg` )
( name = `Removable CD/DVD Laser Labels` productid = `HT-2027` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-2027.jpg` )
( name = `Beam Breaker B-1` productid = `HT-6100` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6100.jpg` )
( name = `Beam Breaker B-2` productid = `HT-6101` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6101.jpg` )
( name = `Beam Breaker B-3` productid = `HT-6102` suppliername = `Technocom` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6102.jpg` )
( name = `Play Movie` productid = `HT-6110` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6110.jpg` )
( name = `Record Movie` productid = `HT-6111` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6111.jpg` )
( name = `ITelo MusicStick` productid = `HT-6120` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6120.jpg` )
( name = `ITelo Jog-Mate` productid = `HT-6121` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6121.jpg` )
( name = `Power Pro Player 40` productid = `HT-6122` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6122.jpg` )
( name = `Power Pro Player 80` productid = `HT-6123` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6123.jpg` )
( name = `Flat Watch HD32` productid = `HT-6130` suppliername = `Very Best Screens` category = `Flat Screen TVs`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6130.jpg` )
( name = `Flat Watch HD37` productid = `HT-6131` suppliername = `Very Best Screens` category = `Flat Screen TVs`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6131.jpg` )
( name = `Flat Watch HD41` productid = `HT-6132` suppliername = `Very Best Screens` category = `Flat Screen TVs`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-6132.jpg` )
( name = `Copperberry` productid = `HT-7000` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-7000.jpg` )
( name = `Silverberry` productid = `HT-7010` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-7010.jpg` )
( name = `Goldberry` productid = `HT-7020` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-7020.jpg` )
( name = `Platinberry` productid = `HT-7030` suppliername = `Fasttech` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-7030.jpg` )
( name = `ITelO FlexTop I4000` productid = `HT-8000` suppliername = `Titanium` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-8000.jpg` )
( name = `ITelO FlexTop I6300c` productid = `HT-8001` suppliername = `Titanium` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-8001.jpg` )
( name = `ITelO FlexTop I9100` productid = `HT-8002` suppliername = `Titanium` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-8002.jpg` )
( name = `ITelO FlexTop I9800` productid = `HT-8003` suppliername = `Titanium` category = `Laptops`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-8003.jpg` )
( name = `Smartphone Leather Case` productid = `HT-9991` suppliername = `Ultrasonic United` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9991.jpg` )
( name = `Smartphone Alpha` productid = `HT-9992` suppliername = `Ultrasonic United` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9992.jpg` )
( name = `Mini Tablet` productid = `HT-9993` suppliername = `Ultrasonic United` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9993.jpg` )
( name = `Camcorder View` productid = `HT-9994` suppliername = `Ultrasonic United` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9994.jpg` )
( name = `Tablet Pouch` productid = `HT-9995` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9995.jpg` )
( name = `Tablet Pouch` productid = `HT-9996` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9996.jpg` )
( name = `e-Book Reader ReadMe` productid = `HT-9997` suppliername = `Titanium` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9997.jpg` )
( name = `Smartphone Beta` productid = `HT-9998` suppliername = `Titanium` category = `Smartphones and Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9998.jpg` )
( name = `Maxi Tablet` productid = `HT-9999` suppliername = `Titanium` category = `Tablets`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/HT-9999.jpg` )
( name = `Flyer` productid = `PF-1000` suppliername = `Titanium` category = `Accessories`
productpicurl = `https://sdk.openui5.org/test-resources/sap/ui/documentation/sdk/images/PF-1000.jpg` )
).
ENDMETHOD.
ENDCLASS.
More in sap.m
- Menu with EndContent Items — EndContent (Button and/or Icon) can be added to some of the menu items.
- Breadcrumbs sample without current page — The breadcrumb shows the position of the object page in the application hiearchy, without…
- PDF Viewer - Two PDF Documents — Two PDF viewer frames displayed side by side. The second frame has the property isTrusted…
- Text - Render Whitespace — The Text control has a property allowing browsers to render whitespace and tabs.
- Notification List Group with max number of notifications reached — Notification List Group with max number of notifications reached. The group will render t…
- Text - Hyphenation — The Text control has a property allowing hyphenation.
- Message Box Details — MessageBox with the option to display detailed information.
- Semantic Page using Draft Indicator — Integration of Draft Indicator inside Semantic Page
- Tab Container - with icons and additional text — This example shows how you can add additional text and an Icon to the tabs in TabContaine…
- Custom Message Strip Design — Demonstrates MessageStrips with different colorSet and colorScheme properties.
- Object Header Responsive I — This is a responsive Object Header with a Title, 2 Statuses/Attributes rendered next to t…
- Table Select Dialog Growing — Table Select Dialog can be created with property growing set to true or false.
On this page