Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
111 views
I have found the root cause of the error and need a fix.

It appears that the temporaryFolder is not implemented the same for Silverlight and Flash.

The flash uploader sends files to the handler and the handler does not assemble the files in the  temporaryFolder until the post is complete.   The uploadhandler for silverlight assembles the file directly in the temporaryFolder.

This can be reproduced by disabling silverlight plugin in firefox and uploading any large file using Flash.
The File is not copied to the temporaryFolder until the upload is complete.

The ISSUE with this is that the app_data/RadUploadTemp folder on some hosts (Azure) is limited to 100 MB so the upload fills the temporary storage and raises an error "DISK FULL" which in turn causes a recycle of the application pool to purge the temporary storage.

I need a fix for the Flash Upload Handler to use the TemporaryFolder the same way Silverlight does.
I have not tested the case when flash and silverlight are not available but if the ajax uploader also uses the default storage rather than the TemporaryFolder property then that should be addressed too.
 
Please advise asap! I already have a support ticket open on this but need a quick resolution.
Genady Sergeev
Telerik team
 answered on 07 Feb 2011
2 answers
52 views
Hi,

I was using VS 2008 and my radgrid's pagerstyle was working as per my code. But, now when I upgraded to VS 2010, it does't work the same. I set the pagerstyle settings in page_prerender to be true or false based on grid itemcount, so that the pagerstyle is visible.
Ex: Suppose the total records in the grid are 48 and the page size chosen is 50, then also the pagerstyle is displayed in VS 2008.
In VS 2010, if I go one by one on page size, like from 10 to 12 to 20 to 50, its fine, but when I skip any of them, its not displayed any more.
My new version of telerik is : Telerik Tools Suite 2010 1.0.0.1 XP.

Page_Prerender()  {

if (grid.Items.Count > 10)

        { grid.PagerStyle.AlwaysVisible = true; }

else

        { grid.PagerStyle.AlwaysVisible = false;}

}
Thanks for your time.
Regards,
Raj

Raj
Top achievements
Rank 1
 answered on 07 Feb 2011
1 answer
28 views
Hi ,
I have an urgent task to do in my application please answer me ASAP for my following question:
I want to display default checkbox with each date on radschedular and if i have appointment then this checkbox will not come .
I haven't founded any template column rather than Appointment template.So please,  help me for my scenario ASAP.

Thanks in Advance

Thanks
Gaurav Bhardwaj
Peter
Telerik team
 answered on 07 Feb 2011
1 answer
70 views
Dear Sir ,

                I want to create general client function which takes any RadGrid in client side and creates a Jason string in the client side for all the rows data in Radgrid . Later this Jason string can be passed to server side using web service .  I think this will be a light weight and high speed way to transfer the data to server and save it in the server side .

Pls correct me if I am wrong in my thinking .
Daniel
Telerik team
 answered on 07 Feb 2011
6 answers
57 views
Hi;
We are using RadTabstrip and create Tabs dynamicalliy also on popup we try to navigate to the particular 
Tab dynamically from code. but this functionality work fine in IE 7.0 and IE 8.0 but in IE 6.0 these
does not work ( we are unable to navigate to particular tab selected in IE 6.0) .
Can you please let me know what is the issue

Here is the sample snippet of the code

tab = RadTabStrip1.FindTabByText("Tab1");
tab.Selected =

 

true;
pageView.Selected = true;

 

please assume that "Tab1" tab was already created

Yana
Telerik team
 answered on 07 Feb 2011
6 answers
147 views
Hello!

Are there any Gauge controls in the works? Several other vendors have them ( Component One), but would rather stick with Telerik. They look excellent  and would be great for presenting information on a "dashboard" form to summarize site data.

Thanks
Harold
Tim Tos
Top achievements
Rank 1
 answered on 07 Feb 2011
1 answer
51 views
I have a RadChart in a page 

<
telerik:RadChart ID="ChartProjects" runat="server" DataGroupColumn="ProjectName" AutoTextWrap="True" Skin="Colorful" Height="400px" Width="0px"></telerik:RadChart>

While changing the width to 80% in the property window the width automatically became 0px 
and this is what caused the error. So I have corrected it.

I can now see the chart OK with the Y Axis fine with increasing numbers and also the Series is OK.
But please help me in regards to the X axis text content.
It currently shows 1 in the center

I tried these lines of codes (one at a time) but seems to do nothing!
ChartProjects.PlotArea.XAxis.AddItem(projectCount)

 

 

 

 

ChartProjects.PlotArea.XAxis.AxisLabel.TextBlock.Text = dbRow(

 

"ProjectName").ToString.Substring(0, 2)

 

 

 

 

 

 

 

 

 

Can you help in this regards?

Thanks,
Sanjay



 

Evgenia
Telerik team
 answered on 07 Feb 2011
1 answer
100 views
Hello, 
Sorry for my english, but i question, RadListview RadDataPager can double as Radgridview paging (up and down)
Thanks.
Radoslav
Telerik team
 answered on 07 Feb 2011
2 answers
280 views
Hi,

I have using radgrid in my application. when i clicked edit button i have set tab index to first control in edit template like (textbox). and also tab index align also fine. tab index going update and cancel. it is fine. then i clicked tab it will go to again text box like only with in edit item template.

how to set tab index with edit item template.

I have attached image please help me.

Thanks,
Dhamu.
Dhamodharan
Top achievements
Rank 1
 answered on 07 Feb 2011
2 answers
99 views
Hi,

I have created a combobox load on demand and I want to add an another combox box when I select an item of the first combo box. The second combo box must use the selected value of the first combo box to execute an SQL query and to retrieve items.


When I select an item of the first combo box, the second combobox is added, but when I open it, a popup is displayed.

Here is the code of my issue.

Thanks a lot.


protected void Page_Load(object sender, EventArgs e)
   {
       ComboBoxLoadOnDemand cbx = new ComboBoxLoadOnDemand();
       cbx.TableName = "ddl_report_collaborator";
       cbx.DataTextField = "text_ddl";
       cbx.DataValueField = "value_ddl";
       cbx.Height = Unit.Pixel(250);
       cbx.Width = Unit.Pixel(200);
       cbx.NbItemsRequested = 50;
       cbx.AutoPostBack = true;
       cbx.ShowMoreResultsBox = true;
       this.form1.Controls.Add(cbx);
       cbx.SelectedIndexChanged += new Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventHandler(cbx_SelectedIndexChanged);
        
        
   }
   void cbx_SelectedIndexChanged(object sender, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e)
   {
       ComboBoxLoadOnDemand cbx2 = new ComboBoxLoadOnDemand();
       cbx2.TableName = "ddl_report_collaborator";
       cbx2.DataTextField = "text_ddl";
       cbx2.DataValueField = "value_ddl";
       cbx2.Height = Unit.Pixel(250);
       cbx2.Width = Unit.Pixel(200);
       cbx2.NbItemsRequested = 50;
       cbx2.ShowMoreResultsBox = true;
       this.form1.Controls.Add(cbx2);
   }
TANSERI
Top achievements
Rank 1
 answered on 07 Feb 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?