Hello,
I have a RadComboBox (with AutoPostBack="True"), a RadTextBox and a button. I select a value from RadComboBox then after post back
i enter some value in the RadTextBox and click on the button. On button's client click, i am using following javascript code:
var description = $find("<%=RadTextBox.ClientID%>");
if (description.get_value().trim() === "") {
msg += "Description is required\n";
}
But description.get_value() shows blank even though i have enterted some value (before post back). This issue is only
with IE 11.0.9600. In IE 11.0.10240 and chrome this works fine.
I am using telerik version 2016.1.113.45
Please advise.
| function OnClientAppointmentCreated(sender, eventArgs) { |
| //eventArgs.get_appointment().get_element().style.backgroundColor = "Blue" |
| } |
Hello,
is there a way to have this row and column fixed (as per header infos) ... like in Excel ...
Thanks.
so all I'm trying to do is to be modify the menu (root) item to be "transparent" on background color. I got it to work, almost. The only thing is NOT working is that when the mouse moves "out" of the menu (or if it moves to the sub items, child items), the "root" item goes back to "black", how can I make that "transparent" too?
here are my css code:
.RadMenu_Glow .rmRootGroup
{
background: Transparent !important;
border-left-style: none !important;
border-left-color: transparent !important;
border-left-width: 0px;
border-right-style: none !important;
border-right-color: transparent !important;
border-right-width: 0px;
border-top-style: none !important;
border-top-color: transparent !important;
border-top-width: 0px;
border-bottom-style: none !important;
border-bottom-color: transparent !important;
border-bottom-width: 0px;
box-shadow: none !important;
}
.RadMenu_Glow .rmLink:hover,
.RadMenu_Glow .rmFocused, .rmLink
.RadMenu_Glow .rmSelected
{
background-color: transparent !important;
background-image: none !important;
background-position: 0px 0px !important;
}
.RadMenu_Glow .rmText
{
background-image: none !important;
background-color: transparent !important;
}
Hello
How can I remove some options from the two dropdowns ?
Basically, I only want to keep the "contains" option.
I haven't found how to do it with a grid in Excel Like Filtering mode.
Thank you
philippe
Hi. I'm using Telerik 2016.3.1027.40. I need to export an Excel spreadsheet in BIFF that includes both the data that appears in a UI table, which Telerik handles, and any table filtering criteria and the filtering option (Contains, StartsWith, EqualTo, Between, etc.) on an additional tab on the worksheet. I can create the additional tab and population it with data. My question is: is it possible to retrieve the filtering option used per column (if any) in the UI in the view's code behind?
<telerik:Radgrid Rendermode="Lightweight" ID="RadGrid1" runat="server" showstatusbar="true" autogeneratecolumns="False" AllowFilteringByColumn="True" pagesize="10" allowsorting="True" allowmultirowselection="False" allowpaging="True" Filtertype="Combined" onneeddatasource="RadGrid1_NeedDataSource" oniteminserted="RadGrid1_ItemInserted" onitemcommand="RadGrid1_ItemCommand" oninsertcommand="RadGrid1_InsertCommand" onupdatecommand="RadGrid1_UpdateCommand" onitemdatabound="RadGrid1_ItemDataBound" ondetailtabledatabind="RadGrid1_DetailTableDataBind" OnDeleteCommand="RadGrid1_DeleteCommand" Skin="Outlook" OnItemCreated="RadGrid1_ItemCreated" ShowExportToExcelButton="true" onBiffExporting="RadGrid1_BiffExporting"> <MasterTableView AutoGenerateColumns="False" UniqueName="CATDESCRIPTION" AllowMultiColumnSorting="True" DataKeyNames="CAT_DESCRIPTION" PagerStyle-AlwaysVisible="true" EditMode="InPlace" CommandItemDisplay="Top"><DetailTables> <telerik:GridTableView DataKeyNames="pk" Name="Codes" TableLayout="Auto" EditMode="InPlace" PagerStyle-AlwaysVisible="true" CommandItemDisplay="Top"> <CommandItemSettings ShowExportToExcelButton="true" /> <CommandItemSettings AddNewRecordText="Add Rule" />Additional code omitted...
and the code behind something like this...
protected void RadGrid1_BiffExporting(object o, GridBiffExportingEventArgs e) { Telerik.Web.UI.ExportInfrastructure.Table newSheet1 = new Telerik.Web.UI.ExportInfrastructure.Table("Metadata"); // Get filtering options here... // Add filtering options to newSheet1 in new cells...
e.ExportStructure.Tables.Add(newSheet1);}
I am attempting to use the below to apply a css class to rows in my rad grid. I am only showing a brief portion of the code behind as I only need to apply this to a few of the rows.
However, the css is not applied. What would be the proper way to achieve such?
foreach (GridDataItem row in r.MasterTableView.Items)
{
row.CssClass = "blamanca";
}

Hi
I have a need to test the column name. Is it possible in the itemDatabound event to get to the actual column name that is being bound to?
I'd expect this to change with each cell, or does the bind happen per row in one go?
Andy