or

<DefineConstants>element. There'll be one for each build configuration you have defined (2 by default; "Release" and "Debug"). Just remove the word TRACE.

| <tools name="DropdownToolbar" > |
| <tool name="FontName" /> |
| <tool name="RealFontSize"/> |
| <tool name="ApplyClass"/> |
| <tool name="FormatBlock"/> |
| <tool name="FormatStripper" /> |
| <tool separator="true"/> |
| <tool name="InsertCustomLink"/> |
| <tool name="InsertSnippet" /> |
| <tool name="InsertSymbol" /> |
| </tools> |
| <telerik:RadComboBox id="RadComboBox1" runat="server" AllowCustomText="false" Skin="WebBlue" style="height: 23px;" |
| EnableTextSelection="false" HighlightTemplatedItems="false" Width="80px" Height="115px" Font-Size="11px" ForeColor="Gray" |
| > |
| <CollapseAnimation Duration="100" Type="InOutQuint" /> |
| <Items> |
| <telerik:RadComboBoxItem Text="One" Value="One" /> |
| <telerik:RadComboBoxItem Text="Two" Value="Two"/> |
| <telerik:RadComboBoxItem Text="Three" Value="Three"/> |
| </Items> |
| <ItemTemplate> |
| <asp:CheckBox runat="server" ID="CheckBox" onclick="stopPropagation(event);" Text='<%# DataBinder.Eval(Container, "Text") %>'/> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
I would like to check every few seconds whether data in database changed and if so, update RadGrid, otherwise do nothing.
I use asp:Timer to make request every few seconds and in code-behind I am checking for databse condition. I would like to do ajax update of grid if condition is satisfied?
Has anyone achieved that?