Hello,
Could you please give me an info about radnumeric textbox behaviour ? When I want to type some letters on desktop Chrome browser it blinks and prevents me to type any letter. This is OK. But on mobile device TC70 this control allows me to type any lettter and just after I tap to another control the letters have dissappeared.
Now, I don't know if its bug or normal behaviour. If it's normal, please give me some workaround, how to prevent user to type letters on mobile device into radnumerictextbox control...
Thank you
Best regards
Vasssek

Hi,
I am using telerik treeview (code sample below). I am trying to maintain the treeview state (wanted to keep the selected node open, selected) after response.redirect. But its not working, any one knows why?
This is the code I have in my ASP.net MASTER page.
Telerik.Web.UI.dll version: 2010.1.519.35
public void RadTreeView1_OnNodeClick(object sender, EventArgs e){ RadTreeNode node = RadTreeView1.FindNodeByText("Second Page"); node.Expanded = true; node.Selected = true; string pageN = string.Empty; pageN = RadTreeView1.SelectedValue.ToString(); Response.Redirect(pageN.ToString()); }
<telerik:RadTreeView runat="server" ID="RadTreeView1" Style="margin: 15px;" EnableViewState="true" OnNodeClick="RadTreeView1_OnNodeClick" AutoPostback="true"> <Nodes> <telerik:RadTreeNode Text="Top Item" Value="Top Item" SelectedCssClass="" EnableViewState="true"> <Nodes> <telerik:RadTreeNode Expanded="False" Text="One" Value="One"> <Nodes> <telerik:RadTreeNode Expanded="False" Text="OneItem1" Value="OneItem1"> <Nodes> <telerik:RadTreeNode Expanded="False" Text="OneItem1Node1" Value="OneItem1Node1"> <Nodes> <telerik:RadTreeNode Text="Actual Page" Value="~/ActualPage.aspx" Expanded="False" ></telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> <telerik:RadTreeNode Expanded="False" Text="OneItem2" Value="OneItem2"> <Nodes> <telerik:RadTreeNode Expanded="False" Text="OneItem2Node1" Value="OneItem2Node1"> <Nodes> <telerik:RadTreeNode Text="Second Page" Value="~/SecondPage.aspx" Expanded="False" ></telerik:RadTreeNode> <telerik:RadTreeNode Text="Third Page" Value="~/ThirdPage.aspx" Expanded="False" ></telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> <telerik:RadTreeNode Expanded="False" Text="OneItem3" Value="OneItem3"> <Nodes> <telerik:RadTreeNode Text="Fourth Page" Value="~/FourthPage.aspx" Expanded="False" ></telerik:RadTreeNode> <telerik:RadTreeNode Text="Fifth Page" Value="~/FifthPage.aspx" Expanded="False" ></telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> </Nodes> </telerik:RadTreeNode> </Nodes></telerik:RadTreeView>

Hi,
I had purchased licensing a few years ago, and the radlightbox doesnt seem to be on there and says that it is an unknown server tag. Has there been an update with the bin folder files or do i have to buy new licensing?
All of the other telerik things work, but when searching the telerik UI for the lightbox its not in there
Thanks,

HI,
We need to bind RadGrid on clientside. I am doing it using RadClientDataSource and Restful Webservice call. This grid has RadRadioButtonlist. I need to bind this button list to the data coming from database.
Can someone help please how to do bind it on clientside
Thank You


Hi,
I'm new to telerik and have this case that I've been trying to find a way to resolve. In the Grid component, I'm using Batch Editing and I'm performing the saving of edited data on the grid using the Server-Side BatchEditCommand Event. Assuming I have 3 records, could be to insert, update or delete, and for whatever the reason, the database updates failed (for e.g. DB Locked at the time the save changes was done). My question is, how do I tell the grid to remain in Edit Mode on the client-side and not to do a rebinding/refresh of data (as the unsaved data is lost currently) as we want to allow user to retry the save changes again?
Thanks in advance..

I have multiple PanelBars that are placed on a form in a sequence..The Tab key does not take me from first panelbar to the next one..My code is as follows..
So when I press Tab key down, it does select the first one (radPnlBarFundingSources), but not the second one (radPnlBarContracts) after tabbing from first one
Please help!
<div class="Row">
<telerik:RadPanelBar runat="server" ID="radPnlBarFundingSources" Width="100%" TabIndex="1">
<Items>
<telerik:RadPanelItem runat="server" Text="Funding Source">
<ContentTemplate>
<telerik:RadListBox runat="server" ID="radLbAvailFundingSource" Height="100px" Width="40%" SelectionMode="Multiple" AllowTransfer="true" TransferMode="Move" AllowTransferOnDoubleClick="true" TransferToID="radLbSelFundingSource" ButtonSettings-AreaWidth="35px" Enabled="True" style="font-family: Verdana, Trebuchet MS,Arial,sans-serif; font-size:0.9em;"></telerik:RadListBox>
<telerik:RadListBox runat="server" ID="radLbSelFundingSource" Height="100px" Width="40%"></telerik:RadListBox>
</ContentTemplate>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelBar>
</div>
<div class="Row">
<telerik:RadPanelBar runat="server" ID="radPnlBarContracts" Width="100%" TabIndex="2">
<Items>
<telerik:RadPanelItem runat="server" Text="Contract">
<ContentTemplate>
<telerik:RadListBox runat="server" ID="radLbAvailContract" Height="100px" Width="40%" SelectionMode="Multiple" AllowTransfer="true" AllowTransferOnDoubleClick="true" TransferToID="radLbSelContract" AutButtonSettings-AreaWidth="35px"></telerik:RadListBox>
<telerik:RadListBox runat="server" ID="radLbSelContract" Height="100px" Width="40%"></telerik:RadListBox>
</ContentTemplate>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelBar>
</div>