我在我的项目中使用jquery kendo网格,其中我使用行模板在一行中显示三列。以下是代码:
<table id="grid" style="width:100%">
<thead style="display:none">
<tr>
<th>
Details
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3"></td>
</tr>
<tr>
<td>
</td>
</tr>
</tbody>
</table>
<script id="rowTemplate" type="text/x-kendo-tmpl">
<div>
<span class="name" style="font-size:medium">#: FirstValue #</span>
<span class="name" style="font-size:medium">#: SecondValue #</span>
</div>
<tr>
<td style="width:30%">
<a href="#" class="name" style="color:blue">#: GetName #</a>
<span class="name" style="font-size:14px; color:green">#: Designation #</span>
<span class="name" style="font-family:Arial; font-size:small">#: Company #</span>
</td>
</tr>
</script>
&#13;
在上面的代码中我只是传递我的模型数据它工作正常,但是当我添加一个具有值firstName和LastName的div所以它也重复这个数据但我想分别显示。如何我是否单独展示它,以免它与网格重复。
答案 0 :(得分:0)
你的html模板中有一个问题。
请替换&#39;#&#39;使用&#39; Javascript:void(0)&#39;。
http://jsfiddle.net/parthiv89/t0w3ht6m/1/
希望这对你有用。
{{1}}
如果你愿意,那就不要忘了。
答案 1 :(得分:0)
我自己得到了解决方案,首先我改变了我的架构中的代码:
-(void)longpress:(UILongPressGestureRecognizer *)longg
{
UIGestureRecognizerState state =[longg state];
if(state ==UIGestureRecognizerStateBegan ||state ==UIGestureRecognizerStateChanged)
{
int temptag=[longg.view tag];
UIImageView *views=(UIImageView *)arrimgstore[temptag];
NSLog(@"got it to super view %@",views);
[UIImageView animateWithDuration:0.1 delay:1 usingSpringWithDamping:2 initialSpringVelocity:2 options:UIViewAnimationOptionLayoutSubviews animations:^{
[_imgfull bringSubviewToFront:views];
} completion:nil];
}
}
然后在html中我使用了两个span来显示这个值,它存在于for循环中。 它对我来说很好。 谢谢大家。