hi, i want have some textboxes in a RadGrid and i use each one of the(insert some data in database)
i don't know what i have to do please some help to me
<telerik:RadGrid AutoGenerateColumns="False" ID="RIV_RateHireGrid" MasterTableView-DataKeyNames="ID" AllowPaging="True" PageSize="5" AllowCustomPaging="False"Hi
I'm having the same problem. i bind dropdown with sqldatasource.and the items are showing as my data. but when try to find that dropdown with BatchEditCommand event its says items count 0. i don't understand the problem. please help..
Is there a way to force the NumericTextbox to display only the numeric keypad on mobile devices? I can do it with a textbox and use radinputmanager to get the effect I want, but it's causing some other issues so I would prefer to just use the NumericTextbox if possible.
Thanks,
Hi,
On which event I need to write my code for add new task ? When I click on "Save" button from add new task popup, event should be fired and execute my code.
Hi,
I've a problem with radGrid.
If I hide a column in PreRender event using Me.Grid1.MasterTableView.RenderColumns(3).Visible = False, when I try to retreive the value in ItemDataBound event, the value is
If the column is visible, the value is shown correctly.
I've recently updated Telerik from 2009.3.1314.35 to 2014.3.1209.35.
Before this update, everything was working well
I work with VS 2013.
Any ideas?
Thanks
Is there a way to find all the radsearchbox objects on a page on clientside? I know for comboboxes I would use the following code, but I'm not sure how to find for radsearchboxes.
for
(
var
i = 0; i < Telerik.Web.UI.RadComboBox.ComboBoxes.length; i++) {
var
objComboBox = Telerik.Web.UI.RadComboBox.ComboBoxes[i];
alert(
'Combobox ClientId : '
+ objComboBox.get_id());
}
Dim radChart As New RadHtmlChart()
radChart.ID = "Rad" & iRadCharts
Dim oSeries As Telerik.Web.UI.ColumnSeries = New Telerik.Web.UI.ColumnSeries
oSeries.LabelsAppearance.Visible = False
oSeries.Stacked = True
oSeries.GroupName = "test"
LOOP
Dim oCategorySeriesItem As Telerik.Web.UI.CategorySeriesItem = New Telerik.Web.UI.CategorySeriesItem
oCategorySeriesItem.Y = Format(v, "0.00")
radChart.PlotArea.XAxis.Items.Add(sDate)
oSeries.SeriesItems.Add(oCategorySeriesItem)
Dim oCategorySeriesItem2 As Telerik.Web.UI.CategorySeriesItem = New Telerik.Web.UI.CategorySeriesItem
oCategorySeriesItem2.Y = Format(vMax, "0.00")
oCategorySeriesItem2.BackgroundColor = Drawing.Color.Beige
radChart.PlotArea.XAxis.Items.Add(sDate)
oSeries.SeriesItems.Add(oCategorySeriesItem2)
END LOOP
radChart.PlotArea.Series.Add(oSeries)
HtmlChartHolder.Controls.Add(radChart)