4 Answers, 1 is accepted
0
Hello Omlac,
Our RadTextBox control doesn't support this functionality out-of-the-box. Could you please elaborate a bit on your scenario?
Regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Our RadTextBox control doesn't support this functionality out-of-the-box. Could you please elaborate a bit on your scenario?
Regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Omlac
Top achievements
Rank 1
answered on 06 Jan 2009, 09:35 AM
Hi Daniel
I would like to create a link inside a radtextbox, so i will be able to click on it or to click inside a radtextbox and it takes me to a differnt page.
Thnak you.
I would like to create a link inside a radtextbox, so i will be able to click on it or to click inside a radtextbox and it takes me to a differnt page.
Thnak you.
0
Accepted
Hello Omlac,
You can use a similar approach to change the current page when the user clicks on your RadTextBox.
aspx
javascript
Let me know whether the suggested snippet suits your scenario.
Regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
You can use a similar approach to change the current page when the user clicks on your RadTextBox.
aspx
<telerik:RadTextBox onclick="ClientClick()" ID="RadTextBox1" runat="server" /> |
javascript
function ClientClick() { |
document.location = "http://www.telerik.com"; |
} |
Let me know whether the suggested snippet suits your scenario.
Regards,
Daniel
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Omlac
Top achievements
Rank 1
answered on 06 Jan 2009, 12:40 PM
Hie Daniel
Thank you very much, its close to what i will carry on from here.
Regards
Thank you very much, its close to what i will carry on from here.
Regards