I have a client-side situation where I need to control when the <asp:CustomValidator> ClientValidationFunction is called. Is there any way to disable the default (implicit) call and then call it explicitly from javascript?
If you go to our site www.baudville.com and search for item 71238RD and click on the personalize and add to cart, and then select the drop down for Anniversary year, it seems to jump off to the right in any version of Firefox. Any help on this would be appreciated, thanks.
I'm having trouble with the RadAjax tools, I guess it stems from not fully understanding them, dispite being able to use them due to their ease of use.
I have an update trigger that updates several area of a page, at first I didn't have a loading panel, but for lengthy updates the users didn't get any feedback that something was going on.
When I add the loading panel it showed in each area of the page when working, that upto 4 instances.
I have set the IsSticky to true and it appears on the left only, and dispite seting the background position property to center it stays there.
How do I get a loading panel to disply in the centre of my page?
Hi
I used the user control, the user control functions like combo box with rad tree view. this user control i used so many pages. I used the sessions for selected rad tree view selected nodes for searching or inserting values. it is working fine.When i select(node rad tree view) and search. the result found. when i move to another page search by default this session value search result is showing. Herewith i cannot clear the session value after search because the need data source asking session value for Edit and retrieval purpose. Let me how can i solved this problem..
//Load Area Reference Data From Page
public AreaAssociationData LoadAreaReferenceDataFromPage()
{
UserData sessionUser = (UserData)JSSessionHandler.GetSessionValue("UserData");
AreaAssociationData aAreaAssociationData = new AreaAssociationData();
if (sessionUser != null && sessionUser.Id > 0)
{
if ((ArrayList)JSSessionHandler.GetSessionValue("AreaIdList") != null)
{
List<AreaData> AssociatedDestinations = new List<AreaData>();
List<AreaData> AssociatedSubAreas = new List<AreaData>();
List<AreaData> AssociatedLocations = new List<AreaData>();
ArrayList DestinationList = new ArrayList();
DestinationList = (ArrayList)JSSessionHandler.GetSessionValue("AreaIdList");
if (DestinationList != null)
{
foreach (long DestinationId in DestinationList)
{
AreaData aDestination = new AreaData();
aDestination.Id = DestinationId;
AssociatedDestinations.Add(aDestination);
I am using a rad numeric textbox on my page, but however, I cannot make use of the decimal key of my numeric keypad.
I have tried using groupseparator="," and even groupseparator="." but still, the control does not accept the [del] key value.
Instead, if I press the comma "," key, the control accepts it.
Hi, i am trying to utilize the client functions for the RadControls working in the 2008 Q3 version. I try to use $find in order to get the telerik client version of the controls but it bombs on the $find call. What do i need in order for this to work?