Dear community,
i want to make a preselection on a combobox based on custom attributes on clientside, each time i enter new values to numeric Text boxes.
I have created the attributes on ItemDataBound
Now i want to compare my custom attributes with two other textboxes each time i have entered a new value in the textbox
As far as i know, there is no method FindItemsByAttribute, right ?
So how to check if my textboxvalue are in the range of the attribute values on clientside, and find the first match.
Any suggestion how to do this task.
Kind regards
Martin Gartmann
i want to make a preselection on a combobox based on custom attributes on clientside, each time i enter new values to numeric Text boxes.
I have created the attributes on ItemDataBound
Protected
Sub
cbxKonfektion_ItemDataBound(
ByVal
sender
As
Object
,
ByVal
e
As
Telerik.Web.UI.RadComboBoxItemEventArgs)
Handles
cbxKonfektion.ItemDataBound
Dim
dataItem
As
DataRowView =
CType
(e.Item.DataItem, DataRowView)
e.Item.Attributes(
"Gewicht_UG"
) = dataItem(
"Gewicht_UG"
)
e.Item.Attributes(
"Gewicht_OG"
) = dataItem(
"Gewicht_OG"
)
e.Item.Attributes(
"KGR_UG"
) = dataItem(
"KGR_UG"
)
e.Item.Attributes(
"KGR_OG"
) = dataItem(
"KGR_OG"
)
End
Sub
Now i want to compare my custom attributes with two other textboxes each time i have entered a new value in the textbox
As far as i know, there is no method FindItemsByAttribute, right ?
So how to check if my textboxvalue are in the range of the attribute values on clientside, and find the first match.
Any suggestion how to do this task.
Kind regards
Martin Gartmann