.RadWindow.RadWindow_Default.rwNormalWindow.rwTransparentWindow |
{ |
display: none !important; |
} Is it possible to use the RadEditor without a toolbar and show a RadWindow? Thanks Scott |
We are using the ListBox control on a common page in our application. We are using the Move Up, Move Down and Delete features. This control is used in 508 and non-508 mode. We are unable to tab into the ListBox no matter what mode we are in. Is tabbing into this control supported? Is there a different way to get to the rows of the box without using the mouse?
<
telerik:RadListBox
ID
=
"rlbFilters"
runat
=
"server"
AllowDelete
=
"True"
AllowReorder
=
"True"
Height
=
"100px"
Width
=
"450px"
OnDeleted
=
"OnCriteriaRemoval"
OnReordered
=
"OnCriteriaReorderd"
OnClientSelectedIndexChanged
=
"rlbFilters_SelectedIndexChanged"
AutoPostBackOnReorder
=
"true"
AutoPostBackOnDelete
=
"true"
Visible
=
"false"
>
<
ButtonSettings
/>
</
telerik:RadListBox
>
Thank you,
Lindsay
Hi,
I have added resource control which is showing fine in radschedule advance form. I need to change end date and time according to selected value from the added resource, however unable to find selected index changed event of added resource!! Do I need to implement AdvancedForm.ascx for that or should I use “AdvancedInsertTemplate” “AdvancedEditTemplate” with normal dropdown?
If I implement second approach getting issue in “AdvancedInsertTemplate” and “AdvancedEditTemplate” while retrieving reoccurrence rules and parent ID….
.Caption {
color: #999999;
font-family: Arial;
font-size: 9pt;
font-style: italic;
}
<
EditFormSettings
UserControlName
=
"~/Web/Administative/Companies and users/Companies view/NewCompanyWizard.ascx"
EditFormType
=
"WebUserControl"
PopUpSettings-Modal
=
"true"
></
EditFormSettings
>
function
customResizeModalBackground() {
var
d = String.format(
"modalDivId_{0}"
,
this
.get_id());
var
b = $get(d);
if
(b) {
b.style.width = $(window).width();
b.style.height = $(window).height();
}
}
var
popUp;
function
PopUpShowing(sender, eventArgs) {
popUp = eventArgs.get_popUp();
var
popUpWidth = popUp.style.width.substr(0, popUp.style.width.indexOf(
"px"
));
popUp.style.left = (Math.round(($(window).width() - popUpWidth) / 2 + sender.get_element().offsetLeft)).toString() +
"px"
;
popUp.style.top = $(
'#'
+ sender.ClientID).position().top +
"px"
;
sender.resizeModalBackground = customResizeModalBackground;
}
<
ClientEvents
OnPopUpShowing
=
"PopUpShowing"
/>