i have a Listview with items that has almost 100 chars, but i need to show the full text, how can i do that ?
<ul data-role="listview" data-filter="true" data-inset="true">
<li data-filtertext="Hola" data-theme="b"><a href="" >Hola</a></li>
<li data-filtertext="mundo"><a href="" >mundomundomundomundomundo mundo mundomundomundomundomundo mundomundomundo mundomundomundo mundomundomundomundomundomundomundo mundomundomundo</a></li>
<li data-filtertext="hello"><a href="" >hello</a></li>
<li data-filtertext="world"><a href="" >world</a></li>
</ul>
You can use just modify the
white-spacepropertyFor example
Of course It would probably be better to avoid using inline styles, and you would probably be better off just adding a class to the list items you want to custom style…