RadChart1.Appearance.FillStyle.FillType = FillType.Solid;
RadChart1.Appearance.FillStyle.MainColor = Color.FromArgb(229, 229, 229);
RadChart1.Appearance.Border.Color = Color.FromArgb(0, 0, 0);
Hi,
I have a strange problem. I am not able to deploy the RadEditor for MOSS on the production server. Error: Cannot add the specified assembly to the global assembly cache: [Rad***.Net2.dll].
I tried all the options to install the solution RadEditorMoss.wsp. But, No luck. Also, I didn't find much help on the FAQs or in forums. I would appreciate, if anyone help me to resolve the problem.
Regards,
Phani Madhav
get_regExpTextBoxSettings:
function(){
return
this.get_inputSettings(Telerik.Web.UI.RadRegExpTextBoxComponent);
},get_textBoxSettings:
function(){
return
this.get_inputSettings(Telerik.Web.UI.RadTextBoxComponent);
},get_numericTextBoxSettings:
function(){
return
this.get_inputSettings(Telerik.Web.UI.RadNumericTextBoxComponent);
},get_dateInputSettings:
function(){
return
this.get_inputSettings(Telerik.Web.UI.RadDateInputComponent);
},_onSubmit:
function(){
var
i;
for
(i in this._getSettings()){
this
._beforeSubmit(this._getSettings()[i]);
}
},_beforeSubmit:
function(com){
var
ids=com.get_targetControlIDs();
for
(i=0;i<ids.length;i++){
com.get_targetInput(ids[i])._beforeSubmit();
}
<asp:TextBox ID="txtQty" runat="server" Height="20px" ></asp:TextBox>
<telerik:RadInputManager ID="RadInputManager1" runat="server" Skin="Vista">
<telerik:RegExpTextBoxSetting BehaviorID="RagExpBehavior1"
ValidationExpression="^\d+$" ErrorMessage="Invalid Quantity">
<TargetControls >
<telerik:TargetInput ControlID="txtQty" />
</TargetControls>
</telerik:RegExpTextBoxSetting>
</telerik:RadInputManager>
| public class Master { |
| public int ID { get; set; } |
| public string Name { get; set; } |
| public Child FirstChild { get; set; } |
| } |
| public class Child { |
| public int ID { get; set; } |
| public string Name { get; set; } |
| } |
| void control_DataBinding(object sender, EventArgs e) { |
| LiteralControl control = (LiteralControl)sender; |
| GridDataItem container = (GridDataItem)control.NamingContainer; |
| control.Text = dataItem.GetType().GetProperty("Name").GetValue(dataItem, null).ToString(); |
| } |