If I change the Height (i.e. 10px) of a RadLinkButton, no matter what I do, I can't get the Text to vertical align. Is this a bug or can someone provide me an example on how to get the Text to correctly align vertically?
<
tr
>
<
td
style
=
"width:8px"
></
td
>
<
td
style
=
"text-align:center; vertical-align:middle"
>
<
telerik:RadLinkButton
ID
=
"rlbn_ResetPassword"
runat
=
"server"
Text
=
"Reset Password"
RenderMode
=
"Lightweight"
Height
=
"10px"
Font-Size
=
"Small"
Style
=
"vertical-align:middle"
></
telerik:RadLinkButton
>
</
td
>
<
td
style
=
"width:8px"
></
td
>
</
tr
>
Cheers, Rob.
Could someone help me understand the differences between these two controls and why one would be used over the other?
After reading the documentation they seem VERY VERY similar so I'm not sure why both exists.
Cheers, Rob.
Hi,
When I try to copy-paste contents from word to rad editor, the contents are getting copied without any formatting in IE 11 while there is no issue with other browsers like Firefox or Chrome. In other browsers the formatting is proper for the copied text. Please provide a fix for this issue.
Thanks,
Anjo.
<
telerik:RadScriptManager
runat
=
"server"
ID
=
"ScriptManager1"
>
</
telerik:RadScriptManager
>
<
telerik:RadComboBox
runat
=
"server"
ID
=
"ComboBox1"
></
telerik:RadComboBox
>
<
asp:Button
ID
=
"Button1"
runat
=
"server"
Text
=
"Submit"
/>
<
asp:RequiredFieldValidator
runat
=
"server"
ID
=
"RequiredFieldValidator1"
ErrorMessage
=
"Choose a destination first"
ControlToValidate
=
"ComboBox1"
/>
var def =
new
ScriptResourceDefinition()
{
ResourceName =
"Telerik.Web.UI.Common.jQuery.js"
,
ResourceAssembly = System.Reflection.Assembly.GetAssembly(
typeof
(Telerik.Web.UI.RadWebControl))
};
ScriptManager.ScriptResourceMapping.AddDefinition(
"jquery"
, def);
It seems Map "remembers" file it was originally loaded with. Meaning if i change file content, Map still loads with an old one. I used to workaround this issue by changing file name every time i load.
Not sure if any new solutions to the issue were introduced recently.
Thank you
I have two filter columns in my grid; however, only one filter (Status) is working. The second filter (Classification) is not working ( alone or in combination with first). I followed Demo example from https://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/filter-templates/defaultvb.aspx
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" Width="100%" AllowFilteringByColumn="True"
AllowSorting="True" AllowPaging="True" PageSize="7" runat="server" AutoGenerateColumns="False"
ShowStatusBar="true" EnableLinqExpressions="false">
<MasterTableView DataKeyNames="InstitutionID" TableLayout="Fixed">
<Columns>
<telerik:GridBoundColumn UniqueName="InstitutionID" DataField="InstitutionID" HeaderText="Institution ID"
AllowFiltering="false" HeaderStyle-Width="200px" />
<telerik:GridBoundColumn UniqueName="PrgOffStatus" DataField="PrgOffStatus" HeaderText="Status" HeaderStyle-Width="200px">
<FilterTemplate>
<telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBoxCity"
Width="100px" AppendDataBoundItems="true" SelectedValue='<%# TryCast(Container, GridItem).OwnerTableView.GetColumn("PrgOffStatus").CurrentFilterValue %>'
runat="server" OnClientSelectedIndexChanged="CityIndexChanged">
<Items>
<telerik:RadComboBoxItem Text="All" />
<telerik:RadComboBoxItem Text="Active" Value="Active" />
<telerik:RadComboBoxItem Text="Discontinued" Value="Discontinued" />
<telerik:RadComboBoxItem Text="Suspended" Value="Suspended" />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlock2" runat="server">
<script type="text/javascript">
function CityIndexChanged(sender, args) {
var tableView = $find("<%# TryCast(Container, GridItem).OwnerTableView.ClientID %>");
tableView.filter("PrgOffStatus", args.get_item().get_value(), "EqualTo");
}
</script>
</telerik:RadScriptBlock>
</FilterTemplate>
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ProgramClass" HeaderText="Classification" UniqueName="ProgramClass"
HeaderStyle-Width="200px" >
<FilterTemplate>
<telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBoxCountry"
Width="100px" AppendDataBoundItems="true" SelectedValue='<%# TryCast(Container, GridItem).OwnerTableView.GetColumn("ProgramClass").CurrentFilterValue %>'
runat="server" OnClientSelectedIndexChanged="CountryIndexChanged">
<Items>
<telerik:RadComboBoxItem Text="All" Value="" />
<telerik:RadComboBoxItem Text="Program" Value="Program" />
<telerik:RadComboBoxItem Text="Concentration" Value="Concentration" />
<telerik:RadComboBoxItem Text="Certificate" Value="Certificate" />
<telerik:RadComboBoxItem Text="NoAward" Value="NoAward" />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlock3" runat="server">
<script type="text/javascript">
function CountryIndexChanged(sender, args) {
var tableView = $find("<%# TryCast(Container, GridItem).OwnerTableView.ClientID %>");
tableView.filter("ProgramClass", args.get_item().get_value(), "EqualTo");
}
</script>
</telerik:RadScriptBlock>
</FilterTemplate>
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Hi,
I have a page that is forced via a document mode to render compatible to IE7 using:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
I am getting severe graphical issues in IE 11 that render some of my Telerik based controls unusable.
These issues are ressolved by removing the X-UA-Compatible line (shown above).
I am using UI for ASP.NET AJAX 2018.1.117.45
My question is can anyone confirm what is the official earliest IE version that UI for ASP.NET AJAX version 2018.1.117.45 supports?
Thanks
Ben
<telerik:RadDatePicker runat="server" ID="datepickShipDate" Width="100px" DateInput-ShowButton="false" |
Skin="WebBlue"> |
<Calendar ID="calShipDate" runat="server" ShowRowHeaders="false" > |
</Calendar> |
<DateInput ID="diShipDate" runat="server" onclick="showDatePicker(this)" /> |
</telerik:RadDatePicker> |
<script language="jscript" type="text/jscript"> |
function showDatePicker(sender) { |
$find("<%= datepickShipDate.ClientID %>").showPopup(); |
} |
</script> |
Hi,
I'm experiencing some issues with RadMaskedTextBox. I'm using this mask: "(###) ###-#### #######". The last 7 numbers being for extension numbers. I understand that there are 4 different options that provide differing values in my backend .ascx file: Text / TextWithLiterals / TextWithPrompt / TextWithPromptAndLiterals. Everything works as expected when following the mask from left-to-right.
But weird things are happening when the user inputs in the middle of the mask: When I debug my RadMaskedTextBox properties in C#, all of these 4 options are ignoring the last 7 numbers.
First: Is it a supported feature of RadMaskedTextBox to allow the user to input in the middle of a mask?
If no ... what's the best workaround?
If yes ... how do I access the proper value?
Test values on front-end input:
When inspecting the input, there are 4 values on front-end:
In the backend, all of these values are as follows:
I cannot find a single solution to allow the user to input a number in the middle of the mask. All the front-end values of the input seem to allow for the user to input in the middle of the mask. But why aren't ANY of these values sent back to C#? The only value I can find that doesn't ignore the extension is LastSetTextBoxValue - but this value is inaccessible.
See images attached.