Hello,
I have an image that is not showing for a radimagebutton. I have attached to thread, but I'm not able to see anything wrong.
[ASP.NET Markup]
<telerik:radimagebutton id="radimagebutton_AddNewItem" runat="server" autopostback="false" tooltip="Click to add item">
<image url="Includes/images/project.jpg" />
</telerik:radimagebutton>
Hi all,
I am new to the UI for ASP.NET AJAX. I am still learning. I am interested in using RadSchedulerRecurrenceEditor alone, not with RadScheduler. The problem I encounter now is that I see only the Recurrence label, and "Never" is selected in the dropdown box. I write the logic that reads the RecurrenceRule from Appointments.xml and assigns it to RecurrenceRuleText of the RadSchedulerRecurrenceEditor control, but the control does not show the entries from my RecurrenceRule. Can you please help? Thank you very much.
In a vb.net web form 2010 application that uses the rad editor, the development workstation uses windows 7 currently. In the near future, they will be using windows 10 workstations for development. The skin value for the radeditor uses a skin that points to windows7 as listed below:
<telerik:RadEditor ID="reLetterEditor"
runat="server"
Skin="Windows7"
ContentFilters="DefaultFilters,PdfExportFilter"
NewLineMode="Br"
EditModes="Design,Preview,html"
Width="100%"
Height="800px"
>
When the development workstation is changed to using windows 10, is there anything I need to be aware of concerned about?
Will changing the skin value to be "Windows10" be enough? Is that all I need to do except for testing the application?
I am currently using version 2016.3.914.45 of ASP.Net Ajax control.
My grid is inside a page layout control.
The problem is that on my development machine a asp checkbox appears in the grid as expected. but when published
the checkbox does not appear on any browser I check with. if I place a letter "S" in the text portion of the checkbox I can
see the "S" and select the grid row with the "S" but I still see now checkbox.
if I place all the code inside a simple html page with no page layout the checkbox is displayed correctly.
Thanks for any help
<
telerik:RadComboBox
ID
=
"RadComboBox1"
runat
=
"server"
AutoPostBack
=
"True"
CollapseDelay
=
"0"
ExpandDelay
=
"0"
Filter
=
"StartsWith"
ItemsPerRequest
=
"10"
MarkFirstMatch
=
"true"
EnableAutomaticLoadOnDemand
=
"True"
EmptyMessage
=
"-New Menu-"
ShowMoreResultsBox
=
"True"
EnableItemCaching
=
"false"
EnableLoadOnDemand
=
"True"
EnableVirtualScrolling
=
"True"
>
<
HeaderTemplate
>
<
table
style
=
"width: 275px"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
style
=
"width: 175px; height: 13px"
>Name
</
td
>
<
td
style
=
"width: 60px; height: 13px"
>ID
</
td
>
<
td
style
=
"width: 40px; height: 13px"
>Grade
</
td
>
</
tr
>
</
table
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
table
style
=
"width: 275px"
cellspacing
=
"0"
cellpadding
=
"0"
>
<
tr
>
<
td
style
=
"width: 175px;"
>
<%# DataBinder.Eval(Container.DataItem, "FullName")%>
</
td
>
<
td
style
=
"width: 60px;"
>
<%# DataBinder.Eval(Container.DataItem, "StudentID")%>
</
td
>
<
td
style
=
"width: 40px;"
>
<%# DataBinder.Eval(Container.DataItem, "DisplayGrade")%>
</
td
>
</
tr
>
</
table
>
</
ItemTemplate
>
</
telerik:RadComboBox
>
RadComboBox1.DataTextField =
"FullName"
;
RadComboBox1.DataValueField =
"StudentID"
;
RadComboBox1.DataSource = dt_students;
RadComboBox1.DataBind();
<
telerik:RadAjaxManagerProxy
ID
=
"ADCleintsRadAjaxManagerProxy"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"ClientsRadAjaxPanel"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"ClientsRadListView"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManagerProxy
>
<
telerik:RadAjaxPanel
ID
=
"ClientsRadAjaxPanel"
runat
=
"server"
LoadingPanelID
=
"RadAjaxALoadingPanel"
ViewStateMode
=
"Disabled"
>
<
telerik:RadListView
ID
=
"ClientsRadListView"
runat
=
"server"
ItemPlaceholderID
=
"DrugsContainer"
AllowPaging
=
"True"
PageSize
=
"4"
DataSourceID
=
"ClientsDataSource"
OnItemDataBound
=
"ClientsRadListView_OnItemDataBound"
ViewStateMode
=
"Disabled"
OnNeedDataSource
=
"ClientsRadListView_OnNeedDataSource"
OnItemCreated
=
"RadListView1_ItemCreated"
>
I have checked the Button enable property in different events when i changed the page. Below are the sequence of page flow.
When i changed the RadListView page>
RadListView1_ItemCreated> Button.enabled property is true
PageLoad > Button.enabled property is true
Page_PreRender > first disabling all the form elements with a function > I found my Button enabled property is false here after disabling means my function is working fine.
RadListView1_ItemCreated> This event is fired again and my button.enabled is true here. Please can any one help me with this?
I have an ASP.Net page with VB.net code-behind.
I have a number of telerik controls on the page like the RadMenu, RadButtons, RadTextBox, RadLabel, etc.
The page has a dark near black background.
I have just added the telerik RadioButtonList. My default skin for all my ASP.Net pages is Office2007.
With the Office2007 skin, the text of the items in the RadioButtonList is Black. I need the text of the items to be White.
How to override the forecolor of the text of the items without affecting the other telerik controls on the page?
Sincerely,
Keith Jackson
Im creating a treeview on client side and there is a requirement of adding multiple radio buttons columns dynamically.
How can I achieve adding multiple columns client side with proper alignment. I couldnt find any article showing how to add radio button columns.
node = new Telerik.Web.UI.RadTreeNode();
node.set_text(msg.d[i].Text);
node.set_value(msg.d[i].ID);
var dataItem = msg.d[i];
node.set_expandMode(Telerik.Web.UI.TreeNodeExpandMode.WebService);
objTree.get_nodes().add(node);