Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
135 views
Hi,

The date picker is not loading in IE browser.

i have attached the image

Let me know the solution


Thanks,
Prasanna
Eyup
Telerik team
 answered on 05 Mar 2013
3 answers
117 views
RadToolBarButton Checked/Unchecked State Persistance:

Hi,
I need to save the Checked/Unchecked State of RadToolBarButton so that even the webpage is refreshed the state of RadToolBarButton persists or is preserved [May be server side or in a cookie]. Is there a built in functionality that I can use or how can I do it?

<telerik:RadToolBarButton CommandName="Filter" PostBack="false" ToolTip="Search/Filter"
    CheckOnClick="true" AllowSelfUnCheck="true" Group="F">
</telerik:RadToolBarButton>

Thanks...
The Team.
http://www.megasearches.com/
Daniel
Telerik team
 answered on 05 Mar 2013
6 answers
141 views
I have multiple RadListBoxes and would like to be able to Drag an item from one to another and trigger a postback/server side event.  However, the help makes this note:  the server-side Dropped event fires only if the dragged Items are dropped onto an HTML element, which is not an Item and has its id attribute set.   Therefore, it appears that what I am trying to do is not possible.  Is there a workaround that will enable me to drag an item from one RadListBox to another and trigger a server side event?
Alex
Top achievements
Rank 1
 answered on 05 Mar 2013
2 answers
475 views
Hi,

How to enable and disable the child item of the RadMenu depending on the parent item?

Thanks,
Sigma
Shinu
Top achievements
Rank 2
 answered on 05 Mar 2013
1 answer
133 views
Hello,

There is a ListBox control in my user page and I want to change the color of the ListBox item based on the checked state of the item. Suppose if the item is checked the font color should change to blue and on unchecking the font color must change to the original color. I want this to be done from client code.

Thank you,
Teena  
Princy
Top achievements
Rank 2
 answered on 05 Mar 2013
1 answer
165 views
Hi,

How to set an empty message when the user attempt to search without entering any search key in the textbox?

Thank you,
Freddy.
Princy
Top achievements
Rank 2
 answered on 05 Mar 2013
3 answers
138 views
I need to be able to capture when a user clicks on an appointment and work with server side code when an appointment is selected in my RadScheduler. However, the onAppointmentClick never seems to fire. I have read other posts that suggest setting ReadOnly to true/false to see if that makes a difference, as well as setting AllowEdit on both the control and the appointments and yet nothing seems to make any difference. I have also read that this event is only raised when the user double clicks the appointment, but this doesn;t work either for me.

My scheduler is sat within an ASP.Net update panel and uses an ASP.Net ScriptManager, but apart from that, its all pretty basic with no javascript or anything.

Does anyone have any ideas why this doesn;t work for me that I haven't tried yet?

Thanks,
Karl

Karl
Top achievements
Rank 1
 answered on 05 Mar 2013
1 answer
209 views
Hi,

I have a RadListBox on my page with the CheckBoxes set to "true". How can you set the RadListBox that when a user selects an item, the checkbox is set as well and when a user checks a CheckBox, the item gets selected?

Tnanks,
Sigma
Shinu
Top achievements
Rank 2
 answered on 05 Mar 2013
4 answers
173 views
How to setting z-index of DropDownSettings?
Michele
Top achievements
Rank 2
 answered on 05 Mar 2013
4 answers
496 views
Hi All,

I am using Telerik RadTreeview control for the navigation purpose in DotNetNuke (DNN) custom module. Below is the look and feel of the RadTreeview control on my portal and RadTreeview control displayed on each and every page of the portal.

First time when ever page get loaded its display as below though Page 2 and Page 5 contains sub-pages

Page 1
Page 2
Page 3
Page 4
Page 5

What I want is if I click on Page 2.1 then it will redirect to page Page 2.1 (which is working fine)  and the RadTreeview control will display as below on page Page 2.1.

Page 1
Page 2
     Page 2.1
     Page 2.2
Page 3
Page 4
Page 5

After that if I click on Page 5.2 then it will redirect to page Page 5.2 (which is working fine)  and the RadTreeview control will display as below on page Page 5.2.

Page 1
Page 2
Page 3
Page 4
Page 5
     Page 5.1
     Page 5.2

After that if I click on Page 4 then it will redirect to page Page 4 (which is working fine)  and the RadTreeview control will display as below on page Page 4.

Page 1
Page 2
Page 3
Page 4
Page 5

I mean the selected page's parent should be in expand mode and the selected page should be highlighted.

Kindly let me know how we can achieve this functionality through programmatically.

Below is the code what I have with me right now.

.ASCX Code

<telerik:RadTreeView ID="RadTreeView1" runat="server" OnNodeClick="RadTreeView1_NodeClick" Skin="NGR"  EnableEmbeddedSkins="false" ShowLineImages="false">
    <databindings>
        <telerik:RadTreeNodeBinding Expanded="False"></telerik:RadTreeNodeBinding>
    </databindings>
</telerik:RadTreeView>


C# Code


protected void Page_Load(object sender, EventArgs e)
{
            if (!Page.IsPostBack)
            {
                BindLeftNavigation(RadTreeView1);
            }
}
 
private void BindLeftNavigation(RadTreeView treeView)
{
            MenuController objController = new MenuController();
 
            DataSet ds = new DataSet();
 
            ds = objController.Get_Menu(this.PortalId);
 
            if (ds.Tables[0].Rows.Count > 0)
            {
                treeView.DataSource = ds;
                treeView.DataTextField = "TabName";
                treeView.DataValueField = "TabID";
                treeView.DataNavigateUrlField = "";
                treeView.DataFieldID = "TabID";
                treeView.DataFieldParentID = "ParentID";
                treeView.DataBind();
            }
}
 
protected void RadTreeView1_NodeClick(object sender, RadTreeNodeEventArgs e)
{
        Response.Redirect(DotNetNuke.Common.Globals.NavigateURL(Convert.ToInt32(e.Node.Value.ToString())));
}
Bozhidar
Telerik team
 answered on 05 Mar 2013
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?