sir,
i try with your example like below.......
<style type="text/css">
.CustomerID
{
width:100%;
background-color:#E0E0E0;
text-align:left;
font:normal normal 10px Helvetica, Arial,"Luxi Sans", sans-serif;
border:collapse solid 1px;
}
.ContactName
{
width:100%;
background-color:#E0E0E0;
text-align:left;
font:normal normal 10px Helvetica, Arial,"Luxi Sans", sans-serif;
border:collapse solid 1px;
}
.City
{
width:100%;
background-color:#E0E0E0;
text-align:left;
font:normal normal 10px Helvetica, Arial,"Luxi Sans", sans-serif;
border:collapse solid 1px;
}
</style>
i write css like above for datalist label. but it is not working. which way i have to write cssclass to binding datalist. as i notice you have use css class at jquery to set value like below.
$(".CustomerID", row).html($(this).find("CustomerID").text());
$(".ContactName", row).html($(this).find("ContactName").text());
$(".City", row).html($(this).find("City").text());
plz help me.