jquery - rowspan is removed when using dataview in IE -
i have below template
<ul class="sys-template" id="visitingcard"> <li id="{{uiid}}"> <div class="profiles"> <div class="profile"> <table border="1" style="width: 100%; "> <tr > <td rowspan="3" > hello dear </td> </tr> <tr> <td> abc : abc </td> </tr> <tr> <td> xxx : xxx </td> </tr> </table> </div> </div> </li> </ul>
in script, creating dataview below:
var data=$create( sys.ui.dataview, { data: { uiid: "uiid:1", uiname: "test" } }, null, null, $get("visitingcard") );
rowspan specified in td removed when use $create()
in ie. can 1 provide solution this?
Comments
Post a Comment