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
500
why didn't add TemplatedColumn on Client-Side
posted

I have an UltraWebGrid and this UltraWebGrid has a TemplatedColumn,In the TemplatedColumn  has a button.When I used igtbl_addNew function add an new row on Client-side,the new row has added,but the templatedcolumn didn't show a button in the new row,

how to show the button in the templatedcolumn in the new row?

Parents
No Data
Reply
  • 10
    Offline posted
    Don't know if you got your answer yet or not but I had the same problem and solved it by causing a post back after the addNew function:

    igtbl_addNew(gridName,0);

    igtbl_doPostBack(gridName);

Children
No Data