I'm trying to come up with a way to create a custom EditorTool that is purely informational. Essentially, I want a label in the Ribbon that I can update the text with JavaScript. I can get way with having a normal EditorTool as long as I can keep updating the text on the fly from client-side. The issue is that the users are spending more time in the editor than the established timeout on the server (I have no control over the timeout length). I'm looking to give them a counter that shows how long before the timeout will occur (I've got a counter written, but nowhere to display it). Ideally they'd be saving as they worked, and it wouldn't be a problem... but users don't always do what they should. lol
Alternatively, I could just auto-save for them, but I'd still want to be able to modify the text in the Ribbon to indicate when that occurred.
I don't want to have to waste real estate to add a label above or below the editor when the existing ribbon has plenty of unused space.
Any suggestions?
Is there anything special I need to do to get an imagebutton click event to fire on the server?
I have an imagebutton in the template for the tabstrip.
If I take that imagebutton and place it directly on the page, the click event works fine for the copy outside of the tabstrip.
<TabTemplate >
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/Images/image_new.gif" OnClick="ImageButton1_Click"/>
and code:
Protected Sub ImageButton1_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs)
Dim x As Integer = 1
End Sub
Dears,
I am facing an issue where the data is there, but on chart it is not visible, as the data is very small (attached). Kindly can anyone help in making it visible on chart as well.
HI Their
I wana customize Marker in Ajax RADMAP with numeric value Text in it . any help
I'm using a RadComboBox to create a search in my page. When the page is loaded the control do not have items preloaded. This is done after you type some letters, the values are retrieved from a table based on your search and then the combo drops down showing the values returned, so the user can select an option.
Some of these values retrieved from the table can contain non-us letters (spanish/french/portuguese characters like Ñ or Ó, for instance).
The issue is, after selecting one of these values with non-us characters, the combo drops down and populate the list again. This stops only if you press ESC.
I'm not sure exactly which version we use. The Telerik.Web.UI (and others) dll version is: 2012.1.215.40
This happens only on IE.
Chrome, FF and Edge are OK.
I appreciate any help you can provide. Thanks in advance.
Note: It's very similar to this case: https://www.telerik.com/forums/radcombobox-is-not-closing-in-ie11-after-filtering-it-remains-opened-always
<telerikInput:RadComboBox x:Name="ctrlParameterValue" Margin="8,0,8,8" IsEditable="True" IsTextSearchEnabled="True" TextSearchMode="StartsWith" Style="{StaticResource AplusCRadComboBoxStyle}" /> |