Is it possible to download the edited image as pdf into browser.
Thanks.
Hi,
I'm evaluating your radScheduler and it's very interesting!
I created a recurring appointment every monday from now without any end date.
Next week I'll change somenting (for example the appointment end time) but I don't want to change past appointments of the serie.
Is there a way to apply changes without changing any past appointments of the same serie?
Thanks.
Davide
I have a grid within an updatepanel.
If i start an built-in export to excel the grid loses its structure and download doesn´t start.
I am filtering at server side.
I am using FilterType="CheckList" for RadGrid and it works well (with default function "EqualTo").
There is a textbox for each column, I can input some text and filter CurrentFilterFunction="Contains".
Problem:
After filtering by CheckList, it changes the CurrentFilterFunction to "EqualTo".
So, I cannot filter with "Contains" function by textbox any more.
Proposed Solution:
There is any way to separate CurrentFilterFunction of CheckList filter and TextBox filter?
Grid:
<telerik:RadGrid Skin="Default" RenderMode="Lightweight" PageSize="20" runat="server" ID="RGridRisedueResultList" AllowPaging="true" AllowSorting="True" OnPreRender="RGridRisedueResultList_PreRender" OnFilterCheckListItemsRequested="RGridRisedueResultList_FilterCheckListItemsRequested" AutoGenerateColumns="False" FilterType="CheckList" AllowFilteringByColumn="True" OnNeedDataSource="RGridRisedueResultList_NeedDataSource">
Column:
<telerik:GridBoundColumn UniqueName="Lab" DataField="Lab" HeaderText="Lab" FilterCheckListEnableLoadOnDemand="true" CurrentFilterFunction="Contains" AutoPostBackOnFilter="true"> </telerik:GridBoundColumn>
I have a RadContextMenu implemented within a Radgrid and the options for the context menu are different for each row. To facilitate this I am using the Client-Side programming for the RadContextMenu and the ClientDataKeyName from the RadGrid to power the conditions.
This is all working fine. My problem is that I need some of the RadMenuItems to be Bold or have a different background color, but I see no way to do this through the Client-Side programming.
Am I missing something obvious here?
So for example here is where I need to change the Font to bold or Background color of the item
Snippet:
// if the item should be displayed, then initialize
if
(isItemDisplayed == 1) {
var
childItem =
new
Telerik.Web.UI.RadMenuItem();
var
displayText =
''
;
// Here I need to set childItem to be Bold and a specific background color to stand out
// set menu text
childItem.set_text(displayText);
// set employeeid identifier
childItem.set_value(employeeId);
// if we have items in the 'actions menu', then add it to the parent'
if
(parentActionsItem.get_items().get_count() > 0) {
menu.get_items().insert(0, parentActionsItem);
}
Any help is greatly appreciated