Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
132 views
hi,

   How to Implement "LoadOnDemand"Property in MultiColumn RadCombo .
  And Populate RadCombo with TypeddataSet (.xsd file).
    Please Provide me with sample .


Thank you ..
Liji Jose
Top achievements
Rank 1
 asked on 12 Apr 2010
1 answer
106 views
I have set up a grid very similar to that in the online demo found here.

The issue exists in both the demo and my code (which is virtually identical).

Using the demo as a basis, what if the senario existed where I wanted to update the description only?
It will always force you to reupload the image anytime you want to update any of the other fields.

Can this demo be modified so I can edit any of the columns without having to upload an image each time (unless the image also happens to be one being edited)?
Rosen
Telerik team
 answered on 12 Apr 2010
1 answer
236 views
I believe Monday is the release date for the latest version of visual studio, and I know and have used the Telerik controls with the 2010 software however I was wondering if a new release of the Telerik controls will come out soon to reflect the final version of the .NET 4 framework?
Sebastian
Telerik team
 answered on 12 Apr 2010
1 answer
102 views
Hi,

We have an aspx page (say Page1) that contains a user control to upload files (it is not RadUpload), and a RadWindow to display a confirmation box. This aspx page (Page1) is displayed on top of another page (parent) (say Page 2).
The issue seems to come intermittently, while trying to upload files of type .xlsm where Page1 just flickers but does not upload the file.

We have observed that if we move the RadWindow declaration down (below the usercontrol and other controls) on Page1, it does upload some of the .xlsm files then.
Not sure what exactly is happening here but could you please give any idea for this kind of behaviour?

We are just showing the RadWindow through javascript (i.e. find(radwindowname).show). It has a OnClientClose method and DestroyOnClose is set to 'false'.

Thanks & Regards,
Puneet
Georgi Tunev
Telerik team
 answered on 12 Apr 2010
5 answers
120 views

1.
http://demos.telerik.com/aspnet-ajax/tooltip/examples/loadondemand/defaultcs.aspx

While the content is being loaded, the right border is invisible.

2.
If a delay occurs while the content is being loaded, and the user move the mouse to another product, the load image doesnt appears.
You can reproduce it by doing something like this:

 protected void OnAjaxUpdate(object sender, ToolTipUpdateEventArgs args)
 {
  UpdateToolTip(args.UpdatePanel);
 }

 private void UpdateToolTip(UpdatePanel updatePanel)
 {
  Label label = new Label();
  label.Text = "aaaaa";

  System.Threading.Thread.Sleep(3000);

  updatePanel.ContentTemplateContainer.Controls.Add(label);
 }

PS: How can I use the format code block?

Svetlina Anati
Telerik team
 answered on 12 Apr 2010
3 answers
103 views
Hi,

In my Datagrid, I added 3 Buttons in the edit column, the 1 is edit, and if you click there save and cancel will be shown.
But now my problem there is that this both buttons are on top of each other instead of side by side.

I tried to fix this with floating left. But this is not a good solution, and works only in a few browsers.

Has anyone any idea how to fix this?
Thomas Luck
Top achievements
Rank 1
 answered on 12 Apr 2010
2 answers
108 views
Is it possible to add a title after the check-box in the header of a GridClientSelectColumn?
Ewen
Top achievements
Rank 1
 answered on 12 Apr 2010
1 answer
105 views
Good Morning,

I added a chart control to my page and set the data source. Everything works just fine except one little detail. I set the width property of the chart control to 1000px (height to 500px), disabled visibility of title and legends. Now I have a lot of unsused white space in my control which the chart should fill in.

Have a look at the attached screenshot to see what I mean.

Can I influence the size of a chart inside a control?
Ves
Telerik team
 answered on 12 Apr 2010
7 answers
212 views
Attached image is the error generated when call set_mode(2) with AutoResizeHeight enabled.(I spend few hours to figure out this reason.)

In my application, I use tabstrip to switch editor mode , but when I enabled AutoResizeHeight and call ShowText method in IE, I always encounter some internal errors (no error in Firefox).

    function OnClientTabSelected(tabstrip, args) { 
        var multiPage = $find("<%=mp.ClientID %>"); 
        var tab = args.get_tab(); 
        var editor = getEditor(); // defined in ascx control 
 
        switch (tab.get_index()) { 
            case 0: 
                showHTML(tab, multiPage, editor); 
                break
            case 1: 
                showText(tab, multiPage, editor); 
                break
            case 2: 
                showSource(tab, multiPage, editor); 
                break
        } 
    } 
    function showHTML(tab, multiPage, editor) { 
        editor.set_mode(1); 
        showEditorToolbar(true); 
        if (multiPage.get_selectedIndex() != 0) 
            multiPage.set_selectedIndex(0); 
    } 
 
    function showText(tab, multiPage, editor) { 
        editor.set_mode(2); 
        //OnClientModeChange(editor); 
        showEditorToolbar(true); 
        if (multiPage.get_selectedIndex() != 0) 
            multiPage.set_selectedIndex(1); 
        //multiPage.set_selectedIndex(tab.get_index()); 
    } 

Rumen
Telerik team
 answered on 12 Apr 2010
1 answer
151 views
We have an edit window with an asp:SqlDataSource and FormView.  When we hit save, the SqlDataSource Updated event checks for exceptions, and if there are none, it injects the Close script for the window:

Inject.Text = "<script>CloseMe()</script>";

 

function CloseMe()  
{<br/> 
var oWindow = GetRadWindow();  
oWindow.argument = 1;  
oWindow.close();  

We recently updated the Telerik controls on our development server. 
What happens on development with this code is that the window does close, but not until after it flashes up a page that says "Navigation to the Webpage has been Cancelled".  On our Production server, which hasn't been updated, it doesn't do that. It just shows the loading panel before it closes. 

I have tried just about all I can think of to remedy this on my end.  I believe it is something happening differently with the IFRAME in the RAD Window or the RAD Panel in the most recent update.

Anyone have any suggestions?

 

Georgi Tunev
Telerik team
 answered on 12 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?