Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
388 views
Hello, 

I have created a context menu on the appointment in the radscheduler. I need the code to fire the double clicking event when I select an item from the context menu. I would be requiring the client side code. Also this should fire this event "OnClientAppointmentDoubleClick" 

Thanks,
Boyan Dimitrov
Telerik team
 answered on 21 Jun 2013
2 answers
129 views
Hi Everyone,

I have a one level Rad grid that, after the Q2 2013 update is now showing the "drill down" triangles on the left of the grid.  Since nothing happens when drill into a one level grid, does anyone know how to remove these grouping drill down triangle icons?
Logan Marshall
Top achievements
Rank 2
Iron
 answered on 21 Jun 2013
11 answers
353 views
Hi there guys!,

got a question / challenge for you...

I'm building a side panel chat to one of our screens... the whole page is split up by a radSplitter, split into two vertically, the left hand panelhas the "side panel" chat controls etc... so in the left hand pane we have an Ajax Panel, with a RadPanelBar... Which has another RadSplitter / RadPane control inside it... which splits the chat panel into two.... (one bit at the top for displaying chat items, and one at the bottom for adding "chat comments")..

so my question is... how i do get the RadPane's scrollbar ( which is displaying chat comments ) to remain at the bottom consistantly? (so the newest messages will always be at the bottom) i've found the answer on another post, but that was when the radsplitter isnt wrapped inside a RadPanelBar!

Look forward to your solution / suggestions!

Cheers
Regards
Kevin
Vessy
Telerik team
 answered on 21 Jun 2013
2 answers
132 views
Hi I am updating my website from .NET 2.0 to 4.0 and some of my controls are not working.

I did some research and saw that my version of Telerik (2008.3.1105.20) is out of date for this framework. If I was to update my Telerik would this fix my problems? I want to make sure before I go spending the money. Also which version of Telerik would work best for my situation?
Danail Vasilev
Telerik team
 answered on 21 Jun 2013
1 answer
141 views
I used RadAsyncUpload on a page, everything is fine until i tried in IE9. In IE9 the button Select does not work, nothing happening when click.
I have Silverlight (Installed version: Silverlight 5 (5.1.10411.0)) Flash version 11.7.700.225 installed and i made a copy-paste from here
http://demos.telerik.com/aspnet-ajax/asyncupload/examples/multiplefileselection/defaultcs.aspx
HERE
No luck. As you can see there...
The example from http://demos.telerik.com/aspnet-ajax/asyncupload/examples/overview/defaultcs.aspx work fine in IE.
I also tried setting InputSize="150" EnableFileInputSkinning="false" but not luck.
Removed RadAsync Temp folder too.
No luck with: Telerik.Web.UI.RadAsyncUpload.Modules.Flash.isAvailable = function () { return false; };
No luck with: Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function() { return false; };
No luck with both used... i have no idea what should i do.
I am using SF 6.
Please review this issue. 
Thank you!

Plamen
Telerik team
 answered on 21 Jun 2013
1 answer
108 views

 Hi Guys,
 
 I haven't had the need to use much javascript...so please forgive my ignorance.
 
 Im trying to write some client-side validation code.
 
 The premise is that each listbox item hold a delimited value that contains a ProductId and other ProductIds it cannot coexist with.
 
 For example value=1,4,6,8.  This is intrepreted that the ProductId of this item =1 and it cannot be added to any list box which already has Products 4,6 or 8 in it.
 
 I have successfully done this server side with the following code and I am trying to reproduce client-side with javascript.  Any help would be appreciated.
 
   

Private Sub RadListBoxDestination_Transferring(sender As Object, e As Telerik.Web.UI.RadListBoxTransferringEventArgs) Handles RadListBoxDestination.Transferring
 
    Dim aryNoCoExist As Array
    Dim i As Integer
    Dim Product As Integer
    Dim Cancel As Boolean = False
    Dim BoxItem As Telerik.Web.UI.RadListBoxItem
    Dim NoCoExist As String = ""
 
    Me.ErrorLabel.Text = ""
 
    If RadListBoxDestination.Items.Count > 0 Then
        Product = GetProductId(e.Items(0).Value) 'GetProductId returns the first delimited string  item
 
        For Each BoxItem In RadListBoxDestination.Items
            If Len(NoCoExist) Then
                NoCoExist = NoCoExist & "," & GetNoCoExist(BoxItem.Value) 'GetNoCoExist returns the remaining delimited string minus the first item
            Else
                NoCoExist = GetNoCoExist(BoxItem.Value)
            End If
        Next
        aryNoCoExist = Split(NoCoExist, ",")
 
        For i = 0 To aryNoCoExist.GetUpperBound(0)
            If Product = aryNoCoExist(i) Then
                Cancel = True
                Me.ErrorLabel.Text = "Product Not Compatible with Existing Selections"
            End If
        Next
        e.Cancel = Cancel
 
    End If
 
End Sub
    
    
    My Listbox Definition: 

 

 

 

 

 

<telerik:RadListBox runat="server" ID="RadListBoxSource" Height="200px" Width="300px" AllowTransfer="true" TransferToID="RadListBoxDestination"
                        AllowTransferOnDoubleClick="True"  EnableDragAndDrop="True">
                        <ButtonSettings TransferButtons="Common" ShowDelete="False" ShowReorder="False" ShowTransferAll="False"></ButtonSettings>
                    </telerik:RadListBox>
                    <telerik:RadListBox ID="RadListBoxDestination" runat="server" Height="200px" Width="300px" AllowTransfer="true" TransferToID="RadListBoxSource"
                        AllowTransferOnDoubleClick="True"  EnableDragAndDrop="True" OnClientTransferring="onTransferring">
                        <ButtonSettings TransferButtons="Common" ShowTransfer="false" ShowDelete="False" ShowReorder="False" ShowTransferAll="False"></ButtonSettings>
                    </telerik:RadListBox>

 

 

 

  
     Thanks....
    
     David

Kate
Telerik team
 answered on 21 Jun 2013
2 answers
97 views
Hey guys,

We updated our Telerik.Web.UI.dll and Telerik.Web.UI.Skins.dll yesterday and noticed that our buttons which use a custom skin broke. Was there any change that would have caused this?
Danail Vasilev
Telerik team
 answered on 21 Jun 2013
4 answers
330 views
Hi Guys,

I am trying to display an aspx page in a radWindow. I can get the webPage to load in the RadWindow but it only shows me CheckBoxes and none of my buttons.

I have tried many ways of trying to get this to display correctly but have failed everytime. my last attempt just loads a blank RadWindow,its probably a simple fix could someone please help me out.

Here is my aspx page i need loaded into my RadWindow


<body id="SendNotifications">
    <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
        <StyleSheets>
            <telerik:StyleSheetReference Path="~/Styles/Site.css" />
            <telerik:StyleSheetReference Path="~/App_Themes/Skins.skin" />
        </StyleSheets>
    </telerik:RadStyleSheetManager>
  
    <form id="form1" runat="server">
    <div class="oops">
  
        <asp:ScriptManager ID="notifyScriptManager" runat="server" />
        <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Office2010Silver" DecoratedControls="All" />
  
        <asp:FormView ID="NotificationForm" runat="server" Width="100%" Height="300px" >
            <EditItemTemplate>
                 
<table class="IncDetails">
                    <tr>
                        <td>
                            <asp:CheckBox runat="server" ID="chkIncLogger" Checked="false" Text="Notify Incident Logger" />
                        </td>
                        <td>
                            <asp:CheckBox runat="server" ID="chkIncAssignee" Checked="true" Text="Notify Current Assignee" Enabled="false" />
                         </td>
                         <td>
                            <asp:CheckBox runat="server" ID="chkNotifyManager" Checked="false"  Text="Notify Notify Manager" />
                        </td>
                        <td>
                            <asp:CheckBox runat="server" ID="chkIncDistList" Checked="false"  Text="Notify Distribution List " />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <asp:CheckBox runat="server" ID="chkIncCreator" Checked="false" Text="Notify Incident Creator" />
                        </td>
                        <td>
                            <asp:CheckBox runat="server" ID="chkIncOrigAssignee" Checked="false" Text="Notify Original Assignee" Enabled="false" />
                         </td>
                         <td>
                            <asp:CheckBox runat="server" ID="chkIncConsumer" Checked="false" Text="Notify Consumer" Enabled="false" />
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <asp:Button ID="btnSave" runat="server" Text="Save" />
                           </td>
                            <td>
                            <asp:Button ID="btnClose" runat="server" Text="Close" />
                        </td>
                    </tr>
                </table>
            </EditItemTemplate>
        </asp:FormView>
    </div>
    </form>
</body>
</html>


As you can see this is very short, All that i need is when a user clicks on a button the RadWindow will appear and display the following CheckBoxes and Buttons inside of the rad window.

Here is the javascript i am using to call the RadWindow

function ShowNotificationForm() {
                window.radopen("/Inc/Notifications.aspx", "NotifyDialog");
                return false;
            }

And here is the RadWindowManager from the Page it is being called from

<telerik:RadWindowManager ID="RadWindowManager1" runat="server">
<Windows>
<telerik:RadWindow ID="NotifyDialog" runat="server" ReloadOnShow="true" ShowContentDuringLoad="false"    Modal="true"    Width="900px" Height="760px">
</telerik:RadWindow>
</Windows>

This does not give me any errors the RadWindows is displayed But without any Controls.

Thank you  in advance
Danail Vasilev
Telerik team
 answered on 21 Jun 2013
4 answers
206 views
When i'm trying to bind a record from one grid view to another grid view using item command event i'm facing the following error.

"Object Doesn't support this action". please help me regarding this.
Selvamanikandan
Top achievements
Rank 1
 answered on 21 Jun 2013
1 answer
171 views
1. Single Select: I want user to select only one node and if user selects another then previous one is deselected. I am using Entry_Added event and can clear the entries but not sure how to select entry. I looks like I need to use both clientside and serverside events. How can I allow single select?

2 Tooltip on nodes: How can I show tooltip on nodes? The tooltip for control is there but I can't find any property for nodes.

3. Is it possible to find and select the node with node value. There is no property called Nodes and find Entries collection. how can show the checkbox checked for a node with a specific value?
Kate
Telerik team
 answered on 21 Jun 2013
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?