Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
253 views
Hi Team,
 We are using Rad Combo boxes in my screen, I need to bind 50,000 records into a a combo box2 depending on the value selected in a combo box1. while binding Page is getting hanged. We are using Stored Procedure to bind the values into combo box2. Please give any suggestion on this ASAP.





Thanks
Alexis A

Cat Cheshire
Top achievements
Rank 1
 answered on 27 Jun 2011
9 answers
278 views
HI,
  The radtabstrip skin is not showing at all when rendered in IE7. It works ok in firefox.

Any advise how to make it work?

Thanks,
Sayak
Dimitar Terziev
Telerik team
 answered on 27 Jun 2011
2 answers
132 views

I have successfully managed to use the TelerikModalOverlay class to put an image behind a modal pop-up window, but I have a small issue in that the background image is not centered in the background and starts from the top-left of the browser. Below is the CSS I am using currently:

.TelerikModalOverlay
{
    background-position: center top !important;
    background: url(images/backgroundmain.jpg) !important;
    background-repeat: no-repeat;
    filter: alpha(opacity=99) !important;/*for IE 5.5+*/
    opacity: .99 !important;/*for FF 2x, Opera 9x*/
    -moz-opacity: .99 !important;/*for FF 1x*/  
    }

Is there any way to force the background image to be centered?

Thanks

Simon
Simon Maystre
Top achievements
Rank 1
 answered on 27 Jun 2011
2 answers
89 views
... on a per appointment basis.

That is to say, when I'm handling the AppointmentDataBound event, I do some tests to check whether, for that appointment, the user has sufficient rights to edit or delete an appointment and I set up the context menu accordingly. I'd like, when the user has insufficient rights to delete the appointment, to hide the delete button too.

So far all I've found are suggestions on how to hide it for all appointments.

Any suggestions?

-- 
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 27 Jun 2011
1 answer
54 views
After bind the radgrid to datasource to show the data with start /end date and  other fields in the grid. If the user input start and date on the date picker outside the grid, and click serch.  I like to filter the grid again use something like FilterExpression (?) instead of rebind the grid on server side, is it possible, how I can do that? where the code should put to?

Thanks.
Princy
Top achievements
Rank 2
 answered on 27 Jun 2011
3 answers
311 views
Hi,

Does telerik Treeview(asp.net ajax control) support paging as we have lots of data that is displayed in triee view. so keeping perofrmance in mind, can we have some paging feature in Tree view?

Kindly reply at the earliest

Rupinderjit Singh
Dimitar Terziev
Telerik team
 answered on 27 Jun 2011
4 answers
169 views

I have problem with RadGrid inside RadAjaxPanel.
When I create page inside RadAjaxPanel and I use action more then 20 times,
for 20 times I have no answer from sever, page display RadAjaxLoadingPanel and it's end.
I'm try delete 20 records one by one.
I'm attach files, it's not complete project. http://goo.gl/vOqCD
If someone had a problem I would be grateful for your help.
Sebastian
Telerik team
 answered on 27 Jun 2011
5 answers
179 views
Hi,

I would appreciate if you can tell me if there is a property for minimum file size similar to MaxFileSize. My requirement is to prevent the user from uploading an empty (0KB) file. Most of our users use Internet Explorer and whenever they try to attach a file (empty/0KB), progress bar doesn't move at all and gets stuck in a limbo. It seems to be working fine in Firefox though.

In order to go around this problem, we have decided not to allow the user to upload empty files (0KB). Is there such a property for RadAsyncUpload that prevents the user from doing so?

My html looks something like this:

<telerik:RadAsyncUpload ID="uplCVAsync" runat="server" MaxFileInputsCount="1" MultipleFileSelection="Disabled"
EnableInlineProgress="true" AllowedFileExtensions='<%#AllowedExtensions%>' MaxFileSize="<%#MaxFileSize%>" OnClientProgressUpdating="checkUploadedFilesSize"
OnClientFileUploading="fileUploadStart" OnClientFileUploaded="fileUploadEnd"
OnClientFileUploadFailed="fileUploadEnd" OnClientValidationFailed="fileUploadValidationFailed">                                            </telerik:RadAsyncUpload>

If this property is not available, please advice other alternatives?

Irfan,
Genady Sergeev
Telerik team
 answered on 27 Jun 2011
3 answers
444 views
Hy
I do have the following scenario: I am having a Radgrid inside a visual Webpart which is using AJAX. The Radgrid with the Loadingpanel exists within the UserAdministrationUserControl, the RadAjaxmanager is added to the UserAdministrationWebpart.cs by following code:

protected override void OnInit(EventArgs e)
{
    base.OnInit(e);
    ajaxmgr = new RadAjaxManager();
    ajaxmgr.AjaxRequest += new RadAjaxControl.AjaxRequestDelegate(AjaxManager_AjaxRequest);
 
    Page.Items.Add(typeof(RadAjaxManager), ajaxmgr);
    Page.Form.Controls.AddAt(0, ajaxmgr);
 
}
 
protected override void CreateChildControls()
{
    Control control = Page.LoadControl(_ascxPath);
    Controls.Add(control);
    RadGrid panel = control.FindControl("RadGrid1") as RadGrid;
    RadAjaxLoadingPanel loadingPanel = control.FindControl("RadAjaxLoadingPanel1") as RadAjaxLoadingPanel;
    ajaxmgr.AjaxSettings.AddAjaxSetting(panel, panel, loadingPanel);
}

So far it works quite well. However I have the scenario, the Edit-Button of the Radgrid opens a ModalDialogPopup for editing the selected User. When editing is finished and the ModalDialog is closed, the Radgrid should be reloaded/refreshed. This is possible by a javascript function, which is called after closing the modaldialog by a callback. And here is my problem.

The Callback-function should do just the following:
$find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");


But of course that isn´t possible as the RadAjaxmanager doesn´t exist in the UserControl, where the Javascript and the other controls are.

I´ve tried giving the RadAjaxmanager an Id and finding it by:

$find('<%# this.Page.Forms.FindControl("MyRadAjaxManager").ClientID %>').ajaxRequest("Rebind");

But that doesn´t work, the Control cannot be found (in the console it returns the function as "$find('').ajaxRequest("Rebind") ).

While Debugging, I´ve found out, that the AjaxManager always gets the same ClientID, so the following is starting a refresh (i didn´t set the controls ID in that case):

$find("ctl00_ctl44").ajaxRequest("Rebind");

However, I do not want to hardcode the Controls ClientID. Besides, altough it is updating the Radgrid in that case, the LoadingPanel does not show up by using that Javascript (it works without a harm in all other cases eg. paging). And therefore it is not very userfriendly.

Any Help and suggestions will be very appreciated

Regards
Emir Prcic
Top achievements
Rank 1
 answered on 27 Jun 2011
2 answers
538 views
Hello
I have a simple radgrid (not in edit mode)  that i want to set some of his cells color, according to the value of the firs column of each row.
What i mean is to loop each row in the grid ,check the value of the first column of this gridraw and then set the colors of the rest of the cell in this gridraw according to this value.
How should i do it ?
Thanks,
Gerry
Gerry Polami
Top achievements
Rank 1
 answered on 27 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?