Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下代码将新查询传递给 FlexiGrid:
$('#fgAllPatients').flexReload({ query: 'blah=qweqweqwe' });
但是当它返回到 web 服务时,它只是获取旧参数而忽略这个新参数。帮助!
你需要这样做
$('#fgAllPatients').flexOptions({ query: 'blah=qweqweqwe' }).flexReload();
抱歉这么晚了最近没关注这个标签