Can not find button or link controls of any kind?
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
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.
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.
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) //