I am using textbox to display the data being fetched from database , but sometime the data is long text .So for the user prospective it's not looking nice . Is there any other options to textbox . Suggestions or solutions needed .
Code i am using
HTML----
<div><div style="width:12%;float:left; margin-left:2%;" >Material</div> <div style="margin-left:15%;" id="serialno1" >Please Select </div></div><br />
Script----
$("#serialno1").html("<div style='margin: 10px; background-color:#CDD9E1;'>" + event.args.element.id + "</div>");
Right now i am not fetching data from db , will it possible to get data and display as what i am using now..