Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
127 views
I'm looking for a way to resize the mode button at the bottom of the radEditor, beacause when I use the french language they are way too small.

Thanks
Sébastien
Top achievements
Rank 1
 answered on 22 Jun 2010
1 answer
100 views
I am creating a file upload page that will allow my users to upload multiple documents at one time.  I am also loading index values for each file when saving the documents.  The wrench is that each document could have different index values.

I am attempting to accomplish this by loading the file names and indexes into a RadGrid and when the user is ready, they click on an upload button.  If I leave the files in the AsyncRadUpload control, everything works fine.  But having the files show in the RadUpload control and in my grid makes it kind of confusing for the common end user.

Ideally I would like to remove the files from the RadUpload control but I'm unsure how to upload the files from that point.  Is this possible?  If not, is there a way to hide the list of files that have been selected in the AsyncRadUpload control?

TIA

Seth
Dimitar Milushev
Telerik team
 answered on 22 Jun 2010
2 answers
79 views
Hi,

(sorry for my english, french guy) ;)

I have 3 combobox who when I choose an item in ComboBox1, the ComboBox2 will be filtered according to the Combobox1. (Same thing with Combobox3 according to the Combobox2).
But I can select an item from Combobox3 without an item selected from Combobox2 (Same thing for Combobox2 without selection from Combobox1).

So, how can I load on demand combobox3 and setValue for Combobox2 and Combobox1 after I choose an item from Combobox3 ?
And after this, How can clear Combobox2 and Combobox3 if I change the value from Combobox1 (Think that comboBox2 et Combobox3 must be reload on demand) ?

Thank
S C
Top achievements
Rank 1
 answered on 22 Jun 2010
3 answers
235 views
I have a cloned 3.5 .net app that is using telerik controls.  I have downloaded the trial version of telerik.  Trouble is this form has RadInput controls and it appears I need a seperate assembly in the bin.  How do I get it??  My forms are erroring out and wont display in design view.
Schlurk
Top achievements
Rank 2
 answered on 22 Jun 2010
1 answer
85 views
I am using the latest veriosn of Rad control in Mvc Preview 3.

Inline SpellChecker displays below the highlighted word but as it goes down it started dispaying above the word.
I noticed that it happens mostly when vertical scroll bar is displaying.

I can see the same problem on your demo.
Rumen
Telerik team
 answered on 22 Jun 2010
2 answers
98 views
I need to toggle:

<ClientSettings>
      <Selecting AllowRowSelect="True" />
</ClientSettings>

via the client side API in a javascript function.

can't seem to be able to find out how.

Thanks in advance!!  
j2eubank
Top achievements
Rank 1
 answered on 22 Jun 2010
2 answers
139 views
Hello,

We are using a the RadTreeView control inside a master page that populates data in a content page via a redirect on node click. The problem is that we are binding a different dataset to the tree on page load and then expanding the tree to the node that was clicked. This is causing the nodes in the tree that we have expanded to show the collapsed icon even though they are expanded.

When we then click the icon to expand the node it initially does nothing, click again and it attempts to expand the node and click again and ti successfully collaps the node.

Here is the nodes onclick event to give you some idea:

protected void uiRadTreeView_NodeClick(Object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)  
        {  
            // Set the session variable search to be null so no highlighting occurs in PopulateContentPane  
            Session["Search"] = null;  
 
            string siteId = Request.QueryString["SiteId"];  
            if (!String.IsNullOrEmpty(siteId))  
            {  
                Users user = (Users)Session["User"];  
                if (user == null)  
                {  
                    user = new Users(Page.User.Identity.Name);  
                }  
 
                // Log action  
                AuditLog.AddEntry(user, TLT.Extranet.DataAccess.Site.Type.General, 3, Int32.Parse(siteId), Int32.Parse(e.Node.Value), Session.SessionID);  
                Response.Redirect("Default.aspx?SiteId=" + siteId + "&NodeId=" + e.Node.Value);  
            }  
        } 

Any help to solve this would be much appreciated,

Thanks,

Ken
Ken Jones
Top achievements
Rank 1
 answered on 22 Jun 2010
1 answer
67 views
Hi ,

I am using  RadTabStrip control and make the property ScrollChildren="True" and its working fine .
What i want to scroll all the tabs but the first one tab created should be fixed so i want to scroll my created tabs to scroll through Second tab and all tabs .

Could there be any way to make this type of changes to scroll through all the tabs expect the First Tab .

Please answer this i need it very urgent


The HTML part of the tab control is as following
     <telerik:RadTabStrip runat="server" ID="RadTabStripILMain" SelectedIndex="0" ScrollButtonsPosition="Right"
                                            ScrollChildren="true" PerTabScrolling="true" OnTabClick="RadTabStripILMain_TabClick"
                                            EnableEmbeddedSkins="false" Skin="ILTabSkin" Width="694px" >
                                        </telerik:RadTabStrip>



and the Code behind part of the used RadTabStrip is as following


  protected void RadTabStripILMain_TabClick(object sender, RadTabStripEventArgs e)
    {
        RadTab tabToSelect = null;
        if (e.Tab.Level == 0)
        {
            if (e.Tab.Text != "Home")
            {
                tabToSelect = RadTabStripILMain.InnermostSelectedTab;
                SelectedTabID = Convert.ToInt32(tabToSelect.Value);
                InstantiateIn(e.Tab, e.Tab.Text, Convert.ToInt32(e.Tab.Value));
                RadTabStripILMain.DataBind();
            }
        }
        else if (e.Tab.Level == 1)
        {
            RadTab ownerTab = (RadTab)e.Tab.Parent;
            if (ownerTab.Text != "Home")
            {
                InstantiateIn(ownerTab, ownerTab.Text, Convert.ToInt32(ownerTab.Value));
                RadTabStripILMain.DataBind();
            }
        }
        #region My Code
        //if (e.Tab.Level == 0)
        //{
        //    if (e.Tab.Text != "Home")
        //    {
        //        RadTab currentTab = e.Tab;
        //        if (currentTab != null)
        //        {
        //            RadTabStripILMain.Tabs.Remove(currentTab);

        //            if (RadTabStripILMain.Tabs.Count > 0)
        //            {
        //                RadTabStripILMain.SelectedIndex = 0;
        //            }
        //        }
        //    }
        //}
        #endregion
    }




Thanks
Gaurav 
Yana
Telerik team
 answered on 22 Jun 2010
0 answers
109 views

Is it possible to save execute stored proc command in a string variable and then execute string variable???

Does this logic fits into LINQ2SQL?

Why I want to do this - INstead of passing user control references to server, I want to save user control values to string in client side java script and then pass string to server to do actual stored proc execution. Hopefully this will improve performance. DOES IT MAKE ANY SENSE?

mohammed
Top achievements
Rank 1
 asked on 22 Jun 2010
2 answers
123 views
I am looking for a skin that makes the numeric text box look like the default asp text box.  If anyone has an example that would be great. Thanks

Brian
Top achievements
Rank 1
 answered on 22 Jun 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?