After having enabled WAI-ARIA support for the RadTreeView, I cannot navigate to the TreeView items using Tab.
The items in the TreeView are not focusable.
Is this probably a bug? Or do I need to set another property to get keyboard support for reaching/collapsing/expanding nodes?
HI,
Displaying my data in my grid i used few templated column.
They are gather mutiple field and display them nicely. Like : Name - Surname
But for my Exel Export , I need to split those information into 2 column.
To apply filter in exel ect..
<
telerik:GridTemplateColumn
UniqueName
=
"PRD_exp"
Exportable
=
"true"
HeaderText="Info1<br/>Info2" >
<
ItemTemplate
>
<%#((myDataTYPE)Container.DataItem).Info1 %>
<
br
/>-<
br
/>
<%#((myDataTYPE)Container.DataItem).Info2 %>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridBoundColumn
DataField
=
"Info1"
UniqueName
=
"Info2"
Exportable
=
"true"
Visible
=
"false"
/>
<
telerik:GridBoundColumn
DataField
=
"Info2"
UniqueName
=
"Info2"
Exportable
=
"true"
Visible
=
"false"
/>
Dear Telerik,
we have a problem with RadDatePicker control - "Calendar-DayCellToolTipFormat" format string does not working properly.
Please find attached screenshots.
P.S.:
While testing used "Telerik.Web.UI.dll" version: 2016.3.914.45
Hi,
I have two .aspx webpages, each one has a RadGrid on it. Both have a master page file in common so the calls for css files should be the same.
But, styles differ on page A from page B.
On page A Telerik.Web.UI.Skins.GridLite.css is in the combined css file. While on page B, Telerik.Web.UI.Skins.Grid.css is in the combined css file.
Why ?
Css files are called this way in the master page :
<
telerik:RadStyleSheetManager
ID
=
"RadStyleSheetManager1"
runat
=
"server"
>
<
StyleSheets
>
<
telerik:StyleSheetReference
Name
=
"mytheme.mytheme.Grid.mytheme.css"
Assembly
=
"mytheme"
></
telerik:StyleSheetReference
>
</
StyleSheets
>
</
telerik:RadStyleSheetManager
>
And in the web.config I have set :
<
add
key
=
"Telerik.Web.UI.RenderMode"
value
=
"lightweight"
/>
I use a custom skin made with Telerik theme builder and skin assembly
After reviewing the documentation and help files I'm still doing something wrong. I can actually get the dropdown to display correctly on and insert and edit modes. Everything is working there fine and saving correctly. I'm having troubles with the value displaying on load. Here's what I've got.
<telerik:GridDropDownColumn UniqueName="WatchdogFrequencyddl" ListTextField="Name" ListValueField="Watchdogfrequencyid" DataField="Watchdogfrequencyid" |
SortExpression="Watchdogfrequencyid" HeaderText="Frequency" DropDownControlType="DropDownList" FooterText="RadComboBox column footer" > |
</telerik:GridDropDownColumn> |
protected void WDTGrid_ItemDataBound(object sender, GridItemEventArgs e) |
{ |
if (e.Item is GridEditableItem && e.Item.IsInEditMode) //fire for both edit and insert |
{ |
GridEditableItem eeditItem = e.Item as GridEditableItem; |
GridEditManager editMgr = editItem.EditManager; |
GridDropDownListColumnEditor wdfEditor = editMgr.GetColumnEditor("WatchdogFrequencyddl") as GridDropDownListColumnEditor; |
string s = DataBinder.Eval(editItem.DataItem, "Watchdogfrequencyid").ToString(); //the field should point to the ListValueField of the dropdown editor |
wdfEditor.DataSource = getWatchdogFrequency(); |
wdfEditor.DataBind(); |
wdfEditor.SelectedValue = s; |
} |
} |
Postback filter operation for Contains (for string types) does not work well...
Hi All,
I wanted to hide the default AsyncUpload button and call it using my custom button. The loading of file will still show once its called by my button.
My custom buttons is just <a href.. with FontAwesome.
<
a
href
=
"#"
onclick
=
"callUpload(); return false;"
><
i
class
=
"fa fa-camera large"
title
=
"Change Photo"
></
i
></
a
>
Any code for JavaScript that can call the AsyncUpload click?
Thanks in advance,
RJ