I follow the link below to export all item of grid. But for .csv format its not working correct i.e. its exporting only Parent grid item not exporting nested grid items. Other format works correct.
I am using a custom dialog to implement the ImageManager as a standalone file manager for images (outside of RadEditor). I have hidden both the "Insert" button of the FileBrowser UserControl and the "Properties" tab of the ImageManager UserControl. However, if a user double clicks on an image, it still assuems they are trying to insert the image in some content and this results in the ImageManager dialog closing. Is there a way to disable the double click for files within the FileBrowser control in my custom dialogs?
If i hiding one or more columns using context menu and then again displaying same columns using context menu options UI get disturbed.
Means columns are not displaying with there previous width its extending with full screen with.
Good afternoon, I am with the following problem, to fill in the text box by as follows: 1.00 and then immediately change 0.00 he accepts, but if I do thus 0.20 and change to 0, it automatically returns to 0.20 ... not understood very well the because ... he is not accepting the decimal places with " 00 ".
I like to know if there is any drill down option for ASP.NET MVC chart controls provided by telerik. Can you please share some URL or documentation for the same ?
This does work but it seems rather redundant to have to update both the underlying DataTable (that the Grid is bound to) as well as the Label that sits in the row.
Is there, in fact, a more efficient way to do this?
I am facing a problem while trying to insert checkbox control into the cell during the itemdatabound event. The grid is tied to the datatable which is created dynamically.
This is the code:
Protected Sub gvCompareAccessories_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles gvCompareAccessories.ItemDataBound
If (e.Item.ItemType = Telerik.Web.UI.GridItemType.Item Or e.Item.ItemType = Telerik.Web.UI.GridItemType.Item) Then
'If TypeOf e.Item Is GridDataItem Then
Dim dt As GridDataItem = DirectCast(e.Item, GridDataItem)
'Dim imgbox As System.Web.UI.WebControls.Image = New System.Web.UI.WebControls.Image()
If (e.Item.RowIndex = 2) Then
Dim plcholder As PlaceHolder = New PlaceHolder()
Dim chkbox As CheckBox = New CheckBox()
For Each cellitem As GridTableCell In e.Item.Cells
chkbox.Text = "Remove"
plcholder.Controls.Add(chkbox)
cellitem.Controls.Add(plcholder)
Next
End If
End If
End Sub
Here in the code i am trying to insert the checkbox into each cell of row index 2. But the checkbox appears only in the last column.