I'm trying to decide on the right control to use for a page i'd like to build. I initially started with radgrid but i think a listview would be better. also if anyone has any links to similar samples that would be helpful. Thanks.
I'm trying to build a page that will load 1,000's, if not 10,000's of rows of very simply text data, but i want the user experience to be like this page link here where it loads the first several thousand rows, and then when the user reaches the bottom, it does an ajax call to load another several thousand rows, and so on. can this be achieved with radgrid? or is listview the better choice?
http://pedump.me/880541c6303296db1b891ddd71c82c41/#disasm
Thanks

Dear All,
So right now I have a problem:
My Radeditor can't edit and don't show content on Chrome when I assign in code behind. But in last week, it work well.
I try to run on Telerik demo site, it same here. but it work on FF or IE.
Pls, help me how to fix it.
Thanks so much!!!

I have web service that return a json object like this
{
fieldOne : "valueOne",
fieldTwo : "valueTwo",
fieldThree : "valueThree",
fieldFour : [{innerFieldOne : "iValueOne" , innerFieldTwo : "iValueTwo" }]
}
in fieldFour array some times it will not contain objects. It can be contain maximum 4 objects.
What I want is in the grid add a new button and give a availability to update fieldFour. I need a new popup to edit and delete to fieldFour values beside default edit popup.(simply I need default edit popup and fieldFour edit popup) In that fieldFour edit popup can I add and remove the object ??
Ex : if I add a object to fieldFour it will look like this....
fieldFour : [{innerFieldOne : "iValueOne" , innerFieldTwo : "iValueTwo" } , {innerFieldOne : "iValueOne" , innerFieldTwo : "iValueTwo" }]
Can this do in using Kendo UI Grid ??
I need a bubble chart where the size of the bubble has two dimensions (Width & Height).
Is this possible and if so how?
Hi
im probably being a bit silly but i cant work out how to get this to work properly i want the notification to check on an interval , but get the data from a web service , but if there is no data from the web service i dont want it to pop anything up.
this is what i have so far
<telerik:RadNotification ID="RadNotification1" Animation="Slide" runat="server" OffsetX="-20"<br> VisibleOnPageLoad="true" OffsetY="-20" Width="250px" Height="80px" LoadContentOn="TimeInterval"<br> WebMethodName="GetWeatherForcast" WebMethodPath="../Services/EclipseService.asmx"<br> UpdateInterval="30000" AutoCloseDelay="1500" KeepOnMouseOver="true" RenderMode="Lightweight"<br> VisibleTitlebar="false" Value="rainyState" EnableRoundedCorners="true" Skin="Office2007" OnClientUpdated="OnClientUpdated"><br> </telerik:RadNotification>
and for the JS function
function OnClientUpdated(sender, args) {
var newMsgs = sender.get_value();
if (newMsgs != 0) {
sender.show();
}
}
it mostly seems to work , but i need it not to pop up anything when no data is returned from the web service ?
​

Hello,
I have come across a problem with the editor
We have recently upgraded the telerik controls from V 2013 to V 2015.2.623.45.
After upgrade new version that some functionality are messed up.
Steps to reproduce the issue.
1 - Add below content HTML mode.
test<br><br>test<br><br>test<br><br><table style="width: 242px; height: 92px;"><tbody><tr><td> </td><td > Test</td><td> </td></tr><tr><td> </td><td> </td><td> </td></tr></tbody></table><br>
2 - Back to Design view and try to set align of "Test" text which is in table.
3 - Go to HTML mode and check all content.it is as below which are wrong and style should be in <p> tag inside <td>.
Wrong Content : "test<br><br>test<br><br>test<br><br><table style="width: 242px; height: 92px;"><tbody><tr><td> </td><td style="text-align: center;"> Test</td><td> </td></tr><tr><td> </td><td> </td><td> </td></tr></tbody></table><br>"
It should be : "test<br><br>test<br><br>test<br><br><table style="width: 242px; height: 92px;"><tbody><tr><td> </td><td > <p align="center">Test</p></td><td> </td></tr><tr><td> </td><td> </td><td> </td></tr></tbody></table><br>"
This can easily be reproduced on your demo site as well(Chrome).
Is there any fix or workaround for this issue?
Please suggest.
Thanks.

Hi
I have posted the problem before, but I think I might not ask in a correct way.
I create an appointment in Rad scheduler. it works fine if the appointment is a day long.
But when it is longer then a day, it only shows the first day and on Sunday(if the appointment is cross Sunday).
Appreciated!
Chris
Hi
This is my online quiz scenario:
First Step of wizard: Shows a description of quiz
.
Middle steps of wizard: creating dynamically using database
.
Finally step of wizard: Shows quiz result using chart
I read Rad Wizard description and I saw others discussion about it but I don't know how can do with my scenario.
Please help me.

Hi,
I have a Bubble Chart (RadHtmlChart) filled by a datatable in which every row is a serie.
Bubble on the chart have the same size even the value assigned to Size property of seriesItem is different.
How can I have the correct size for each series?
Here's the code used to fille chart.
// get data
DataTable dt = ChartQueryStringParameters.GetChartSeries(p.PMaster, p.Level, p.L_Item, itemsPerChart);
// bidning data to volume chart
foreach (DataRow dr in dt.Rows)
{
if (dr["Vol_Dimension"].ToString() != "0")
{
BubbleSeries bSerie = new BubbleSeries();
bSerie.Name = dr["SerieName"].ToString().Replace("'", "\\'");
SeriesItem sItem = new SeriesItem();
sItem.XValue = Convert.ToDecimal(dr["Vol_XValue"]);
sItem.YValue = Convert.ToDecimal(dr["Vol_YValue"]);
sItem.SizeValue = Convert.ToDecimal(dr["Vol_Dimension"]);
sItem.TooltipValue = dr["SerieName"].ToString().Replace("'", "\\'");
bSerie.Items.Add(sItem);
BubbleChartGAP_Volume.PlotArea.XAxis.AxisCrossingValue = Convert.ToDecimal(dr["Vol_XAxis"]);
BubbleChartGAP_Volume.PlotArea.YAxis.AxisCrossingValue = Convert.ToDecimal(dr["Vol_YAxis"]);
BubbleChartGAP_Volume.PlotArea.Series.Add(bSerie);
}
}
Thank you.