Hi everyone,
I'm using the new Telerik Rad Control and I would to use the GridView included.
But my problem is I recover with a webservice a List<List<String>> object and I would like to show it into my Datagridview.
I try to make a Grid.ItemSource = e.result but nothing appears ;-(
What's the problem ?
Thanks a lot.
Narglix
...
How's authorization supported in Telerik's MVC extensions ?
I am particularly interested in two cases:
tabs
grid row editing/deleting/inserting
...
Cannot create an object of type 'Telerik.Reporting.Report' from its string representation 'S2Member.TelerikSubscriptionReport, S2Member, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' for the 'Report' property.
Please help me for the above error.
Thanks
Basanth
...
I am using Telerik asp.net mvc extensions. I have an issue that happens only in IE. I have IE 8. I don't have this issue in Firefox (3.6.3) or Chrome (4.1.249.1059)
The problem happens when I want to pick a particular date by first clicking on the year on top and then the month. At that time, I get Invalid Argument error in jquery-1.4.2...
I have a webpage using jquery 1.42
The following 2 segments of code live in my page.
$('body').delegate('h2', 'click', function() {
$(this).after("<p>delegate paragraph!<\/p>");
});
$('body h2').live('click', function() {
$(this).after("<p>live paragraph!<\/p>");
});
The live method always works, yet the delegate doesn't fir...
I am using Telerik RadGridView in my project. I want to show image in column.
GridViewImageColumn col1 = new GridViewImageColumn();
col1.Width = 100;
col1.DataMemberBinding = new Binding("id");
col1.Header = "PhotoByConverter";
col1.DataMemberBinding.Conver...
We need to save the selected new page size to a session.
We have tried the PageSizeChanged event but the NewPageSize returns 0.
Is there a way we could get the new page size value? How? Thanks.
...
Hi,
I have a Start Button as one of the RadGridView columns. Upon clicking it, I need to update another a Status Column value in that particular row with a value as started and another column as Time Remaining which should show a countdown Timer value (in minutes) decreasing and auto updates/refreshes its value Every Minute.
How can I...
hi my dear friends...
my RadAjaxManager Code Is Like This :
<%--RAD AJAX MANAGER--%>
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" ClientEvents-OnRequestStart="RequestStartedOfRadAjaxManager1"
UpdatePanelsRenderMode="Inline">
<ClientEvents OnRequestStart="RequestStartedOfRadAjaxManager1" />
...
I'm using this code:
Dim VehiclesTable1 = dsVehicleList.Tables(0)
Dim VT1 = (From d In VehiclesTable1.AsEnumerable _
Select VehicleTypeName = d.Item("VehicleTypeName") _
, VTypeID = d.Item("VTypeID") _
, ImageURL = d.Item("ImageURL") _
, DailyRate = d.Item("DailyRate") _
...
Does anyone know how to programatically switch tabs in the Telerik tabstrip?
...
I dont know how to assign the max and min value for x and y axis to telerik wpf chart. can anyone tel..
...
I have what I think should be a straightforward question. I have a RadGrid with FormTemplate editing and AJAX enabled. One of the fields in the FormTemplate is a RadComboBox filled with U.S. State selections. I can bind the RadComboBox to the data source to populate all the items, but I'm not able to set the SelectedValue attribute.
...
Hi,
I would like to do something similar what we do in ASP.NET where we parse through all the rows in a GridView and assign a particular value to a particular cell in a row which has a matching TaskId as the current Id.
This has to happen in a Tick function of a Dispatcher Timer object. Since I have a Start Timer button Column for ever...
hi my dear friends :
my ASPX code is like this :
http://www12.speedyshare.com/files/22210524/download/ASPX.jpg
my c# - code behind code is like this :
http://www12.speedyshare.com/files/22210512/download/CodeBehind.jpg
at now my CheckBox1 CheckChanged Not work...
when i click on checkbox1 it disappears or nothing happens...
how can ...
How do i implement an autocomplete RadTextbox? I have a string[] but how do i link this to the RadTextbox? Documentation on Telerik site is really brief and i can't seem to find other stuff about it on the net.
...
I wish to set a property the C# property of a Chart object :
Chart.DefaultView.ChartArea.AxisX.DefaultLabelFormat ="dd mm aa";
but I will to do this with the styles in Silverlight :
<Application.Resources>
<Style x:Key="myStyle" TargetType="telerikCharting:RadChart"> ...
but I cannot make a :
<Setter Property="DefaultVi...
how can i set the ViewPaths of RadFileExplorer to the root of the pc. ie i have 2 drives (c and d) and i want to view both of them in the RadFileExplorer.
to what value should i set the ViewPaths ??
...
I having an issue with the ASP.NET Treeview control. I create the treeview just fine but the nodes will not expand or collapse. I see there is a javascript error but it is for line 1 character 0 of the webpage, there is nothing at line 1 character 0.
I am using the ASP:Treeview control in conjunction with the Telerik controls, but I'm n...
I have a Radgrid with 2 Textboxes and 2 DatePickers.
The idea is that I have a grid with a Property name, value, valid from and until.
I'm filling the first Textbox myself, the user has to fill in the value, from and until.
Filling in the propertynames:
(In the pageload)
foreach (String s in testProperties) {
DataRow dr = dt.NewRow(...