</div>
<div data-role="content" >
<h1>Loading custom globalize culture file</h1>
- <p>A predefined Globalize culture file is loaded by the loader in Tizen Web UI Framework, according to the current language. If you want to load additional culture file, you can create each culture files, and let to choose one of them to load it by using $.tizen.util.loadCustomGlobalizeCulture() API.</p>
+ <p style="word-wrap:break-word;">A predefined Globalize culture file is loaded by the loader in Tizen Web UI Framework, according to the current language. If you want to load additional culture file, you can create each culture files, and let to choose one of them to load it by using $.tizen.util.loadCustomGlobalizeCulture() API.</p>
<hr>
</div>
<div data-role="footer">
<div>Example #1 Trigger Create</div>
<div>Trigger Create after append element on HTML.</div>
<div>
- <p style="width:100%; padding:1em; background-color:whitesmoke; color:black;
+ <p style="padding:1em; background-color:whitesmoke; color:black;
border-width:3px; border-style:inset">
$( "#checkboxItems" ).append( newhtml) ;<br>
$( "#checkboxItems" ).trigger( "create" );<br>
Call buttonMarkup() or trigger "create" to the parent of button.
</div>
<div>
- <p style="width:100%; padding:1em; background-color:whitesmoke; color:black;
+ <p style="padding:1em; background-color:whitesmoke; color:black;
border-width:3px; border-style:inset">
/* Append new button */<br>
var buttonTemplate = "<div data-role='button' data-inline='true' " + "data-icon='call' data-style='circle' " + "data-theme='s' class='newbutton'></div>"; <br>
To add new <LI> element on JQM listview, insert items and call "refresh" to the listview.<br>
</div>
<div>
- <p style="width:100%; padding:1em; background-color:whitesmoke; color:black;
+ <p style="padding:1em; background-color:whitesmoke; color:black;
border-width:3px; border-style:inset">
var listTemplate = "<li>Appended New Item</li>";<br>
$( listTemplate ).appendTo( "#listview" );<br>