I am trying to copy/paste a delimited string into the AutoCompleteBox such as follows - test@test.com;test2@test.com;test3@test.com
The expected behavior would be to tokenize all three of those entries; however, it only takes the last entry and removes the others. Is there a way to get it to tokenize all 3?
Hi
How to load dropdownlist based on group for ex:
ex:
India
Tamilnadu
Andra
Srilanka
State1
State2
In telerik dropdownlist
Hi
How to select Multiple option dropdownlist in telerik control any one guide me.
http://demos.telerik.com/aspnet-mvc/multiselect/serverfiltering
As you can see in the attached image, the edges of the list of records are not border radius format. The examples in the online demo instead and there are no particular settings to make the object. How can I fix?
How can I fix? here is the html code
<
telerik:RadSearchBox
ID
=
"RadSearchBox1"
runat
=
"server"
Width
=
"400px"
ShowSearchButton
=
"false"
RenderMode
=
"Lightweight"
>
<
DropDownSettings
Height
=
"300"
Width
=
"400"
/>
<
WebServiceSettings
Path
=
"Index.aspx"
Method
=
"GetResults"
/>
</
telerik:RadSearchBox
>
Also how can I enter the search button in the search button?
<form id="form1" runat="server"> |
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
</telerik:RadScriptManager> |
<div> |
<telerik:RadEditor ID="RadEditor1" runat="server"> |
</telerik:RadEditor> |
<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server"> |
</telerik:RadFileExplorer> |
</div> |
</form> |
Protected Sub Page_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRender |
activeFileBrowser() |
End Sub |
Protected Sub activeFileBrowser() |
RadEditor1.ImageManager.ViewPaths = New String() {"/ImagesClients/" & chercheChemin() & "/Animation/"} |
RadEditor1.ImageManager.UploadPaths = New String() {"/ImagesClients/" & chercheChemin() & "/Animation/"} |
RadEditor1.ImageManager.DeletePaths = New String() {"/ImagesClients/" & chercheChemin() & "/Animation/"} |
RadFileExplorer1.Configuration.ViewPaths = New String() {"/ImagesClients/" & chercheChemin() & "/Animation/"} |
RadFileExplorer1.Configuration.UploadPaths = New String() {"/ImagesClients/" & chercheChemin() & "/Animation/"} |
RadFileExplorer1.Configuration.DeletePaths = New String() {"/ImagesClients/" & chercheChemin() & "/Animation/"} |
End Sub |
Hi!
i am trying to populate and select all items of the following RadComboBox:
<
telerik:RadDropDownList
ID
=
"RadDropDownParameterX"
runat
=
"server"
DropDownHeight
=
"120px"
Width
=
"120px"
Skin
=
"BlackMetroTouch"
DropDownWidth
=
"120px"
OnSelectedIndexChanged
=
"RadDropDownParameterX_SelectedIndexChanged"
AutoPostBack
=
"true"
>
<
Items
>
<
telerik:DropDownListItem
Text
=
"Countries"
Value
=
"Countries"
Selected
=
"true"
/>
<
telerik:DropDownListItem
Text
=
"Sites"
Value
=
"Sites"
/>
<
telerik:DropDownListItem
Text
=
"Rts"
Value
=
"Rts"
/>
<
telerik:DropDownListItem
Text
=
"Machines"
Value
=
"Machines"
/>
<
telerik:DropDownListItem
Text
=
"Protocols"
Value
=
"Protocols"
/>
</
Items
>
</
telerik:RadDropDownList
>
With the following code/logic:
Protected
Sub
Page_Load(sender
As
Object
, e
As
System.EventArgs)
If
Not
Page.IsPostBack
Then
LoadCountries()
Dim
collectionAllCountries
As
IList(Of RadComboBoxItem)
collectionAllCountries = RadComboBoxCountries.Items
For
Each
item
As
RadComboBoxItem in collectionAllCountries
item.Selected = true
Next
...
...
...
Public
Sub
LoadCountries()
Dim
ListaAllCountries
As
List(Of AffideaGeneralWeb.BLL.General.Countries)
ListaAllCountries = AffideaGeneralWeb.BLL.General.Countries.GetCountries()
Dim
dataCountries
As
DataTable =
New
DataTable()
dataCountries.Columns.Add(
"text"
)
dataCountries.Columns.Add(
"value"
)
For
Each
c
As
AffideaGeneralWeb.BLL.General.Countries
In
ListaAllCountries
Dim
currentRow
As
DataRow = dataCountries.NewRow()
currentRow(
"text"
) = c.Title
currentRow(
"value"
) = c.ID
dataCountries.Rows.Add(currentRow)
Next
RadComboBoxCountries.DataSource = dataCountries
RadComboBoxCountries.DataBind()
End
Sub
However even if items are populated (so LoadCountries() works and binds datasource to RadComboBox) the code that i am using to select items does not select them in fact (check screenshot)!
Am i missing something here?
I have this setup in witch i dynamically add controls. I have tried to put AjaxManagerProxy but it didn't work.
Sys.WebForms.PageRequestManagerServerErrorException: Script control 'PnlItems' is not a registered script control.
Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
<%--Main page--%>
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
>
<
asp:Repeater
ID
=
"RptItems"
runat
=
"server"
>
<
ItemTemplate
>
<
cs:customitem
id
=
"CustomItem1"
runat
=
"server"
/>
</
ItemTemplate
>
</
asp:Repeater
>
<
asp:Button
ID
=
"BtnAddItem"
runat
=
"server"
OnClick
=
"BtnAddItem_OnClick"
/>
</
telerik:RadAjaxPanel
>
<%--Custom control--%><
telerik:RadAjaxPanel
ID
=
"PnlItems"
runat
=
"server"
>
<
asp:Repeater
ID
=
"RptItems"
runat
=
"server"
>
<
ItemTemplate
>
<
asp:TextBox
ID
=
"TxtName"
runat
=
"server"
/>
</
ItemTemplate
>
</
asp:Repeater
>
<
asp:Button
ID
=
"BtnAddItem"
runat
=
"server"
OnClick
=
"BtnAddItem_OnClick"
/>
</
telerik:RadAjaxPanel
>
I have created a ModalPopUp Extender with a RadDatePicker on it. I've run into a problem, though, when you try to pick a date, the calendar comes up behind the modal window rather than on top and you cannot pick a date.
Any thoughts on how to correct this situation would be appreciated. Below is my markup.
<
div
id
=
"divConfirmIDES"
runat
=
"server"
>
<
div
id
=
"divP3ProfileDate"
runat
=
"server"
>
<
div
class
=
"PopupHeader"
>
<
asp:Label
ID
=
"Label1"
runat
=
"server"
Text
=
"P3 Update Profile Date"
></
asp:Label
>
</
div
>
<
div
class
=
"floatLeft"
>
<
label
for
=
"rdpPanelP3ProfileDate"
>P3 Profile Date:</
label
>
<
telerik:RadDatePicker
ID
=
"rdpPanelP3UpdateDate"
runat
=
"server"
>
<
Calendar
runat
=
"server"
ShowRowHeaders
=
"false"
>
<
SpecialDays
>
<
telerik:RadCalendarDay
Repeatable
=
"Today"
Date
=
""
IsToday
=
"true"
>
<
ItemStyle
CssClass
=
"rcToday"
/>
</
telerik:RadCalendarDay
>
</
SpecialDays
>
</
Calendar
>
<
DateInput
runat
=
"server"
DateFormat
=
"dd MMM yyyy"
EmptyMessage
=
"DD MMM YYYY"
/>
</
telerik:RadDatePicker
>
</
div
>
<
div
class
=
"formRow"
>
<
asp:Label
ID
=
"Label2"
runat
=
"server"
Style
=
"font-weight: bold"
Text
=
'By clicking "Save", you are confirming that the P3 Profile Date is correct.'
></
asp:Label
>
</
div
>
<
div
class
=
"formRowNoBorder"
>
<
div
class
=
"floatRight"
>
<
asp:LinkButton
ID
=
"btnOkP3Date"
runat
=
"server"
OnClick
=
"btnOkP3Date_Click"
CssClass
=
"silverButton"
><
span
>Ok</
span
></
asp:LinkButton
>
<
asp:LinkButton
ID
=
"btnCancelP3Date"
runat
=
"server"
CausesValidation
=
"false"
CssClass
=
"floatRightLink"
><
span
>Cancel</
span
></
asp:LinkButton
>
</
div
>
</
div
>
</
div
>
</
asp:Panel
>
<
ajaxtoolkit:ModalPopupExtender
ID
=
"mpeConfirmIDES"
runat
=
"server"
BackgroundCssClass
=
"modalBackground"
DropShadow
=
"true"
TargetControlID
=
"btnFakeConfirmIDES"
PopupControlID
=
"pnlConfirmIDES"
CancelControlID
=
"btnCancelIDES"
>
</
ajaxtoolkit:ModalPopupExtender
>