即使在 Flexigrid 中如何打开打开状态
我正在使用 flexigrid 从页面中提取数据
$("#Details").flexigrid({
url: 'getdata.aspx?id=' + $("#txtSelectedID").val() + '&breakdown=true',
dataType: 'json', colModel: [
{ display: 'Description', name: 'BreakDetails', width: 300, align: 'left' },
{ display: 'Percentage', name: 'BreakVal1', width: 50, align: 'left' },
{ display: 'Amount', name: 'BreakVal2', width: 50, align: 'left' },
{ display: 'Total', name: 'BreakVal3', width: 50, align: 'left' }
],
preProcess: formatBreakdownResults,
width: 550, Height:550
});
现在我想在加载后将其显示在对话框中。是否有打开或加载之类的事件?
I am using flexigrid to pull data from a page
$("#Details").flexigrid({
url: 'getdata.aspx?id=' + $("#txtSelectedID").val() + '&breakdown=true',
dataType: 'json', colModel: [
{ display: 'Description', name: 'BreakDetails', width: 300, align: 'left' },
{ display: 'Percentage', name: 'BreakVal1', width: 50, align: 'left' },
{ display: 'Amount', name: 'BreakVal2', width: 50, align: 'left' },
{ display: 'Total', name: 'BreakVal3', width: 50, align: 'left' }
],
preProcess: formatBreakdownResults,
width: 550, Height:550
});
Now I want to show it inside a dialog once it loads. is there an event like open or loaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
延长其中一项活动怎么样?
How about extending one of these event?