RadChartGraph.Legend.HAlignment = ChartHAlignment.Center
RadChartGraph.Legend.VAlignment = ChartVAlignment.Bottom
RadChartGraph.Legend.Location = ChartLocation.OutsidePlotArea
RadChartGraph.Legend.LegendStyle = LegendItemsPositionType.Row
but its not working please let me know the solution of this problem.
OnClientNodeClicking of Telerik Treeview?
Please help.
Thanks
Protected Sub cmdAddNAICS_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdAddNAICS.Click
CType(CType(sender, CheckBox).Parent.Parent, GridItem).Selected = CType(sender, CheckBox).Checked
Dim pvChk As Boolean
'Dim dataItem As Telerik.WebControls.GridDataItem
Dim cCoC As New cContractorClassification
If (CType(sender, CheckBox)).Checked Then
For Each dataItem As GridDataItem In gvSelectList.MasterTableView.Items
CType(dataItem.FindControl("chkSelect"), CheckBox).Checked = True
dataItem.Selected =
True
pvChk = dataItem.Selected
'If pvChk = True Then
cCoC.CONTRACTOR_SID = Session.Item(
"ContractorSID")
cCoC.MERCHANT_XREF_SID =
CInt(dataItem.Item("MERCHANT_XREF_SID").Text)
cCoC.CONTRACTOR_CLASSIFICATION_ACTIVE =
True
'cCoC.Update()
Next
Else
For Each dataItem As GridDataItem In gvSelectList.MasterTableView.Items
CType(dataItem.FindControl("chkSelect"), CheckBox).Checked = False
dataItem.Selected =
False
Next
End If
End Sub
I try to use Items from RadComboBox as input for a ControlParameter in a ObjectDataSource (or SqlDataSource). But I get an error:
Type 'Telerik.Web.UI.RadComboBoxItemCollection' in Assembly 'Telerik.Web.UI, Version=2008.1.619.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4' is not marked as serializable.
Why I do that? I have expanded the ComboBox in a ItemTemplate with checkboxes and I need to find out which boxes are checked. Normally I loop over the collection and check the checkboxes.
But where to do that when the ComboBox is bound to a ObjectDataSource or SqlDataSource?
Overriding the control and add a new property? Is there any event to use?
Telerik: Is it possible to make Items serializable?
Thanks for any suggestions
Eric
Skin
="Office2007"
ImagesPath="~/Skins/Office2007/Grid"
EnableEmbeddedSkins="true"
This works great and shows the correct images except for my
telerik
:GridDropDownColumn
It does not see the stylesheet or images for it. What do I need to do?
Nancy