Good Day
Please help,
How can i format the date when exporting treelist data to excel, using Telerik version 2013.3.1324.40.
function
EnableDisable() {
button2 = document.getElementById("RadButton2_input");
button2.disabled = false;
}
Private
Sub
RadGrid1_ItemCommand(
ByVal
source
As
Object
,
ByVal
e
As
Telerik.Web.UI.GridCommandEventArgs)
Handles
RadGrid1.ItemCommand
If
e.CommandName = RadGrid.EditCommandName
Then
Dim
editItem
As
GridEditableItem =
CType
(RadGrid1.MasterTableView.GetItems(GridItemType.EditItem)(0), GridEditableItem)
For
Each
column
As
GridColumn
In
RadGrid1.MasterTableView.Columns
If
column.UniqueName =
"POL"
Then
Dim
txtbox
As
TextBox =
CType
(editItem (column.UniqueName).Controls(0), TextBox)
txtbox.
ReadOnly
=
True
End
If
Next
End
If
End
Sub
If
e.CommandName = RadGrid.EditCommandName
Then
Dim
editItem
As
GridEditableItem =
CType
(RadGrid1.MasterTableView.GetItems(GridItemType.EditItem)(0), GridEditableItem)
Hello,
I have a radGrid wich has detailtables and gridTableView to show the information grouped. The problem is that i lost the item style of the detail tables when a expand one level (in columnCreated event is on i set the width properties of the columns) event. I use autogeneratedcolumn.
Any idea?
thanks!
Hi, all my RadWindows on my Web Project in Framework 2.0 are rendering incorrectly in Internet Explorer 11 runing in Visual Studio(localhost) or in Windows Server 2008 . The same app running in Firefox or Explorer 8,9, 10 or IE 11 with compatibility mode works perfect.
Any Idea or posible solution , I have already tried multiple solutions but neither work for me.
Thanks in Advance
When a user selects to paste from text from the editor toolbar then some of the area for pasting displays behind the toolbar. How do I make the toolbar stay behind that popup to paste text?