我想在DB中设置数据后在KendoGrid中将scroll'位置设置为bottom。 我试过这样的。但它不起作用。如何在Grid的底部设置焦点?
def fib(n):
global numcalls
numcalls += 1 #this will increment with every fib() call
if n ==0 or n ==1:
return 1
else:
return fib(n-1) + fib(n-2)
print('numcalls =', numcalls)
答案 0 :(得分:0)
您需要在网格的dataBound事件中指定滚动
dataBound:function(){
this.content.scrollTop(this.tbody.height())
}
请看下面的例子