Hi
I'm trying to translate one of my web pages and I've some troubles with the RadInputManager
This is causing an error
How can I use resources in the RadInputManager?
As of now, i'm doing this
Regards
Philippe
I'm trying to translate one of my web pages and I've some troubles with the RadInputManager
| <telerik:RadInputManager ID="rim" runat="server"> |
| <telerik:TextBoxSetting EmptyMessage='<%#GetLocalResourceObject("resourceName")%>' BehaviorID="efn"> |
| <Validation IsRequired="true" /> |
| <TargetControls> |
| <telerik:TargetInput ControlID="txtName" /> |
| </TargetControls> |
| </telerik:TextBoxSetting> |
| </telerik:RadInputManager> |
This is causing an error
| System.Web.HttpParseException: Databinding expressions are only supported on objects that have a DataBinding event. Telerik.Web.UI.TextBoxSetting does not have a DataBinding event |
How can I use resources in the RadInputManager?
As of now, i'm doing this
| rim.GetSettingByBehaviorID("efn").EmptyMessage = GetLocalResourceObject("resourceName").ToString(); |
Regards
Philippe