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"
/>
<
telerik:RadGrid
ID
=
"trgStudAttend"
runat
=
"server"
AllowSorting
=
"True"
AutoGenerateColumns
=
"False"
GridLines
=
"None"
Skin
=
"Windows7"
CellSpacing
=
"0"
AllowMultiRowEdit
=
"True"
>
<
ClientSettings
EnableRowHoverStyle
=
"true"
/>
<
MasterTableView
DataKeyNames
=
"atdID"
EditMode
=
"InPlace"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"atdID"
HeaderText
=
"ID"
Visible
=
"false"
UniqueName
=
"atdID"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
DataField
=
"studDisplayName"
HeaderText
=
"Name"
UniqueName
=
"studDisplayName"
ReadOnly
=
"True"
>
</
telerik:GridBoundColumn
>
<
telerik:GridDropDownColumn
DataSourceID
=
"sdsTimeOfDayCodes"
HeaderText
=
"Time of Day"
ListTextField
=
"comb"
ListValueField
=
"todcCode"
UniqueName
=
"todcCode"
DataField
=
"atdTimeOfDayCode"
>
</
telerik:GridDropDownColumn
>
<
telerik:GridDropDownColumn
DataSourceID
=
"sdsReasonCodes"
HeaderText
=
"Reason"
ListTextField
=
"comb"
ListValueField
=
"rfacCode"
UniqueName
=
"rfacCode"
DataField
=
"atdReasonCode"
>
</
telerik:GridDropDownColumn
>
<
telerik:GridBoundColumn
DataField
=
"atdComment"
HeaderText
=
"Comment"
UniqueName
=
"atdComment"
>
</
telerik:GridBoundColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
' Declarations
Dim
sqlString
As
String
=
""
Dim
sqlCom
As
SqlCommand
Dim
todcDDL
As
RadComboBox
' Loop through each student in the radgrid, and save the selected values to the details database
For
Each
i
As
GridDataItem
In
trgStudAttend.EditItems
todcDDL = i.FindControl(
"todcCode"
)
Next