Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
89 views
I've a RadTreeView control displaying images from different folders. I want the RadRotator control to display a slide show of all the images in the folder when the user hovers over a folder. How do I go about doing this?
Fiko
Telerik team
 answered on 09 Jul 2009
2 answers
93 views
Hello Telerik:

Just a couple of months ago, I was contemplating developing a human user verification tool, which I tabled for a while.  I then installed the current Beta release and found that you added RadCaptcha!  Now not only do I not have to do this, but you've done it better than I would have done it.  Thank you!

So, a customer has requested a Tag Cloud - something else I've got as a someday task.  What's the chance you guys at Telerik can put your genius toward for me?  I see this was requested a long time ago, but (as far as I can see), nothing has come of it.

It seems to me that this is a natural for your product lineup, and given how you guys do this, I suspect you would do it quite well.

Please, please, Telerik.  Make it so (before I have to!)

(I was hoping for points for suggesting a new product, but since it's not an original request...)

Thank you for considering this.
LeBear
Top achievements
Rank 1
 answered on 09 Jul 2009
3 answers
93 views
Hi Guys,

Is there a way to Client side filter a grid on multiple columns? As an example, say I have two columns; Title & Description. If I have a textbox where someone can enter a filter term I want to be able to use that serch term on both columns in an OR fashion to accomplish the following




Yavor
Telerik team
 answered on 09 Jul 2009
12 answers
750 views
Parent page vertical scrollbars disappear when a rad windows is opened and does not reappear on close.

Any ideas of a solution/workaround? Is this a bug?

I'm using IE7.
nenita
Top achievements
Rank 1
 answered on 09 Jul 2009
1 answer
78 views
Hi,

I have a Tabstrip with Multipage. In the Pageviews there are user controls with MS ajax updatepanels.

Every time i update the updatepanel the ReorderTabsOnSelect is fired, thus the rows of the tabstrip are toggled.

Any way to work around this?

Marc
Paul
Telerik team
 answered on 09 Jul 2009
1 answer
84 views
Hi,
I would like to validate the selected Text's HTML in design view of RAD Editor.
For ex: I have 2 html tables on my editor with 2 rows each and each row has got some data like 1, 2, 3 etc.,
If user selects 2nd Row of First Table and 1st Row of 2nd Table, i need to alert him as INVALID selection.

    1

    2


    3


Any help would be appreciated.

Thanks,
Prat
Rumen
Telerik team
 answered on 09 Jul 2009
1 answer
83 views
hi,
  I am making dynamic chats controls, i am getting problems in settings colors of chart in plot area and text color of legend. I am passing colors in series items , the colors drawn in the chart is of gradient not solid. Secondly the legend items text color is not changed w r t skin. eg i am using black skin , all items of the chart has been changed to white except the legend color. note that i am making legend dynamically w . r. t series items.
Here is my code.

        //passing series to chart , with series items and colors
        ChartSeries csud = new ChartSeries();      
        csud.Type = ChartSeriesType.Pie;
        csud.AddItem(7000, "Total",Color.Red);
        csud.AddItem(3500, "Projected",Color.Blue);
        csud.AddItem(2000, "Used",Color.Green);
        csud.Appearance.LegendDisplayMode = ChartSeriesLegendDisplayMode.Nothing;

//making dynamic legend according to chart series items.
     if (RadChart1.Series.Count == 1)
        {
            int j = 0;
            for (j = 0; j < RadChart1.Series[0].Items.Count; j++)
            {
                LabelItem lblitem = new LabelItem();
                lblitem.TextBlock.Text = RadChart1.Series[0].Items[j].Label.TextBlock.Text;
                RadChart1.Legend.Items.Add(lblitem);
                RadChart1.Legend.Items[j].Marker.Appearance.FillStyle.MainColor = RadChart1.Series[0].Items[j].Appearance.FillStyle.MainColor;                
            }

        }
       

Regards.
Muhammad Shoaib
Ves
Telerik team
 answered on 09 Jul 2009
5 answers
271 views
Hello Friends

I am having a peculiar problem in my content page, one of my click event of a control I am creating the radwindows dynamically by following code :-
 for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
                {
                    Telerik.Web.UI.RadWindow newWindow = new Telerik.Web.UI.RadWindow();
                    newWindow.VisibleOnPageLoad = true;
                    newWindow.OffsetElementID = "OffsetElement" + i.ToString();
                    newWindow.NavigateUrl = "http://www.sitefinity.com";
                    newWindow.Top = Unit.Pixel(Convert.ToInt32(ds.Tables[0].Rows[i][1]));
                    newWindow.Left = Unit.Pixel(Convert.ToInt32(ds.Tables[0].Rows[i][2]));
                    newWindow.Width = Unit.Pixel(Convert.ToInt32(ds.Tables[0].Rows[i][3]));
                    newWindow.Height = Unit.Pixel(Convert.ToInt32(ds.Tables[0].Rows[i][4]));
                    newWindow.Title = ds.Tables[0].Rows[i][0].ToString();
                    RadWindowManager1.RestrictionZoneID = SummaryDiv2.ClientID;
                    RadWindowManager1.Windows.Add(newWindow);
                   
                }

So they are populating fine, but when I am trying to save the window property like height, width etc I am not getting the radwindows in client side, for this please check the below mentioned javascript:-

function GetRADWinPrt()
        {
              var oManager = GetRadWindowManager(); // its coming NULL every time
              var oActive = oManager.get_windows();
             var winArray = new Array(oActive.length);  //eventually length is also NULL
              var strList = "";
            for(var i = 0;i<oActive.length;i++)
              {
                 //Check if Window is closed or Active
                 if(!(oActive[i].isClosed()))
                 {
                     var bound = oActive[i].getWindowBounds();
                     strList = strList + oActive[i].get_name() + "=" + bound.x +","+ bound.y + "," + bound.width + "," + bound.height + ";";
                 }
              }
              
              //Stored all active RADWindow properties in hidden field
              document.getElementById(strHidden).value = strList;
              alert(strList);
         }

My RadwindowManager is
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" VisibleOnPageLoad="true"
                    VisibleTitlebar="true" VisibleStatusbar="false"
                    ReloadOnShow ="true" ShowContentDuringLoad="false" RestrictionZoneID="SummaryDiv2"
                    Overlay="true" Animation="Fade"
                    MinimizeZoneID="MyMinWins" OnClientCommand="oCCWindow" >
</telerik:RadWindowManager>

Also if I create RadWindow using window.radopen() in javascript then the above function i.e. GetRADWinPrt() works fine, but not work if I created my radWindow from Server side i.e. the for loop that I shown in the code snippet.
Could you please tell me where I am going wrong.

Thanks
Arindam R
Georgi Tunev
Telerik team
 answered on 09 Jul 2009
1 answer
57 views
Dear All,

I have an application to use Raddock to provide an operation interface. In my case, I need to create docks in another created dock which obviously contains a DockZone. Then I must deal with the dynamical situation to renew objects when postbacking. I find that A dock would have A DockZoneID in the following form if I put it in the DockZone which is in a dock:
DockZoneID: "DockID"+_C_+"ZoneID"
When postbacking,I renew the dock and add it to the layout. Also I apply the DockZoneID to the dock in the LoadDockLayout Event.
But the dock couldn't find it's Zone. Is it  normal, or I missed something in my operation?  


Sincerely,
andre'
 
Pero
Telerik team
 answered on 09 Jul 2009
11 answers
142 views
enable FlashManager function ,click insert Flash button display:Could not find the command FlashManager.Please update your command list.why?
Stanimir
Telerik team
 answered on 09 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?