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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -