Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
Hey anyone give me some codes and videos to use the rad controls.
I have download the trail version of the rad controls for asp.net 3.0.
Sebastian
Telerik team
 answered on 08 Jan 2009
1 answer
272 views
To change the length of a slider I would change the Length property to a pixel amount.

Eg:

Length="780" 


Is there a way to get the slider to stretch to the size of the current div or page?

Length="auto" 

or

Length="100%" 

both don't seem to work
Tsvetie
Telerik team
 answered on 08 Jan 2009
2 answers
215 views
I have a Modal that loads the page newFolder.aspx.  I want to have a button on the newFolder.aspx form that, when clicked, the modal is closed and the parent is again, enabled.

How do i do it?

Thanks
Georgi Tunev
Telerik team
 answered on 08 Jan 2009
7 answers
251 views
Hello, I have an issue with a RadDatePicker. Seems that it warp the size of "div" where it is included. I use the following code:

<div id="motoreRicerca">
<script type="text/javascript">
    function ToggleFirstPopup()
    {
        $find("<%= RadDate_DataDa.ClientID %>").showPopup();
    }   
    
    <asp:Label ID="lblDataDa" runat="server">Da:</asp:Label>  
    &nbsp;<telerik:RadDatePicker ID="RadDate_DataDa" Style="vertical-align: middle;"
       runat="server" Skin="Hay" Width="93px">

        <Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" Skin="Office2007"></Calendar>

        <DatePopupButton Visible="true"></DatePopupButton>
        <DateInput onclick="ToggleFirstPopup()" Width="93px">
        </DateInput>
    </telerik:RadDatePicker>
</div>

The problem isn't exist if I remove RadDatePicker control.
Could you please let me know some input to solve this strange behaviour?

Thanks & Regards.


Dimo
Telerik team
 answered on 08 Jan 2009
1 answer
123 views
My telerik editor is having issues with the toolbars and strange characters. I cannot reproduce this on my own IE or Firefox but the client's IE sees this issue. I am not sure if this is a setting in IE or another issues.

please view the picture at
http://www.unity-envirotech.com/images/EditorProblem.jpg

my toolbar config files are

HEADER TOOLBAR
<root>
  <tools>
    <tool name="ForeColor"/>
    <tool name="BackColor"/>
    <tool name="FormatBlock"/>
    <tool name="Fontsize"/>
    <tool name="Bold"/>
    <tool name="Italic"/>
    <tool name="Underline"/>
    <tool name="JustifyLeft"/>
    <tool name="JustifyCenter"/>
    <tool name="JustifyRight"/>
    <tool name="JustifyFull"/>
    <tool separator="true"/>
    <tool name="Outdent"/>
    <tool name="Indent"/>
    <tool name="InsertSymbol"/>
    <tool name="Help"/>
  </tools>
</root>

OTHER TOOL BAR
<root>
  <tools>
    <tool name="Print"/>
    <tool name="AjaxSpellCheck"/>
    <tool name="FindAndReplace"/>
    <tool name="Cut"/>
    <tool name="Copy"/>
    <tool name="Paste"/>
    <tool separator="true"/>
    <tool name="Undo"/>
    <tool name="Redo"/>
    <tool separator="true"/>
    <tool name="ImageManager"/>
    <tool name="DocumentManager"/>
    <tool separator="true"/>
    <tool name="LinkManager"/>
    <tool name="Unlink"/>
    <tool separator="true"/>
    <tool name="Superscript"/>
    <tool name="Subscript"/>
    <tool name="InsertParagraph"/>
    <tool name="InsertHorizontalRule"/>
  </tools>
  <tools>
    <tool name="ForeColor"/>
    <tool name="BackColor"/>
    <tool name="FormatBlock"/>
    <tool name="Fontsize"/>
    <tool name="Bold"/>
    <tool name="Italic"/>
    <tool name="Underline"/>
    <tool separator="true"/>
    <tool name="JustifyLeft"/>
    <tool name="JustifyCenter"/>
    <tool name="JustifyRight"/>
    <tool name="JustifyFull"/>
    <tool separator="true"/>
    <tool name="Outdent"/>
    <tool name="Indent"/>
    <tool name="InsertOrderedList"/>
    <tool name="InsertUnorderedList"/>
    <tool name="InsertSymbol"/>
    <tool name="Help"/>
  </tools>
</root>
Martin
Telerik team
 answered on 08 Jan 2009
2 answers
109 views
Hi,

In Design mode there is a huge footer area beneath the content area, Is it possible to remove / hide this as per HTML mode?
If, so ..How please.

ManyThanks
Neal
Neal
Top achievements
Rank 1
 answered on 08 Jan 2009
1 answer
309 views
I have 2 radgrids with the first one being a parent grid(packages), and when a user clicks on a row, a related grid(package contents) for that row gets populated. I am using the control parameter in the datasource of the second grid as the selectedvalue of the selected row in the first grid.

The user also has the option to add a new package. I want to programmatically (in javascript or C#) de-select the row on the click on add new and then automatically select the new inserted item so that the second grid can rebind using the new package.

Is this possible?

Thanks,
Laura
Princy
Top achievements
Rank 2
 answered on 08 Jan 2009
1 answer
136 views
Hi,
in my exercices: I'm using radwindow, in this radwindow I have radgrid. When I resize radwindow using mouse, radgrid is not correctly display. Some part of grid is hidden (radwindow is small now) and there is scrollbar to view all grid but this scrollbar "remembers" former size of radwindow and I can't view all grid.
How can I improve behavior of radgrid?
Shinu
Top achievements
Rank 2
 answered on 08 Jan 2009
10 answers
162 views
I recently added a Grid to a test website and was playing around.  Upon doing so, I setup the Grid to pull data from one table in my database, lets call it test.mdb.

I want it to pull data from two tables in that database.  How can I do it?  Once table is called Services and the other is Service_Categories.  I want the data to be grouped based on the Service_Category.

Thanks,
   TheShirey
Shinu
Top achievements
Rank 2
 answered on 08 Jan 2009
1 answer
125 views
Hi,

I am using the following code to display the Ajax Loading image. When I do for the first time everything seems to be working. For the second time I am getting this error.

<script language="javascript" type="text/javascript">
        var currentLoadingPanel = null;
        var currentUpdatedControl = null;

        function RequestStart(sender, args)
        {
            alert('hi');
            LoadingPanel1='<%=image.ClientID %>'
            currentLoadingPanel = document.getElementById(LoadingPanel1);
            currentLoadingPanel.style.display="block";
        }

        function ResponseEnd()
        {
            //hide the loading panel and clean up the global variables
            if (currentLoadingPanel != null)
                currentLoadingPanel.style.display="none";
            currentUpdatedControl = null;
            currentLoadingPanel = null;
        }
</script>

<rad:RadAjaxManager id="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <rad:AjaxSetting AjaxControlID="btnSearch">
            <UpdatedControls>
                <rad:AjaxUpdatedControl ControlID="Panel1" LoadingPanelID="LoadingPanel1"></rad:AjaxUpdatedControl>
            </UpdatedControls>
        </rad:AjaxSetting>
    </AjaxSettings>
    <ClientEvents OnRequestStart="RequestStart" OnResponseEnd="ResponseEnd" />
</rad:RadAjaxManager>
<rad:AjaxLoadingPanel id="LoadingPanel1" Runat="server">
    <asp:Image id="Image1" runat="server" ImageUrl="~/Images/loading4.gif" BorderWidth="0px" AlternateText="Loading"></asp:Image>
</rad:AjaxLoadingPanel>
<div id="image" runat="server" style="display:none">
    <asp:Image id="Image2" runat="server" ImageUrl="~/RadControls/Ajax/Skins/Default/loading4.gif" BorderWidth="0px" AlternateText="Loading"></asp:Image>
</div> 
<asp:Panel ID="Panel1" runat="server" width="100%">
<!--Dropdown list, textbox here -->
<asp:Button runat="server" Text="Search" ID="btnSearch" OnClick="btnSearch_Click" />
<!-- My RADGrid here -->
</asp:Panel>





Das
Top achievements
Rank 1
 answered on 08 Jan 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?