Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
67 views
hii,
how can i change the time to hours and minuts instead of showing only the hours in raddatetime picker?
Princy
Top achievements
Rank 2
 answered on 05 Nov 2012
1 answer
104 views

i try to set the file filtering like here :
http://www.telerik.com/help/aspnet-ajax/asyncupload-file-filtering.html
i try in to way :
this.FileFilters.Add(new FileFilter("Tous les documents accepté", typeDocumentCtrl.getExtensionAllowed().ToArray()));
typeDocumentCtrl.getExtensionAllowed()
    .ForEach(delegate(string extension)
        {
            this.FileFilters.Add(new FileFilter(extension, new string[] {extension}));
        }
    );
this.AllowedFileExtensions = typeDocumentCtrl.getExtensionAllowed().ToArray();
both or not working 
i just need it for chrome other browser would be nice but not mandatory 
i also try :
Telerik.Web.UI.RadAsyncUpload.Modules.Flash.isAvailable = function () { return false; };
Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function() { return false; };
but that's change nothing 

the last test was quick maybe i can test further, but i don't know how to test in a usefull way :-)

thank to help me :-)


Plamen
Telerik team
 answered on 05 Nov 2012
1 answer
88 views
Hi,

I can see that multiple <div> are used to render round corners uniformly on every browsers.
I am refering to rrbContentWrapOut, rrbContentWrapMid and rrbContentWrapIn elements.

How can we disable the round corners rendering in the ASP.NET Ajax RadRibbonBar?

Regards
Kate
Telerik team
 answered on 05 Nov 2012
1 answer
122 views
I installed the Q3 release through the control panel, and have patch manually with some internal builds.

My control panel just patched and now it shows the option of "change" for my installed software.

I have seen "update" as an option before, but what does "change" mean? Does this revert back to the original release and throw away the internal build patch?
Chavdar Dimitrov
Telerik team
 answered on 05 Nov 2012
1 answer
75 views
hii,
how can i open a radwindow onclick of  a specific radmenu item?

thanks
Kate
Telerik team
 answered on 05 Nov 2012
3 answers
245 views
Hello,

Can I get selected date/time on doubleclick in radscheduler (on oppening edit/insert appointment )

Thanks.
Plamen
Telerik team
 answered on 05 Nov 2012
14 answers
229 views
Hi,

I am trying to use the new feature in 2010.3 where a slot is marked, then using a context menu to add a new event.

Everything appears to work OK, except I am having trouble getting the slot end time.

At the moment adding an appointment calls javascript to perform a hand coded insert using RadWindow:
function AppointmentInserting(sender, eventArgs) {
    stopTimer();
    var d = eventArgs.get_startTime();
    var eventDate = displayDate(d);
    var timeSlot = eventArgs.get_targetSlot();
    var start = formatDate(eventArgs.get_startTime());
    var duration = timeSlot.get_durationInMinutes();
    var end = formatDate(timeSlot.get_endTime());
    var isAllDay = eventArgs.get_isAllDay();
    var ow = window.radopen("EditEvent.aspx?Mode=Insert&Start=" + start + "&IsAllDay=" + isAllDay, "AdvancedForm");
    ow.set_title(eventDate);
    ow.Maximize();
    eventArgs.set_cancel(true);
    return false;
}

get_startTime() works OK (and always has), but attempts to get the endTime always return the default end time, and get_duration seems to return a null. 

Any help on the correct code would be greatly appreciated.

David Penny
Plamen
Telerik team
 answered on 05 Nov 2012
5 answers
344 views
Hi, 
I've got a checkbox in the <CommandItemTemplate>
In the NeedDataSource event, I'm trying to capture whether the checkbox is checked

Can anyone tell me how to reference this checkbox control ?

Thanks :)
Eyup
Telerik team
 answered on 05 Nov 2012
2 answers
154 views

http://test3.servicesangam.com/[^] This is link of uploaded website where error occurs. Basically I am uploading images to folder which running or working on localhost but not working on web server.

So please tell me where the error in this If you need I send you code also.



you can download code from test3.servicesangam.com/Upload.rar 
Navin
Top achievements
Rank 1
 answered on 05 Nov 2012
1 answer
57 views

Dear Telerik Wizards,

See the two attached images. Both are incorrect. As can be seen from the menu items below, the group setting is set to a particular height and width - in IE the width is no where near 800, in Chrome it seems to be much greater than 800.
Basically I am using the menu items to show short snippets of content that I do no want to bother with an entire page for...

Thanks,
Chris

<telerik:RadMenuItem Text="About Us" runat="server">
    <Items>
        <telerik:RadMenuItem Text="Chris">
            <Items>
                <telerik:RadMenuItem>
                    <GroupSettings Height="400" Width="800" />
                    <ItemTemplate>
                        <table>
                            <tr><td colspan="2">Dr. Christian Peter Wagner</td></tr>
                            <tr>
                                <td style="vertical-align:top;">
                                    <asp:Image ID="Image1" ImageUrl="~/Images/2009_Chris001.png" Width="100" runat="server" />
                                </td>
                                <td style="vertical-align:top;">
                                    <p>Welcome to R Teachings!</p>
 
                                    <p>What you will find on this site is wisdom concerning how to live your life.
                                       It will always be your choice to interpret what is said and see if it works from you.</p>
 
                                    <p>The work here is channeled... and to some this may seem like a strange idea.
                                       Simply put, understanding channeling depends upon how you understand the universe.
                                       If you believe that human kind is the highest life in the universe and there is no God,
                                       then channeling can simply be viewed as performance art. The channel enters an altered state and,
                                       from this altered state, speaks. You might understand that many musicians improvise.
                                       So, from some view, channeling is verbal improvisation.</p>
 
                                    <p>If you believe in God, in angels, in higher energies, then you can interpret channeling
                                       very differently. Indeed, if you believe that God pervades all that is, then those
                                       with focus and desire can tap into this divine flow and speak from there,
                                       then channeling can be a higher level of wisdom than human's can normally achieve.</p>
 
                                    <p>It is surely not my place to tell you how to organize and understand YOUR experience!</p>
 
                                    <p>In my day job, I have been a professor of Engineering and Computer Science for over 30 years...
                                       at Oakland University in Rochester, Michigan. My research interest is Artificial Intelligence.
                                       Although an engineer, my PhD is in educational psychology, so I have a different view of life
                                       than most engineers. That difference has been further extended because of many transformational
                                       experiences in my lifetime that began when I was quite young.</p>
 
                                </td>
                            </tr>
                        </table>
                    </ItemTemplate>
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenuItem>
Kate
Telerik team
 answered on 05 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?