Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
123 views
Hello,
I've copied this demo to my pc:
http://demos.telerik.com/aspnet-ajax/upload/examples/async/ajaxprocessing/defaultcs.aspx?product=asyncupload 
and executed on VS 2008. 
Installed telerik version: Telerik.Web.UI, v.2011.3.1305.35
I tried to execute it on my localhost, using IIS. The demo seems to work, but the problem is:
I can't debug it using the VS debug menu - "attach to process". I can see the process and seemingly attach to it, but no debug can be done: all the debug steps are disabled (step into, step over, etc), all breakpoints are disabled and appear with an error message:"this breakpoint will not currently be hit. no symbols have been loaded for this document". 
Genady Sergeev
Telerik team
 answered on 08 Feb 2012
1 answer
100 views

Hello;

As I have been looking for multiple articles on saving history when performing partial postbackand then pressing back / forword buttons the state of the form reset , most of the examples make ajax request on the same page.

We are using telerik controls 2011 Q3

In my case; we redirect to anther page (as shown in the link below ) sample project and then when we press back button the form is empty or gets loaded like a new request.

Please find the attached project and advise

Appreciated

Thanks 

http://www.MegaShare.com/3866440

Pavlina
Telerik team
 answered on 08 Feb 2012
3 answers
68 views
I have scrollable Radgrid with 200 rows. How do I print complete grid ( all the rows)  not just the screen print.
FYI: This has Group By and subtotals, I want  to omit the edit images from the screen

Thanks 
Maria Ilieva
Telerik team
 answered on 08 Feb 2012
1 answer
125 views
I have a grid and it that grid I have a column, which in edit mode will have Rad:TextBox in some cases and Rad:ComboBox in others.
But I am unable to achieve how to dynamically change the edit template to show the comboxes and textboxes in different situation. Please help me out.

Thanks.
Princy
Top achievements
Rank 2
 answered on 08 Feb 2012
3 answers
82 views
Hi

I need rename the root directory dynamically because graphically displays the name as the folder is created on the server.

example, in the server folder called "201109010750", but I need to look at FileExplorer the name "My Files"

thanks!
Rumen
Telerik team
 answered on 08 Feb 2012
4 answers
146 views
Hi,

I have a simple RadChart in my application , but I have a little issue which is:

I have DataLabelsColumn as Number Rtrieved from Database & I don't know how to set a Custom Format to it Like

Percent Format and how to put an Appearance also . 
 
Please can anybody help me with this ...

Regarding,
Mahmoud
Evgenia
Telerik team
 answered on 08 Feb 2012
4 answers
105 views
Hello - I have deployed my application in 2 load balanced servers. The temporary folder is pointing to shared NAS. However the upload to tempo folder fails sporadically. Any idea on why it fails sporadically. thanks

Balaji
Peter Filipov
Telerik team
 answered on 08 Feb 2012
1 answer
80 views
Hi All,

Question is based on example provide here http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/filteringdetailtables/defaultcs.aspx

Scenario:
Step 1. Under column OrderId add search for user  "Alejandra Camino" for e.g. 10281, filter works fine and now you can see order details with orderId 10281.
Step 2. Now expand details for user "Alexander Feuer" you would notice column OrderId is pre-filled with search criteria that was used on step 1 which should not be the case (but the filter is not applied for this user which is good.)
Step 3. Lets enter search criteria for user "Alexander Feuer" under orderId for e.g. 10277, filter works. Now collapse details for user "Alejandra Camino" and expand the same row and orderId will display search text as 10277, but will display filtered records that was performed on Step 1 i.e. records for 10281.

Problem:
This is the same behavior that is happening on grid view I have integrated, please help to resolve this issue and an example on how to load information properly without overwriting search criteria for each row in DetailTable and still have a functional filter.


Regards,

J
Vasil
Telerik team
 answered on 08 Feb 2012
4 answers
373 views
Hai,

    I am creating a asp repeater for displaying images dynamically. The asp Repeater is created from server side. I have used asp image for displaying the image in the repeater. Now i have to show the tooltip for each image. The tooltip contains that same image in LargeSize. I created the repeater dynamically.
                                     Also dynamically add the image control in repeater. I used the Itemtemplate for add the  asp image control. Now i have to show the tooltip  for each image dynamically. How can i add this tooltip fro this images, which is added in template.

I added the code below.
protected Repeater ImageRepeater;     
  
  
    ImageRepeater.ItemTemplate = new ImageTemplate();
            ImageRepeater.DataSource = ImageTable;
            ImageRepeater.DataBind();
  
  
class ImageTemplate : ITemplate
    {
        Image ToolImg ;
        RadToolTip ImgToolTip; 
 
        public ImageTemplate()
        { }
    
        public void InstantiateIn(System.Web.UI.Control container)
        {
            Image Img = new Image ();
            ToolImg = new Image ();
 
            Img.DataBinding += new EventHandler(Img_DataBinding);
  
            LiteralControl StartDiv = new LiteralControl("<div style=\"float: left; padding-left:10px;\">");
            container.Controls.Add(StartDiv);
            container.Controls.Add(Img);
 
          ImgToolTip = new RadToolTip();
          
            ImgToolTip.Width = Unit.Pixel(300);
            ImgToolTip.Height = Unit.Pixel(300);
           ImgToolTip.TargetControlID= Img.ClientID;
           ImgToolTip.IsClientID = true;
           ImgToolTip.Controls.Add(ToolImg);
 
           container.Controls.Add(ImgToolTip);
  
            LiteralControl EndDiv = new LiteralControl("</div>");
            container.Controls.Add(EndDiv);
        }
  
        void Img_DataBinding(object sender, EventArgs e)
        {
            Image Img;
            Img = (Image )sender;
            RepeaterItem container = (RepeaterItem)Img.NamingContainer;
            Img.ImageUrl = "/_layouts/images/jobsarathyDemo/TempImages/"+DataBinder.Eval(container.DataItem, "ImageName").ToString();
 
             ToolImg.ImageURL = "/_layouts/images/jobsarathyDemo/TempImages/" + DataBinder.Eval(container.DataItem, "ImageName").ToString();
        }
    }

But it is not working.

Thanks
Velkumar.
Marin Bratanov
Telerik team
 answered on 08 Feb 2012
2 answers
231 views
We're looking to implement the RadToolbar as a primary UI Interface, and everything works great save for the fact that we sometimes have Drop Down menu items that need submenus.  We know you can't have a RadToolBarDropDown as a button within a RadToolBarDropDown, so that's out, and while we can get that type of functionality with the RadMenu, we then lose the ability to specify validation and validation groups on individual buttons in the toolbar.  We've tried using a RadToolBarButton with an ItemTemplate containing a RadMenu, but our problem with that is that it places the radMenu in a outlined box, so it loses the look of the other tool bar buttons.

Essentially, Is there a way to accomplish this in one of the following ways:

a) use a RadMenu in a RadToolbarButton ItemTemplate, but lose the outline styling around it and instead have it appear like any other toolbar button?

b) Use the RadToolBarDropDown button but have it pop up a menu (maybe a RadContextMenu?) instead of it's normal drop down in the same location that would have appeared?


Were open to other suggestions as well.

Thanks
Max
Top achievements
Rank 1
 answered on 08 Feb 2012
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?