Hello,
I need to be able to change the editcolumn icon of the RadGrid to a custom Icon using css background properties.
Any direction pointers ?
Thanks
Hi all,
I'm using a rad grid to display employees list and for every employee I have to do some actions so for every employee row i have some buttons
Edit , Delete , Action
I m using on (RadGrid1_ItemCreated) event to handle these buttons
in the action button I have to display a context menu with list of related actions for the selected employee
how can I display this context menu and how to relate every menu Item to the selected employee
thanks
I have telerik RadDockZone and I have placed three closing window, setting window and refresh window icons something like this
<telerik:RadDockZone Style="border: 0;" runat="server" ID="RadDockZone1"> <telerik:RadDock runat="server" ID="RadDock1" DockHandle="TitleBar" Height="100%" Width="100%" EnableRoundedCorners="true" EnableAnimation="false"> <Commands> <telerik:DockCloseCommand></telerik:DockCloseCommand> <telerik:DockCommand Name="Custom Command" OnClientCommand="CustomCommand"></telerik:DockCommand> <telerik:DockCommand Name="doRefresh" Text="Refresh" AutoPostBack="true" CssClass="CustomCommandRefresh" /> </Commands> <ContentTemplate> <asp:Panel runat="server" ID="Panel1" Style="height: auto; width: auto" /> </ContentTemplate> </telerik:RadDock> </telerik:RadDockZone>
I just want to change Refresh icon which is
<telerik:DockCommand Name="doRefresh" Text="Refresh" AutoPostBack="true" CssClass="CustomCommandRefresh" />
to something else is it possible to change default icons for telerik docks?? please find attached image to further illustrate
<
div
id
=
"PdfOutputArea"
>
<
div
id
=
"PdfHeader"
style
=
"visibility: visible;height: 80px;padding-left: 20px;"
>
<
p
>Auswertung erstellt am <%# DateTime.Now.ToString("dd.MM.yyyy") %> durch <%# SessionHelper.BenutzerVorname %> <%# SessionHelper.BenutzerNachname %></
p
>
<
img
src
=
"~/Images/LOGO.png"
runat
=
"server"
/>
</
div
>
<
telerik:RadHtmlChart
runat
=
"server"
ID
=
"OOSChart"
>
[... more code ...]
</
telerik:RadHtmlChart
>
</
div
>
<script type=
"text/javascript"
>
function
ExportOOSChartToPDF(sender, args) {
$find(
'<%=RadClientExportManager1.ClientID%>'
).exportPDF($(
"#PdfOutputArea"
));
}
</script>var relativePath =
"~/api/export/file"
;
RadClientExportManager1.PdfSettings.ProxyURL = ResolveUrl(relativePath);
Hi
I wana to use ASP.NET AJAX UI but i can't find rich documentation about it .
Is there a complete project that used ASP.NET AJAX UI ?
I wana to see that for use best practise .
please help me .
Hi All,
I need to alter some things on the material design skin. When will it be added to the visual theme tool?
Regards
Jon
I'm using a rad button to ask the user if they want to cancel a request. See code below
Is there a way to incorporate a comments section that will allow users to say why they want to cancel their request ?
Any help would be appreciated
<script type="text/javascript">
function OnClientClicked(button, args) {
if (window.confirm("Are You Sure You Want to Cancel This Request?")) {
button.set_autoPostBack(true);
}
else {
button.set_autoPostBack(false);
}
}
</script>
<telerik:RadButton ID="b2" runat="server" ButtonType="LinkButton"
Font-Names="Verdana" Font-Size="Small" Height="30" Skin="Windows7"
Text="Cancel Request" OnClick="b2_Click" OnClientClicked="OnClientClicked">
<Icon PrimaryIconCssClass="rbRemove" PrimaryIconLeft="7" PrimaryIconTop="7" />
</telerik:RadButton>