Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
115 views
Hi,

I have Implemented RAD Menu Control With Multi Column Fly out. It is working with Firefox and Chrome but it s not Working within IE(7.0).
I have also notice that it working fine in case of .ASPX page but it s only issue with .ASCX

Can any one help me with Such Issue ?
It s a static control so there s no code behind associated with that user control.

Thanks,
Keyur
Keyur
Top achievements
Rank 1
 answered on 13 Jul 2010
1 answer
110 views
Is there a way to have a scheduler open with the Advanced Form visible? 

This is the situation I am actually trying to solve:

Some appointments may be "locked" when a user attempts to edit it. I want to prompt them to unlock the event, then send them on to edit it. I can do this either with a modal window (which I have not had time to look into), or by sending them to an intermediary page. I have implemented the intermediary page without a problem, but the only thing I can do right now is redirect them to the full calendar. Is there a way to redirect them such that the advanced form will open with the proper appointment open?
lordscarlet
Top achievements
Rank 1
 answered on 13 Jul 2010
2 answers
103 views
Hi

I have a problem how can i select multiples rows without ctlr+click, i need to select distint rows with a simple click, without

GridClientSelectColumn

RRORRO
Top achievements
Rank 1
 answered on 13 Jul 2010
1 answer
306 views
For the RadComboBox, is there any way to control the delay before a callback is made?  For slow typists, there could easily be a callback between each letter, which is causing quite a bit of thrash in the display of the results, especially if a spelling error is made and corrected.
Kalina
Telerik team
 answered on 13 Jul 2010
0 answers
62 views
Previously in 2009 Q3 when Text attribute of RadComboBoxItem is assigned but Value is not set, it seems to be setting the Value as well.
In 2010.1.706.35 it does not set the Value thus FindByValue could not find the item.   Just beware....
Lenny_shp
Top achievements
Rank 2
 asked on 13 Jul 2010
1 answer
165 views
Not sure what I did wrong with my other post.  Let me try again.  Im trying to open a modal radwindow from inside a tabstrip and its opening the window just fine but its a) too small (like 200px by 200px when it should be much larger) and b) its not modal.  If I place my usercontrol on a regular webform it works just fine.  Only when its in the tabstrip/multipage is it not working properly.  Code is below:

Web Page:

<%@ Page Title="" Language="VB" MasterPageFile="~/intranet/IT/CM/MasterPages/CM.master" AutoEventWireup="false" CodeFile="cm.aspx.vb" Inherits="intranet_IT_CM_cm" %>
<%@ Register src="controls/LogEntryListing.ascx" tagname="LogEntryListing" tagprefix="uc3" %>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div style="width:100%">
        <telerik:RadTabStrip ID="RadTabStrip1" runat="server"
            MultiPageID="RadMultiPage1" CausesValidation="False" SelectedIndex="1"
            Skin="WebBlue">
            <Tabs>
                <telerik:RadTab runat="server" Text="Request Log" >
                </telerik:RadTab>
            </Tabs>
        </telerik:RadTabStrip>
        <telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">
            <telerik:RadPageView ID="RadPageView1" runat="server">
                <uc3:LogEntryListing ID="LogEntryListing1" runat="server" />
            </telerik:RadPageView>
        </telerik:RadMultiPage>
    </div>
</asp:Content>

Here is the code for the user control:

<%@ Control Language="VB" AutoEventWireup="false" CodeFile="LogEntryListing.ascx.vb" Inherits="intranet_IT_CM_controls_LogEntryListing" %>
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
<script type="text/javascript">
    function ShowLogEntryForm(entryId) {
        window.radopen("LogEntry.aspx?entrytId=" + entryId, "EditLogEntry");
        return false;
    }
</script>
</telerik:RadCodeBlock>
 
<br />
<asp:Repeater ID="Repeater1" runat="server">
    <ItemTemplate>
        <div style="width:980px;">
            <div style="width:60%;float:left;padding-top:10px;padding-bottom:10px;"><asp:Label CssClass="LabelStyle" ID="lblRequestorName" Text="Project Log Entry Added By:  " runat="server" ></asp:Label></div>
            <div style="width:40%;float:left;padding-top:10px;padding-bottom:10px;"><asp:Label CssClass="LabelStyle" ID="lblRequestDate" Text="Date Entry added:  " runat="server" ></asp:Label><%# DataBinder.Eval(Container.DataItem, "EntryDate")%></div>
        </div>
        <div style="width:980px;float:left;clear:both;padding-bottom:10px">
            <asp:Label CssClass="LabelStyle" ID="lblLogEntry" Text="" runat="server" ></asp:Label><%# DataBinder.Eval(Container.DataItem, "Entry")%>
        </div>
        <div style="width:980px;float:left;clear:both;padding-bottom:30px">
            <asp:LinkButton ID="lbEditRequest" runat="server" style="cursor:hand;"
            ToolTip="Edit This Request" Text="" CausesValidation="false" >
            <asp:Image ID="imgEdit" runat="server" ImageUrl="https://webapps1.richland2.org/images/editicons/pencil.png" Width="12" Height="12" visible="true"/>
            </asp:LinkButton>
            <asp:Image ID="Image3" runat="server" ImageUrl="https://webapps1.richland2.org/images/spacers/spacer.gif" Width="3" Height="1" visible="true"/>
            <asp:LinkButton ID="lbDeleteRequest" runat="server" style="cursor:hand;"
            ToolTip="Delete this request" Text="" CausesValidation="false" CommandName="deleterequest"
            OnClientClick="return confirm('Do you really want to delete this request from the system?\n\n This action cannot be undone.');" >
            <asp:Image ID="Image2" runat="server" ImageUrl="https://webapps1.richland2.org/images/deleteicons/delete.png" Width="12" Height="12" visible="true"/>
            </asp:LinkButton><asp:Label CssClass="LabelStyle" ID="lblEntryId" Text='<%# DataBinder.Eval(Container.DataItem, "EntryId")%>' runat="server" Visible="false"></asp:Label>
        </div>
    </ItemTemplate>
    <AlternatingItemTemplate>
        <div style="width:980px;padding-left:3px;border:1px solid #000000;"
        <div style="width:980px">
            <div style="width:60%;float:left;padding-top:10px;padding-bottom:10px;"><asp:Label CssClass="LabelStyle" ID="lblRequestorName" Text="Project Log Entry Added By:  " runat="server" ></asp:Label></div>
            <div style="width:40%;float:left;padding-top:10px;padding-bottom:10px;"><asp:Label CssClass="LabelStyle" ID="lblRequestDate" Text="Date Entry added:  " runat="server" ></asp:Label><%# DataBinder.Eval(Container.DataItem, "EntryDate")%></div>
        </div>
        <div style="width:980px;float:left;clear:both;padding-bottom:10px;">
            <asp:Label CssClass="LabelStyle" ID="lblLogEntry" Text="" runat="server" ></asp:Label><%# DataBinder.Eval(Container.DataItem, "Entry")%>
        </div>
        <div style="width:980px;float:left;clear:both;padding-bottom:30px">
            <asp:LinkButton ID="lbEditRequest" runat="server" style="cursor:hand;"
            ToolTip="Edit This Request" Text="" CausesValidation="false" >
            <asp:Image ID="imgEdit" runat="server" ImageUrl="https://webapps1.richland2.org/images/editicons/pencil.png" Width="12" Height="12" visible="true"/>
            </asp:LinkButton>
            <asp:Image ID="Image3" runat="server" ImageUrl="https://webapps1.richland2.org/images/spacers/spacer.gif" Width="3" Height="1" visible="true"/>
            <asp:LinkButton ID="lbDeleteRequest" runat="server" style="cursor:hand;"
            ToolTip="Delete this request" Text="" CausesValidation="false" CommandName="deleterequest"
            OnClientClick="return confirm('Do you really want to delete this request from the system?\n\n This action cannot be undone.');" >
            <asp:Image ID="Image2" runat="server" ImageUrl="https://webapps1.richland2.org/images/deleteicons/delete.png" Width="12" Height="12" visible="true"/>
            </asp:LinkButton><asp:Label CssClass="LabelStyle" ID="lblEntryId" Text='<%# DataBinder.Eval(Container.DataItem, "EntryId")%>' runat="server" Visible="false"></asp:Label>
        </div>
        </div>
    </AlternatingItemTemplate>
</asp:Repeater>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="WebBlue">
    <Windows>
        <telerik:RadWindow ID="EditLogEntry" runat="server" Title="Editing Log Entry" Height="475px"
            Width="990px" Left="50px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" KeepInScreenBounds="True">  
           
        </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>
Travis Cotton
Top achievements
Rank 1
 answered on 13 Jul 2010
2 answers
151 views
Does anyone have any idea how to keep a radGrid's auto-insert popup (radWindow) open after the insert linkbutton is clicked?

I'm pretty sure I have to $find a reference to the radWindow, but I thought there must be a better way. I know that I could simply use templates for the edit forms, but that is a waste of development time.

Thanks!
Brandon
Top achievements
Rank 2
 answered on 13 Jul 2010
1 answer
85 views
I'm trying to set the text on a Bar chart, and I'm using the same code from the example http://demos.telerik.com/aspnet-ajax/chart/examples/functionality/numericalaxis/defaultcs.aspx which has worked in my Spline chart.
Same thing, and it's not working.

So - How do I change the XAxis Text for a BarChart.

Thanks
Baatezu
Top achievements
Rank 2
 answered on 13 Jul 2010
1 answer
105 views

I load radmenu from sitemap, now i like to disable one manu item - "ADMIN" on form load.
I tried the following code, but menuitem always returns null so it can never be disable.

RadMenuItem menuitem = mainMenu.FindItemByValue("ADMIN");  
if (menuitem != null)

 

{

menuitem.Enabled =

false;  

 

 

  

}
What i did wrong?
Thanks

 

 

 

 

 

 

 

JJ
Top achievements
Rank 1
 answered on 13 Jul 2010
1 answer
176 views

I have added a custom button to the FileExplorer using this code:
//custom button 
            RadToolBarButton customButton = new RadToolBarButton("Properties"); 
            //customButton.CssClass = "test_button"
            customButton.Value = "EditProperties"
            customButton.CommandName = "EditProperties"
            DocFileExplorer.ToolBar.Items.Add(customButton); 
            DocFileExplorer.ToolBar.ButtonClick += new RadToolBarEventHandler(toolBar_ButtonClick);  

protected void toolBar_ButtonClick(object sender, Telerik.Web.UI.RadToolBarEventArgs e) 
        { 
            //your logic here  
        }  


The custom button is displayed. However, when I click on it, I get this error:

Server Error in '/' Application.

Only items of type Telerik.Web.UI.IRadToolBarButton can initiate postbacks

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: Only items of type Telerik.Web.UI.IRadToolBarButton can initiate postbacks


I will appreciate any help.







Fiko
Telerik team
 answered on 13 Jul 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?