Hello, I am brand new to this forum as of today and I do not know where I should post my questions! I will be asking more for radgrid help and I did not see a specific discussion folder for that... Mind you I am also a new programmer so I really couldn't recognize what some of the topics were for as well...
~Derek

Hi,
Using the sample code below found in the docs, the event doesn't fire when Enter is pressed. Tab-ing or clicking off the combo box does cause the event to fire. Seems to be a bug.?
Dave
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="Test" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head id="head1" runat="server"> <title></title></head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManagerProxy1" runat="server" /> <script type="text/javascript"> function OnClientTextChange(sender, eventArgs) { alert("You typed " + sender.get_text()); } </script> <telerik:radcombobox id="RadComboBox1" runat="server" allowcustomtext="true" onclienttextchange="OnClientTextChange"> </telerik:radcombobox> </form></body></html>
Se ha generado una excepción no controlada durante la ejecución de la solicitud Web actual. La información sobre el origen y la ubicación de la excepción pueden identificarse utilizando la excepción del seguimiento de la pila siguiente. |
|
|

In Radgrid, I use RadComboBox to filter the contents of a column in the code behind as the DataSourceId of RadComboBox needs to be set programmatically based on the user's selection. The filter works Ok and the SelectedIndexChanged fires an event in the code behind. However, when I select the first item, which I included in the markup to clear out the filter, an event does not fire and I cannot clear out the filter.
The item, which I include in the markup, looks like the following:
<Items>
<telerik:RadComboBox Text="" Value="" />
</Items>
Any help will be appreciated.

<ClientSettings>
<Selecting AllowRowSelect="True" EnableDragToSelectRows="false" />
</ClientSettings>
Selection is working fine.
I run into a scenario where controls in an EditForm loses their values when performing a postback, after recently cancelling an event.
For example:
1. Add new item (perform InitInsert), or edit existing item (perform Edit)
2. Make changes to control values
3. If adding, perform PerformInsert command, otherwise Update command
4. I have logic that would cancel the event (whether on ItemCommand or PerformInsert level) based on some values
5. Event cancelled, fire NeedDataSource in the background by default
6. On the EditForm, perform any postback (via cancel or attempt an insert/update again)
7. The control values within the EditForm lose their value
I thought if I cancelled on the ItemCommand level, the control values would persist, but this was not the case.
Any ideas on what I could do?


Hi,
I have pdf files stored as a blob in sql database. Is it possible to load them to PdfViewer? I found this example but it's for MVC. Do you have an example for webform?
Thank you,
Helen


I have a RadEditor control on a page with several lines of notes. All lines appear on the page, but when the page is printed some lines are cutoff at the bottom. Are there any RadEditor or CSS settings that will resolve this?
<telerik:RadEditor ID="reNotes" runat="server" EditModes="Preview" ContentAreaMode="Div" NewLineMode="P" ToolsFile="~/App_Data/RadEditor/Tools.xml" ToolbarMode="ShowOnFocus" AutoResizeHeight="true" Height="100%" Width="100%" Content='<%# Bind("Notes") %>' ContentFilters="RemoveScripts,StripCssExpressions,StripDomEventAttributes" OnClientLoad="RadEditorOnClientLoad"></telerik:RadEditor>