Has anyone experienced a problem where the standard Previous button created by the RadWizard control always causes validation to occur when clicked?
The Telerik documentation states that the previous button does not cause validation, however when I click previous, any field validators that fail will stop the wizard from moving to the previous step.
I've looked through the object properties and methods but cannot find any way to modify the previous button properties.
The version I'm using is 2015.2.623.40 according to the DLL file information.
hi all,
I am new to telerik . I had a doubt regarding how to use radcombobox and editable textbox inside a radgrid.
I have attached the image for better understanding.
Each row in radgrid i need radcomboxbox and editable textbox and commands against them . Commands are edit,save,delete.
I have an ASP.Net page with Telerik controls like the RadMenu, RadButtons, RadTextBox, RadLabels, and RadioButtonList at the top of the page.
After the Telerik controls there is a Crystal Report Viewer control.
I need a way to keep all the Telerik controls at a fixed position at the top of the page so that no matter how the user scrolls the rest of the page including the Crystal Report Viewer, that all the Telerik controls will stay in view. This needs to be able to work on mobile devices (Android, iOS, Windows) as well.
I have tried using CSS position: fixed with a div but that does not work well and gets even worse on Android devices.
Any ideas?
Please help.
Sincerely,
Keith Jackson
Hi,
KeepInScreenBounds is not working on Lightweight rendering 2016.3.1027 skin Default
What could this be?
BR
Marc
void RadScheduler1_TimeSlotCreated(object sender, Telerik.Web.UI.TimeSlotCreatedEventArgs e)
{
if (e.TimeSlot.Start.Date.DayOfWeek == DayOfWeek.Friday)
e.TimeSlot.CssClass = "rsSunCol";
else if (e.TimeSlot.Start.Date.DayOfWeek == DayOfWeek.Thursday)
e.TimeSlot.CssClass = "rsSatCol";
else
e.TimeSlot.CssClass.Replace("rsSunCol", string.Empty); // e.TimeSlot.CssClass = string.Empty;
}
as it's given in the existing code, Friday and Thursday has it's differentiation with the different week-end color. but I cannot remove the Saturday and Sunday Color.
please let me know hot to replace the CssClass of the default week-end (Sat & Sun) as a normal column.
Thanks in Advance.
How do I go about setting a ToolBarButton image sprite on the client side? I want to change the sprite css class depending on user action.
On the server side, I successfully set the sprite for the buttons "Option1" and "Option2" in my toolbar "rtbarLs" like this:
RadToolBarButton rtbb1 = (RadToolBarButton)rtbarLs.FindItemByValue(
"Option1"
);
rtbb1.SpriteCssClass =
"spriteCheck"
;
rtbb1.EnableImageSprite =
true
;
RadToolBarButton rtbb2 = (RadToolBarButton)rtbarLs.FindItemByValue(
"Option2"
);
rtbb2.SpriteCssClass =
"spriteBlank"
;
rtbb2.EnableImageSprite =
true
;
On the client side, I tried this:
var
rtbarSumm = window.$find(
"<%= rtbarLs.ClientID %>"
);
rtbarSumm.findItemByValue(
'Option2'
).set_spriteCssClass(
"spriteCheck"
);
but the spriteCssClass for ToolBarButton "Option2" is still "spriteBlank". Note that there is no JavaScript error reported in the debugger console.
Thoughts?
Hi, One of my wizard step is taking up a lot of space on mobile. User need to scroll down to fill the form. When the user click next, the wizard does not come back to top.
Is there a way to automatically scoll back to top when we hit "next" ?
thank you