Hi
How to implemented AutoCompleteBox in Telerik RadCombobox control . But I saw this in teklerik home website here DataSourceID="SqlDataSource1" mention for fetch the data . But i never need this logic i need fetch data from the server side c# code using list object from the database how will do this
any one post this.
<telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBox1" runat="server" Width="400" Height="400px"
EmptyMessage="Type an E-mail" DataSourceID="SqlDataSource1" DataTextField="ContactName"
OnItemDataBound="RadComboBox1_ItemDataBound">
</telerik:RadComboBox>
Hi, I have a Radmenu that is linked to a sitemap file for the menu items, please let me know if access key can be set for the menu items in such a scenario.
Also, please let me know if we can set 'F' keys (F1 to F12) as access keys.
Thanks,
Rajesh
Hello team,
I am using Rad Editor and using export to word as shown in your demo.I want to modify few things :-
I have created the button in which i have used RadEditor1.ExportToDocx()
I want that when i click the button i want that the file should save with the name as defined by me (customized name) and also how to export the editor content to the existing word file(append the new content to the existing content in word file).
I want to save the exported file to different file location. How would i set the location path to save the exported file.
Thanks for the Reply in Advance.
Hi,
i'm testing radscheduler for a customer demand.
i would like to obtain a display as show as in attachment picture.
i try this demo http://demos.telerik.com/aspnet-ajax/scheduler/examples/resourcegrouping/defaultcs.aspx with vertical resource grouping and week view
is there a way to :
- add a custom column
- have a time scale with two only two slot (morning/afternoon)
Thanks.
Alan
hi, I want to load a page in an .aspx radwindow with code-behind, impostatndo the url, eco vb code and html code, but I get this javascript message that I do not understand because I seem to have written well everything.
this is error:
JavaScript critical error at line 41, column 10 in (unknown source location) \ n \ nSCRIPT1004: Expected ';'
url =
"../report/report.aspx?date1="
+ date
Report_Window.NavigateUrl = url
Report_Window.Title =
"Report "
Dim
script
As
String
=
"Function f(){$find("
""
+ Report_Window.ClientID +
""
").show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);"
ScriptManager.RegisterStartupScript(
Me
,
Me
.[
GetType
](),
"show"
, script,
True
)
<
telerik:RadWindow
ID
=
"Report_Window"
runat
=
"server"
Title
=
"Report"
ShowContentDuringLoad
=
"false"
VisibleStatusbar
=
"false"
<br> Behaviors="Close, Move" Skin="Silk" Height="100px" Width="200px" AutoSize="true" Modal="true" ReloadOnShow="true"><
br
> </
telerik:RadWindow
>
Hey there,
I have a button column in a radgrid that is set to pushbutton - however, it does not show up as a button.
We are using the Silk skin included with Telerik.UI.Skins.
I have attached a screenshot of the error. You can also find it here on imgur: http://i.imgur.com/QV5BnGd.jpg
Our webconfig has
<
httpHandlers
>
<
add
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
verb
=
"*"
validate
=
"false"
/>
</
httpHandlers
>
<
system.webServer
>
<
validation
validateIntegratedModeConfiguration
=
"false"
/>
<
handlers
>
<
add
name
=
"Telerik_Web_UI_WebResource_axd"
verb
=
"*"
preCondition
=
"integratedMode"
path
=
"Telerik.Web.UI.WebResource.axd"
type
=
"Telerik.Web.UI.WebResource"
/>
</
handlers
>
</
system.webServer
>
I have tried adding a location, with no help:
<
location
allowOverride
=
"false"
path
=
"Telerik.Web.UI.WebResource.axd"
>
<
system.web
>
<
authorization
>
<
allow
users
=
"*"
/>
</
authorization
>
</
system.web
>
</
location
>
Any ideas?
Hi,
I have a javascript function who is executed when the client click :
treeView.OnClientNodeClicking = "MyJavascriptFunction"
It works great.
So, i have another code-behind function who select a node like that :
Dim node4 As RadTreeNode = treeView.FindNodeByValue(txtHiddenModele.Value)
If node4 IsNot Nothing Then
node4.Selected = True
End If
It works too, the node is selected but the javascript function is not executed (MyJavascriptFunction)
How can i solve this?
Thanks!