Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
161 views
Hello Telerik Team,

 I want to use the RadComboBox as an Auto suggest control. It's working great, the addition I want is that can we have a separate ListBox just below the ComboBox to hold the selected values from the Combobox. So is that possible.
This will help me to help get the multiple parameters on a postback.

Regards,
Abhishek
Genady Sergeev
Telerik team
 answered on 07 Jan 2010
1 answer
152 views
When the page is in RTL mode, the Scheduler control does not display properly, how can i explicitly set it to LTR to avoid the display problems?
I am currently using version 2009.1.527.20

Shinu
Top achievements
Rank 2
 answered on 07 Jan 2010
1 answer
142 views
I'm using the DBContentProvider example to provide an fileexplorer interface for our database-hosted file repository.  However, one thing I'd like to implement is an additional level of hierarchy on the file level, to indicate the different versions of a file.   In our file repository, all files are versioned and so we would like to provide a way for the user to see all the versions of a file within the file explorer interface.  Perhaps there would be a way to customize the interface to provide a way to view and download the versions of each file.  Failing that, perhaps it could be implemented using some kind of mouseover pop-up?

Any ideas would be greatly appreciated.
Fiko
Telerik team
 answered on 07 Jan 2010
1 answer
158 views
I am looking to implement 2 images to be used for the tabs on RadSlidingPanes. The second I hope to use when the user hovers over with the mouse . Is this possible ?? I have not been able to find any documentation regarding this implementation. Any help or just point in right direction Most welcome.

Thanks In advance

Michael
Tsvetie
Telerik team
 answered on 07 Jan 2010
18 answers
507 views
The images for the toolstrip in the RadEditor are not showing (i.e. cut, copy, paste, undo, redo, etc.). I have not changed anything in the config.xml file or the tools file. Does anybody know why these aren't showing?

Stanimir
Telerik team
 answered on 07 Jan 2010
1 answer
175 views
Hi,

I have a RAD Toolbar where a DatePicker resides along with other RAD controls. I want to set the min and max date of the DatePicker from by changing selections of a DropDownList also in the toolbar. For some reason the client side script only works partially.
The script is on the markup of the page where the Toolbar is sitting:

function ReSetDatePickerRange(nDays)
    {
        var datePicker = ctl00_dpDatePicker;
        var date = datePicker.GetMaxDate();
        var nTransDays = parseInt(nDays);
        var minDate = new Date(date.getFullYear(), date.getMonth(), date.getDay());
        
        minDate.setDate(date.getDate() - nTransDays);
        datePicker.SetMinDate(minDate);
        alert('test');
        if(datePicker.GetMinDate() > datePicker.GetDate())
        {
            datePicker.SetDate(datePicker.GetMinDate());
            datePicker.SetInputDate(datePicker.GetMinDate());
        }
    }

I can access the datePicker and retrieve the dates using the GetMaxDate() and GetMinDate() but when I try to set them it just fails and breaking the code (the alert('test'); message is not popping up). I have even tried to register this client script in code behind with the same result. I thought maybe the date is not valid but the minDate is in the format:
Wed Jan 06 2010 00:00:00 GMT+0000 (GMT Standard Time
Is there any reason for this?
Radoslav
Telerik team
 answered on 07 Jan 2010
1 answer
84 views
Hi,

this is shanker am doing one project am using RadScheduler control but am face this error 'Telerik.Web.UI.RadScheduler' does not have a public property named 'AdvancedForm'.

<AdvancedForm Modal="true" />

please help me it's argent how to solve that please help me
Princy
Top achievements
Rank 2
 answered on 07 Jan 2010
5 answers
197 views
Hi,

I have two list boxes : available & selected values.

When I'm allowing edits , I need to pre-populate the available & selected values. So I have tried doing the transfer programmatically :

            radLstAvailable.DataSource = dataList;   
            radLstAvailable.DataTextField = "Name";  
            radLstAvailable.DataValueField = "ID";  
            radLstAvailable.DataBind();  
 
            if (edit)  
            {  
                List<Steps> steps = DataSvcClient.GetSteps();  
 
                radLstAvailable.TransferToID = "radLstSelected";  
 
                foreach (Step step in steps)  
                {  
                    RadListBoxItem lbItem = radLstAvailable.Items.Where(item => item.Value == step.ID.ToString()).FirstOrDefault();  
 
 
                    if (lbItem != null)  
                    {  
                        if (step.Order == 0)  
                            lbItem.Checked = true;  
                          
                        radLstAvailable.Transfer(lbItem, radLstAvailable, radLstSelected);  
                    }  
                }  
            } 

It is transferring the items but not removing them from available values list box. Am I missing something ?

Please advice.

Thanks
Kiran
Genady Sergeev
Telerik team
 answered on 07 Jan 2010
1 answer
191 views
Hi All,

I would like to use scroll feature on my chart. My chart is stacked bar. When I tried to add

<

 

ClientSettings EnableZoom="false" ScrollMode="Both" XScale="4" />

 


to my RadChart.
I got error like this 'RadChart StackedBar series is not supported with client-side scrolling and zooming enabled.'

Anyone can help?

Thanks in advance,
-Toi
Giuseppe
Telerik team
 answered on 07 Jan 2010
3 answers
137 views
hi,
This is to inform you that i am creating custom webpart in which i am using radupload control programmatically. But when i click on select button, window doesnt open. can u help me in troubleshooting this error.I am pasting the code below:
  protected override void CreateChildControls()
        {
_RadUpload1 = new RadUpload();
                _RadUpload1.ID = "RadUpload1";
                _RadUpload1.InitialFileInputsCount = 1;
                _RadUpload1.MaxFileInputsCount = 10;
                _RadUpload1.MaxFileSize = 10000000; // Few more properties to be defined later
                _RadUpload1.ControlObjectsVisibility = ControlObjectsVisibility.AddButton;
this.Controls.Add(_RadUpload1);
}

Here I am able to view the control  on the webpart but when i click on the select button nothing works out.


Genady Sergeev
Telerik team
 answered on 07 Jan 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?