Telerik Forums
Community Forums Forum
1 answer
77 views

Hi,
I want to maximize the rad window with the controls which are inside that window accordingly. pl reply me if anyone has solution for it.
Below code which i used is only maximize the window not the controls.

 

<

 

 

telerik:radwindow id="rdWndSearchHelp" IconUrl="~/Images/tis.gif" runat="server" width="319px" height="474px" navigateurl="SearchHelp.aspx" Behavior="Close,Move,Maximize,Minimize" ReloadOnShow="true" Skin="Vista" VisibleStatusbar="False" Modal="true">

 

 

 

</telerik:radwindow>
Regards
Ajeet

 

Marin Bratanov
Telerik team
 answered on 31 May 2012
1 answer
53 views
Hi,

Maximize the rad window but controls inside the window is not maximize, So how to achive this. please reply me if any one has the solution for it. code which I am using is given below...

<

 

 

telerik:radwindow id="rdWndSearchHelp" IconUrl="~/Images/tis.gif" runat="server" width="319px" height="474px" navigateurl="SearchHelp.aspx" Behavior="Close,Move,Maximize,Minimize" ReloadOnShow="true" Skin="Vista" VisibleStatusbar="False" Modal="true">

 

 

 

</telerik:radwindow>

 


Regards
Ajeet
Marin Bratanov
Telerik team
 answered on 31 May 2012
1 answer
92 views

Hi,
How to minimize the rad window pl anyone support me. I am using the following code but it is not working.

 

<

 

 

telerik:radwindow id="rdWndSearchHelp" IconUrl="~/Images/tis.gif" runat="server" width="319px" height="474px" navigateurl="SearchHelp.aspx" Behavior="Close,Move,Maximize,Minimize" ReloadOnShow="true" Skin="Vista" VisibleStatusbar="False" Modal="true">

 

after click on minimize icon Title bar shows on the screen.

Regards
Ajeet

Marin Bratanov
Telerik team
 answered on 31 May 2012
1 answer
117 views
Hello All,

1st Issue
I am currently using the 2012.1.215.40 version of the Telerik dlls.

I have one page having the iFrame in in. I am loading another page in this iframe having the user controls. Also that page has a master page which is dynamic master page that is I need to assign the master page dynamically to that page.

In that page I open RadWindow having the RadEditor in it but I am not able to click on any tool of the RadEditor. It is working with the Shortcut Keys but not working with the mouse clicks. Also it is working with the Safari browser but not working with the FireFox.

Another page have also same behavior but the difference is that I am opening the radeditor in the RadWindow but the it has beed given a target url that it is totally a different page so it is also working fine.

But if I try to use the RadWindow in the same control the this kind of problem happens.

2nd Issue
I am using the RadEditor and for the ImageManager tool I am creating the dynamic folders for the UploadPath and ViewPaths.
But when I click on Upload and upload the image if the folder is empty that is I am uploading the first image then image manager does not show any image uploaded. But if I close the window and then refresh the page and again open the Image manager then it shows the image which I have uploaded before. And then everything work properly that is I am able to upload other images after that but problem is just with the first image.

Hope for the proper solutions and suggestions.

Thanks to all
Hardik

Rumen
Telerik team
 answered on 24 May 2012
3 answers
76 views
Why doesn't the Winforms forum have a section for RadWindow? People are putting questions all over the place.
Thanks.
Nikolay
Telerik team
 answered on 23 May 2012
1 answer
86 views
I have to attach the radgrid header with a tooltip. I am using RadToolTipManager but I need a rounded corner instead of rectangle/square with a pointing mouse. in IE7.

CSS Class: 
.radtooltip_Default, .radtooltip_Default td, .radtooltip_Default tr
{
    background-color: Blue !important;
}

Aspx Page
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestTooltip.aspx.cs" Inherits="PriceRight.LaunchSequence.WebApplication.User.TestTooltip" %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <link type="text/css" rel="stylesheet" media="all" href="../Resources/css/main.css" />  
    
  
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
    <meta name="generator" content="HAPedit 3.1" />
    
   
</head>
<body>
    <form id="form1" runat="server">
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <br />
    <div id="zone">
        <table>
            <tr>
                <td>
                    <asp:Label ID="Label1" Text="Below is the data table" runat="server" Font-Size="Larger"></asp:Label>
                </td>
                <td>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                </td>
                <td>
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                </td>
            </tr>
        </table>
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
        <table>
            <tr>
                <td>
                    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
                    </telerik:RadScriptManager>
                    <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false" OnItemDataBound="RadGrid1_ItemDataBound">
                        <MasterTableView ShowHeadersWhenNoRecords="true">
                            <Columns>
                                <telerik:GridBoundColumn DataField="ABC" HeaderText="ABC">
                                </telerik:GridBoundColumn>
                            </Columns>
                        </MasterTableView>
                    </telerik:RadGrid>
                </td>
            </tr>
        </table>
    </div>
   
    <telerik:RadToolTipManager ID="RadToolTipManager2" runat="server" AutoTooltipify="true"
        RelativeTo="Mouse" Position="TopCenter" ContentScrolling="Default" Width="150"
        EnableShadow="false" Height="10" ToolTipZoneID="zone">
    </telerik:RadToolTipManager>
   
    </form>
</body>
</html>
 TestTooltip .aspx.cs Page
public partial class TestTooltip : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            RadGrid1.DataSource = createDataTable();
        }


        protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
        {
            if (e.Item.ItemType == GridItemType.Header)
            {
                GridHeaderItem item = e.Item as GridHeaderItem;
                foreach (TableCell cell in item.Cells)
                {
                    cell.ToolTip = "I am a textbox with some other very very very very very very long tooltip.Text";


                    // cell.ToolTip.
                    // cell.CssClass = "ToolTipContent";
                    // cell.ToolTip
                    //if ((cell.Controls.Count > 0))
                    //{
                    //    // add tooltip to header title link
                    //    RadToolTipManager1.TargetControls.Add(cell.ClientID, true);
                    //}
                }
            }
        }


        private DataTable createDataTable()
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("ABC");
            dt.Columns.Add("Column2");
            DataRow dr = dt.NewRow();
            dr["ABC"] = "Column1 - Row 1";
            dr["Column2"] = "Column2 - Row 1";
            dt.Rows.Add(dr);


            return dt;
        }
    }

Please provide me  a solution.

Thanks,
Kiti




Bozhidar
Telerik team
 answered on 21 May 2012
1 answer
72 views
Hi 

Is there an option to display a radgrid table in a vertical format e.g.


Customer: McDonalds
Address: 1 McDonald Road
Postcode: MC1 2DV

instead of currently

Customer Address Postcode
McDonalds 1 McDonald Road MC1 2DV

Kind regards

Rob 
Eyup
Telerik team
 answered on 21 May 2012
1 answer
77 views
My daily RadControls experience consists of:
  • do the best I can
  • when I have a question, come to the forum
  • check demos
  • once in a while check videos and code samples
  • contact Support
  • in desperation, consult documentation pages
  • repeat as required
I prefer not to contact Support simply because I don't want to waste their time. Telerik Support personnel are stellar! They know their product and the technology, they're cordial, and communicate effectively. But Support can take a day or two to respond too. When I'm stuck on an issue, I need to resolve it ASAP.
 
I do prefer to post to the forum, so that everyone can benefit from information found there. The problem with the forum is that responses aren't guaranteed, they're not guaranteed to be accurate, and they are not as timely as Support.

Notice consulting documentation is on the bottom. I'm sorry but the website docs don't provide insight. The info there is basic documentation. I'm often left understanding a single function, but in the overall plan, unless I know I need that specific function it's frequently a long journey to get there. Like most docs, that material is for reference, not tutorial.

For tutorials and training, I know there is Telerik TV, all the vids, Trainer, and Falafel and other services. There is also one decent (but old) book that's easily available, and a newer one published within the last year or two.

But every day, with all of this material available, I'm still finding myself in the forum doing searches - as much time there as I might spend in Google.

So the question is : How do we get to Ninja status? Is there a book or "insiders' newsletter" that really goes deep on these controls to fully explore various nuances?
- I want to see a diagram of how the grid is laid out, where CSS is applied, and what options are available at every tier. I don't want to have to hunt to figure out which object in the grid exposes some property.
- I want to get total immersion into the why's and how's of client side development so that I can ween myself away from server-centric development and some of the headaches of postbacks.
- I want to be completely in tune with the exact state of controls at each stage of the ASP.NET life cycle, so that I'm not surprised when I see control events firing, and so that I can pro-actively prevent rogue event firing rather than using e.Cancel.

This product is so deep. A class would take a couple weeks, travel, and a huge expense. Given a large budget and a lot of "free" time (laughing too hard here) I'd prefer a book like "RadControls Unleashed" or "Telerik Inside and Out". I wish we could pick a topic, start a discussion with a Telerik developer, and carry on the discussion over a period of weeks to completely absorb what that person has in his or her head. Then move on to the next topic. Then when people have a question in the forum send them to this brain dump before posting a hundred random responses, with dead-end discussions, or isolated details about the product.

OK, I'm done now. You get the idea. :)

Thanks for any responses!
Rumen
Telerik team
 answered on 11 May 2012
0 answers
55 views
Is separate Telerik package (64 bit DLL) which will be compatible with SP 2010  Or the older package will work with SP2010.
veluswamy vijayakumar
Top achievements
Rank 1
 asked on 08 May 2012
2 answers
124 views
Hi,

Today I came on here and found you hade redone the website..
Personally, I hate it.. The menus being at the bottom of the screen is just annoying.
I haven't found "my page" as of yet.. Why does the top only have "shopping cart" and "sign out"?
This isn't a webshop, in my opinion.. I don't see a huge use for a shopping cart on this site, certainly not for me.

  // Regards, Morten
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 08 May 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?