Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
87 views
I've successfully been using two RadSlidingPane controls on one of my web form for some time now.  As shown in the screenshot, the inner one actually sits on a User Control, which is loaded into the web form.  Everything was working perfectly fine.

Today I had occasion to change a bunch of server-side code, somewhat unrelated to the RadSlidingPanes ... or so I thought.  Anyhow, I've now discovered that the Undock icon (the thumbtack) of the inner sliding pane has suddenly stopped functioning!  The outer one still works normally, meaning that when I hover over it a hand cursor appears, an "Undock" tooltip appears, and clicking on it causes the sliding pane to collapse (undock).

But the inner one isn't doing any of that anymore!

I really have no idea what it is I could have possibly changed that would make this happen.  In point of fact, I have about a dozen User Controls in which the inner RadSlidingPane is implemented in the same way and I KNOW that I haven't even touched the code in most of them ... yet their Undock icons aren't working either!

I would really appreciate it if you could give me some suggestions about what code controls the aforementioned Undock functionality (cursor & tooltip for example).  That might give me a clue as to what it is I changed that messed things up.

Thank you,

Robert W.
Robert
Top achievements
Rank 1
 answered on 30 Oct 2012
13 answers
713 views
I am writing to learn if there is an option to remove the blinking mouse cursor from the RadComboBox - 
without disabling the actual RadComboBox;

As of April of 2010, a post from Telerik Support indicated the cursor cannot be controlled programmatically - unless the RadComboBox is disabled;

Thanks in advance for any insight; 

Best regards - Rob
Matthew
Top achievements
Rank 1
 answered on 30 Oct 2012
3 answers
97 views
I am using RadAjaxManager and it works well, but to update a frame with RadAjaxManager have stop working.
I am using RegisterClientScriptBlock in code behind, and this works before i use RadAjaxManager....
How do I configure it to work again?
Using Page Language="VB"....

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="rcbMyLink">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="PanelNewInsert" LoadingPanelID="RadAjaxLoadingPanel1" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewExternUrl" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewInternUrl" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="lbSavePage">
            <UpdatedControls>       
                <telerik:AjaxUpdatedControl ControlID="PanelNewInsert" LoadingPanelID="RadAjaxLoadingPanel1" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewExternUrl" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewInternUrl" />
            </UpdatedControls>
        </telerik:AjaxSetting>
   </AjaxSettings>
</telerik:RadAjaxManager>


ClientScript.RegisterClientScriptBlock(Me.[GetType](), "scr", "<script>parent.TreeFrame.location.replace('" + MyMeny + "');</script>")
Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Oct 2012
1 answer
456 views
What does the message actually mean?  The DataFieldID has unique values from the data table. There are no column names the same.
Seems like no matter what fields I try to set I receive "Parent Columns and Child Columns don't have type-matching columns." Or "These columns don't currently have unique values."

RadTreeView1.DataFieldParentID = "IdeaID"
RadTreeView1.DataFieldID = "ID";  
RadTreeView1.DataTextField = "IdeaName"
RadTreeView1.DataValueField = "IdeaStatus"
RadTreeView1.DataSource = dtT;                   
RadTreeView1.DataBind();
Shinu
Top achievements
Rank 2
 answered on 30 Oct 2012
0 answers
81 views
Hi,

I'm using Telerik RadGrid of Version "2012.1.411.35" . I have a scenario where i need to expand/ collapse the disabled node. if use endable/disable property it is not working and tried as per the below link "http://www.telerik.com/help/aspnet-ajax/treeview-client-expand-disabled-node.html" still it is not working. Please help me to resolve this issue as soon as possible
Sreeram
Top achievements
Rank 1
 asked on 30 Oct 2012
1 answer
486 views

See the following code.  By default, the ImageButton is above the "Region" HeaderText.  How can I place the ImageButton under the "Region" HeaderText?  Note that I want to keep the sorting features when click the "Region" label.

<telerik:GridTemplateColumn AllowFiltering="false" HeaderStyle-VerticalAlign="Bottom" HeaderStyle-HorizontalAlign="Center" HeaderText="Region" SortExpression="RegionName" UniqueName="RegionName">
  <HeaderTemplate>
    <div style=" margin:0 10px 0 15px;">

      <asp:ImageButton ID="ButtonStartFilter" ImageUrl="../images/placeholder.png" runat="server"/>
    </div>
  </HeaderTemplate>
</telerik:GridTemplateColumn>

Princy
Top achievements
Rank 2
 answered on 30 Oct 2012
3 answers
203 views
I have creating a link in one of the gridcolumn.i have calcualted the link using some columns and some server side variables.
Now when i assign that value to the column i cannot sort and filter it as a string.
Is there a way i can use the Hyperlink Column which will have the String value while filtering and sorting.
So that i can have the links but when i filter and sort it it behaves as the string column only.
Shinu
Top achievements
Rank 2
 answered on 30 Oct 2012
2 answers
181 views
I have an ASP:Gridview with RadComboBoxes set up inside of that.  These RadComboBoxes have their items dynamically created, so each RadComboBox has their items different from another RadComboBox.  This was all well and great until I was instructed to insert 10 columns.  Since the RadComboBox's header refuses to scroll along with the items, I feel like I'm forced to use a RadGrid inside of the RadComboBox.  I was thinking I could use a GridTemplateColumn to accomplish the goal.  Unfortunately, all I'm getting are two thick lines with no data inside of them.  Can you take a look at the following code and possibly help me out, please?  Maybe I totally screwed things up...

ASPX:
<telerik:RadComboBox ID="cboDupChoices" runat="server" DropDownWidth="600px"
  EnableLoadOnDemand="false" style="display:none">
    <ItemTemplate>
        <telerik:RadGrid ID="x" runat="server" Height="300px">
            <MasterTableView AutoGenerateColumns="false">
                <Columns>
                    <telerik:GridTemplateColumn HeaderText="Test">
                        <HeaderStyle Width="75px" />
                        <ItemTemplate>
                            <%# DataBinder.Eval(Container, "Attributes[""ID1""]")%>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
... REPEAT 9 MORE TIMES ...
                </Columns>
            </MasterTableView>
            <ClientSettings>
                <Scrolling AllowScroll="true" UseStaticHeaders="true" ScrollHeight="300px" />
            </ClientSettings>
        </telerik:RadGrid>
    </ItemTemplate>
</telerik:RadComboBox>

VB:
cboTest.Style.Value = "display:block"
cboTest.Items.Clear()
 
Dim lnJ As Integer = 0
For Each dupFile As FILE In dupFiles
    ' Add item template here.
    Dim test As RadComboBoxItem = New RadComboBoxItem()
    test.Attributes("ID1") = dupFile.FIELD1
    test.Attributes("Status") = dupFile.FIELD2
    test.Attributes("Department") = dupFile.FIELD3
    test.Attributes("Description") = dupFile.FIELD4
... REPEAT 6 MORE TIMES ...
 
    test.Value = dupFile.FILEID
    test.Text = dupFile.FILEID
    cboTest.Items.Add(test)
    cboTest.Items(lnJ).DataBind()
    lnJ = lnJ + 1
Next

Thanks for any help you may have,
Patrick
Patrick
Top achievements
Rank 1
 answered on 29 Oct 2012
1 answer
84 views
need help setting up InitialPath = "C:"

control shows up empty
not sure, what is going on here 
Vessy
Telerik team
 answered on 29 Oct 2012
6 answers
874 views
hi ,

i kept the maximum fileupload size as 25 mb (26214400) in my file explorer when i try to upload 47MB of file it didn't show the warning it simply showing the file not found error it is not user friendly so can u please suggest on this to solve my issue  plz check the image for more clarification.

<telerik:RadFileExplorer runat="server" ID="fileExp" Width="520px" Height="520px" ForeColor="#000000">
                    <Configuration ViewPaths="~/HTMLEditorImages" UploadPaths="~/HTMLEditorImages" MaxUploadFileSize="26214400"
                    DeletePaths="~/HTMLEditorImages" />

                </telerik:RadFileExplorer>
Vessy
Telerik team
 answered on 29 Oct 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?