iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
I have a grouped WebGrid 6.0. For some reason the group sum isn't recalculated when a change is made on a record.How can the group sum be automatically recalculated?// Staffan E.
In order to automatically recalculate the group sum you will need to refresh the grid. You could achieve this by invoking the refreshGrid script from UpdateRow server side event handler. Here is the snippet:
UpdateRow event handler:
protected void WebGrid1_UpdateRow(object sender, ISNet.WebUI.WebGrid.RowEventArgs e){ WebGrid1.ClientAction.InvokeScript("refreshGrid()");}
RefreshGrid client side function:
function refreshGrid() { setTimeout(function() { var grid = ISGetObject("WebGrid1"); grid.Refresh(); }, 50); }
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname