Browse By Tags

  • Forum Post: Controls in webgrid

    Dear, Can anyone tell me how to add controls dynamically into webgrid? If there are 3 rows, then all the 3 rows should display the control. On adding a new row, control should display it the new row also. The datasource for the webgrid I will use is datatable. Thanks in advance
  • Forum Post: Re: C1WebGrid1 to load from existing DataSet

    I followed your suggestion about not using DataSourceID and it sorta fixed things. Thanks! However, I have 2 new challenges I am facing: 1. I was able to bind properly from columns within the same table but not multiple columns from different tables of the same DataSet. 2. how to populate specific cell...
  • Forum Post: Add new row to C1WebGrid

    Hello, I am trying to add new row into C1WebGrid, I am following on the help, but it's not working.. to do SQLInsert, SQLUpdate, SQLDelete .. I use SQLDatasource and its bound to C1WebGrid What I had: Private Sub C1WebGrid1_ItemCreated( ByVal sender As Object , ByVal e As C1.Web.C1WebGrid.C1ItemEventArgs...
  • Forum Post: Re: How to Add a New Record in webgrid control

    Have you looked at the sample in the documentation for this? It has something quite similar to what you are trying to accomplish. To add a new row to the WebGrid you have to add a new row to the data source and then rebind the grid. Then you use the Edit mode feature to have the text boxes added for...