Can not find button or link controls of any kind?

Posted by Community Admin on 03-Aug-2018 23:53

Can not find button or link controls of any kind?

All Replies

Posted by Community Admin on 15-Jan-2011 00:00

It is not possible that Telerik would decide to not have any navigation buttons, navigation links etc.  Therefore I must need glasses because the only navigation I can find to drag onto the page is that navigation widget.

I know I have to be looking right at it but have a mental block preventing me form seeing it.

There is no way the only navigation is restricted to that navigation widget, please provide information on where the navigation links and buttons are.

Please provide links to information on how to add an image button to a page.  I want to finally be able to have some ajax in a sitefinity page with respect to content not isolated widgets.

Please also provide time line on when we can use custom membership providers.

Thank you

Posted by Community Admin on 15-Jan-2011 00:00

Yeah...it's pretty strange, I dont even see the RadButton (at least in RC2) in the radcontrols list.

However you can use the Content Widget and the link control in that allows you to pick a page to link to.

Posted by Community Admin on 17-Jan-2011 00:00

Hi,

NavigationWidget wraps several controls in it - RadTabSrip, RadMenu, RadPanelBar, RadTreeView. Depending on the mode you use one of the above mentioned controls is loaded.

  • You can create your own navigation widget following this tutorial
  • You can bind a navigation control to SiteMapDataSource control
  • Here is a sample for a custom membership provider
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Telerik.Sitefinity.Security.Data;
using Telerik.Sitefinity.Security.Model;
using Telerik.Sitefinity.Security;
 
namespace Telerik.Sitefinity.Samples
   public class MembershipDataProviderCustom : MembershipDataProvider
    
        public override Security.Model.User CreateUser(string userName)
        
           //
            return null;
        
 
        public override Security.Model.User CreateUser(Guid id, string userName)
        
            //
            return null;
        
 
        public override Security.Model.User GetUser(Guid id)
        
           //
            return null;
        
 
        public override IQueryable<Security.Model.User> GetUsers()
        
          //
            List<User> list = new List<User>(1) ;
            var manager = UserManager.GetManager();
            var q = manager.GetUsers().Where(us => us.UserName == "test1").SingleOrDefault();
            if (q == null)
            
                var u = manager.CreateUser("test1");
               manager.SaveChanges();
                list.Add(u);
                return list.AsQueryable<User>();
            
           list.Add(q);
           return list.AsQueryable<User>();
        
 
        public override void Delete(Security.Model.User item)
        
           //
        
    

Regards,
Ivan Dimitrov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed