Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
385
Web Grid CSOM to display text on form
posted

Hi,


I have a very simple grid that users input ordering information.  The last column is the product of two other columns.  I also display the sum of all the products at the bottom in a footer.  I also take the amount shown in the footer and display it in a textbox outside of the form.  I am able to do this by using the "AfterRowInsertHandler" event.  Here is the code:


function UltraWebGrid1_AfterRowInsertHandler(gridName, cellId){

var col = igtbl_getColumnById("UltraWebGrid1_rc_0_7");

document.getElementById(Subtotal).value = (col.getFooterText())

);
}

This is working but only when I click in the first cell of the next row - this is a problem because the user will not always do this.  What event should I use to have this javascript be invoked after the user tabs off of the row?

Thanks for your help!

 

JCC

Parents Reply Children
No Data