Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
108 views
Dear Telerik I have some doubt regarding RadRotator control.My doubt is can we show video files and .doc files in rad rotator(that means as thumb scroller mode)? If it is possible can you give some sample applications
Fiko
Telerik team
 answered on 14 Oct 2010
2 answers
140 views
I send some value to RadWindow with procedure described in http://www.telerik.com/help/aspnet-ajax/window_programmingusingradwindowasadialog.html.

Value is received with pageLoad() function

Alternatively that function can be placed in window.onload=function... or <body onload=...>

Problem is that this happens only once, when I first start radwindow. Every next time when radwindow opens, load event is not fired (because page is allready loaded) so how to accept new values?? I want every time to accept different value, not just once.

Is there some way to "unload" page from radwindow so in next open will load again? 
Or has some other place to put javascript function to accept value and paste it in textbox?

Georgi Tunev
Telerik team
 answered on 14 Oct 2010
1 answer
112 views

Hi,

My application sets custom attributes from code-behind which works fine. The application also updates the value of appointment attributes in client-side code, e.g:

     myClientSideAppointment.get_attributes().setAttribute("attributeName", someNewValue);

This is all fine until I move or resize an appointment with the mouse. It appears that the appointment attributes then revert to their originally-bound values, because when I subsequently click on an appointment after dragging or resizing it, the old attribute values are rendered by my click-handler code. Has anybody else seen this? (I'm using Internet Explorer 8 and the ASP.NET Ajax controls version 2010.2.929.35)

Veronica
Telerik team
 answered on 14 Oct 2010
3 answers
167 views
I have RadWindow with lots of stuff and I want to use that window on more than one place in program so I put it in user control. Question is how, from code behind, to add that user control and RadWindows to show ? Suppose I have the button so when clicked it a window should appear.

Georgi Tunev
Telerik team
 answered on 14 Oct 2010
5 answers
207 views
Hi Telerik Team,

I have used the example mentioned on the link in the Telerik Documentation (http://www.telerik.com/help/aspnet-ajax/create-ajax-enabled-sharepoint-webpart-radcontrols.html) in my asp.net webpat for a SharePoint site.

The issue is that on the first click of the RadTreeView node, full page postback occurs. On further clicks it actually works fine.
Please let me know a solution asap.

With Regards,
Shikha
Nikolay Tsenkov
Telerik team
 answered on 14 Oct 2010
1 answer
267 views

Hi,

 

I am working on a web application using Telerik FileExplorer with custom implementation as explained here, as I had to point the application to physical and Shared paths  for browsing a set of folders from A-Z , which includes numerous sub-folders and files (refer attached Screenshot1.JPG). Each folder holds the subfolders starting with the Root folder name (A-Z)… for e.g. Folder A contains subfolders AGGH, AJJJ,AYYY etc Folder B contains subfolders BSSS,BHHHE,BYUU etc. Following is the tree view structure:

 

Root

 --- Folder A

                ---Sub Folder AGGH

                ---Sub Folder AJJJ

                ---Sub Folder AYYY

 

--- Folder B

                ---Sub Folder BSSS

                ---Sub Folder BHHHE

                ---Sub Folder BYUU

 

 

I also have a lookup text box to search for a sub folder (e.g. AGGH,BYUU etc) and based on the input in the textbox, the Sub folder would be auto-selected. My requirements are:

 

  1. whenever I do a search it should collapse all the sub-folders and folders which was expanded on a previous search (if any). i.e. The only sub-folder that would be expanded would be the one I’ve searched.
  1. As there are numerous sub-folders in each folder, while expanding the sub-folder through search, I need to scroll all the way down to see the folder selected. Is there a way to make the currently selected Folder visible? (Please refer the attached screenshots. Currently when I search for ZUKAN which is under folder Z, I see the screen as in Screenshot2.JPG.. I would like to see it as in Screenshot3.JPG).

 

Thanks for your quick response.

-Vineeth

Fiko
Telerik team
 answered on 14 Oct 2010
1 answer
167 views

Hi,
How to  to get  weekly view start date and end date when switching monthly view  to weekly view with
"radMyScheduler_NavigationCommand" event.

Thanking you
Shashi
Veronica
Telerik team
 answered on 14 Oct 2010
1 answer
82 views
Is there anyway to have a multicolumn RadComboBox while using WCF to fetch the data?
Yana
Telerik team
 answered on 14 Oct 2010
3 answers
204 views
I am testing a hierarchical radgrid. I allow the user to expand a row which displays the detail table. Then the user has the option to add, update or delete records in the detail table. For the add and update I use a popup form. In the popup form I have a column the user enters that is a checkboxcolumn. If the user checks the box then I want to make the rest of the columns in the form set so the user cannot enter any information. If the user does not check the box, then they continue on entering the rest of the information. Obviously this requires javascript. I have used this before in a single level radgrid. However, I do not know how to use javascript to access this checkbox that is nested inside of a detail table. To avoid posting a great deal of code, here's a basic outline of what I have including examples of the checkbox field and a subsequent numeric entry that may or may not be needed. How do I perform a $find in javascript on the "Test1" checkbox? Thanks...

    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
    <script type="text/javascript">
  
    </script>
    </telerik:RadCodeBlock>
RadGrid ID=”RadGrid1”
  MasterTableView
    DetailTables
      GridTableView  EditMode=”Popup”
        EditFormSettings
          Columns
          FormTemplate
            Formview
       <telerik:GridCheckBoxColumn DataField="TestTitle"
                                   HeaderText="Title?" 
                                   UniqueName="Test1">
       </telerik:GridCheckBoxColumn>
       <telerik:GridNumericColumn DataField="TestNbr"
                                  HeaderText="Number"
                                  UniqueName="Test2"
       </telerik:GridNumericColumn>                                                              


                                                        

DanR
Top achievements
Rank 1
 answered on 14 Oct 2010
1 answer
75 views
Hi,

i am getting this error when i try to access RadMaskedeTextbox.
i have implemnted custom property called "MaskeType" for RadMaskedeTextbox

 

 

public enum MaskTypeSet { Numbers, Letters, Custom, None }

 

 

 

public MaskTypeSet MaskType

 

{

 

 

get

 

 

 

 

 

{

 

 

object val = ViewState["MaskType"];

 

 

 

if (val == null)

 

 

 

return MaskTypeSet.None;

 

 

 

return (MaskTypeSet)val;

 

}

 

 

set

 

 

 

 

 

{

ViewState[

 

"MaskType"] = value;

 

}

}

If i set MaskType other than 'none' it is throughing this error.
PFA
Please help

Shinu
Top achievements
Rank 2
 answered on 14 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?