BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
GridDataBoundGrid grid = this.tabControl1.SelectedTab.Controls.OfType<GridDataBoundGrid>().First(); //Insert after index = grid.CurrentCell.RowIndex; //Insert before index = grid.CurrentCell.RowIndex - 1; DataRow dr = ds.Tables[tabindex].NewRow(); ds.Tables[tabindex].Rows.InsertAt(dr, index); |
I must say this software is highly disappointing after using telerik I'm just very disappointed at how horrible this add on is
//Insert Row before int count = this.gridDataBoundGrid1.ShowColumnHeaders ? 1 : 0; index = grid.CurrentCell.RowIndex - count; |
When I downloaded syncfusion I was looking for something visually appealing like teleriks RadGridView out of the box however syncfusion doesn't have any gridviews that are visually appealing out of the box plus telerik their RadGridView works directly with all my functions that were made for DataGridView so I believe I'm gonna be uninstalling syncfusion but thand anyways
Query |
Solution |
visually appealing like teleriks RadGridView out of the box however syncfusion doesn't have any gridviews that are visually appealing out of the box |
GridDataBoundgrid having more appearance which can be achieved by using GridVisualStyles property. Please refer to the below code example,
The following appearances are available for GridDataBoundGrid,
Code example
this.gridDataBoundGrid1.GridVisualStyles = GridVisualStyles.Metro;
Please let us know what kind of appearance do you want for the GridDataBoundGrid
Note:
This support also available for GridGroupingControl. Please refer the below UG link,
|
telerik their RadGridView works directly with all my functions that were made for DataGridView so I believe I'm gonna be uninstalling syncfusion but thand anyways |
We have provided the solution based on our GridDataBoundGrid current architecture. We are maintaining the column header in index due to maintaining the all visible cellstyles and Visible cells details. So, this is our default behavior and we cannot change this behavior.
|
Your reply is much appreciated after looking over the styles I am very pleased with the outcome(maybe this should be mentioned more in the docs) I am still not happy about the functionality but I believe I may be able to put up with it now :)
While here perhaps you can provide a solution for this issue as well...