Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
193 views
Hi

Is this possible, I'm already opening the panel with Js , I just want to show the loadingpanel when its opening

 showLoadingPanel(Panel1); 
 
 function showLoadingPanel(sender, args) 
              { 
              var currentLoadingPanel = null
              var currentUpdatedControl = null
               
              currentLoadingPanel =  $find("<%= RadAjaxLoadingPanel1.ClientID %>"); 
              currentUpdatedControl  == args.get_eventTarget(); 
              currentLoadingPanel.show(currentUpdatedControl); 
               
              } 
 
 

Iana Tsolova
Telerik team
 answered on 25 Nov 2009
2 answers
164 views
Hi,
 

we are  trying to add custom controls to the appointment inline create/edit form.

In inline create/edit we have added  the new field as Users and used the radcomboBox for showing users.we have to get the users from db and bind into it.

When we double click an empty slot,onFormCreating event is  fired.But we are not able to get the combo box control and fill the users.
But in onFormcreated event ,we can get the control by using e.container.

The problem is this event(onFormcreated event) is not fired.

i would like to load the users in combobox while inline create window opens.


i am giving you the sample coding that  i am using

  <InlineInsertTemplate>
                     
                                    <table>
                                        <tr>
                                            <td>
                                             Subject:
                                            </td>
                                           
                                             <td>
                                                            <asp:TextBox  runat="server"
                                                               ID="DescriptionText"
                                                               Width="240px">
                                                     </asp:TextBox>
                                             </td>
                                                  
                                        </tr>
                                        <tr>
                                            <td>
                                                  <asp:Label ID="lblStartTime" runat="server" Text="Start time:"></asp:Label>
                                            </td>
                                            <td>
                                                <telerik:RadTimePicker ID="tpStartTime"  DateInput-ReadOnly="true"   Skin="Web20" runat="server">
                                                </telerik:RadTimePicker>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <asp:Label ID="lblEndTime" runat="server" Text="End time:" Visible="true"></asp:Label>
                                            </td>
                                            <td>
                                                <telerik:RadTimePicker ID="tpEndTime" DateInput-ReadOnly="true" runat="server" Skin="Web20">
                                                </telerik:RadTimePicker>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <asp:Label ID="lblUser" runat="server" Text="User:" Visible="true"></asp:Label>
                                            </td>
                                            <td>
                                                <telerik:RadComboBox ID="ddlUsers" Skin="Web20"  
                                                DataValueField="UserId" DataTextField="UserName"  
                                                AutoPostBack="false" runat="server">
                                                </telerik:RadComboBox>
                                            </td>
                                        </tr>
                                        <tr>
                                            <td>
                                                <asp:Label ID="lblMarkUs" runat="server" Text="Mark as" ></asp:Label>
                                            </td>
                                            <td>
                                                <telerik:RadComboBox ID="ddlMarkUs" Skin="Web20"  AutoPostBack="false" runat="server">
                                                    <Items>
                                                        <telerik:RadComboBoxItem Text="Select" Value="N" />
                                                        <telerik:RadComboBoxItem Text="Assisted user" Value="A" />
                                                        <telerik:RadComboBoxItem Text="Service/Maintenance" Value="S" />
                                                        <telerik:RadComboBoxItem Text="Training" Value="T" />
                                                    </Items>
                                                </telerik:RadComboBox>
                                            </td>
                                        </tr>
                                       
                                        <tr>
                                            <td>
                                            <asp:Button runat="server" ID="btnSchedulerUpdate"
                                            ValidationGroup="vgCreateAppointment" SkinID="btn"
                                            CausesValidation="true"  Text="Update"
                                               />
                                        </td>
                                            <td>
                                                <asp:Button ID="btnSchCreatUpdateCancel"
                                                SkinID="btn"
                                                causesvalidation="false" OnClientClick="hideForm();"
                                                runat="server" Text="Cancel" />
                                        </td>
                                        </tr>
                                       
                                    </table>
                                   
                </InlineInsertTemplate>
               


Thanks for any help

Veselin Vasilev
Telerik team
 answered on 25 Nov 2009
2 answers
162 views

Using the RadDatePicker i wish to allow free text as well as dates for example TBA or N/A etc.. .
How do i turn of date validation ie.. an exclamation mark appears and the RadDatePicker's border turns red when a non date is entered.

Dimo
Telerik team
 answered on 25 Nov 2009
1 answer
133 views
Hello,

I have ran into an issue.  I am using an MVC view which has a RadUpload control.  I'm doing a JQuery post to the server, as the means for my AJAX postback.  Is there a way to get access to the file from the JQuery post?  Request.Files collection is empty, and when I don't do a postback via JQuery, it's 1.

Is there a workaround?  Client-side event, etc?

Thanks.
Georgi Krustev
Telerik team
 answered on 25 Nov 2009
3 answers
168 views

vs2008

q2 2009

Hiya,

I need to add the above to the GridBinaryImageColumn in the grid, but every time I add it I get an error.
I only want the image to appear when in editMode.

<telerik:GridBinaryImageColumn DataAlternateTextField="Description" DataAlternateTextFormatString="No photo added yet" 
                        DataField="Data" HeaderText="Photo" ImageAlign="NotSet" ImageHeight="80px" ImageWidth="80px" 
                        ResizeMode="Fit" UniqueName="Upload" > 
                        <HeaderStyle Width="10%" />                         
                    </telerik:GridBinaryImageColumn> 

Any ideas? I'm struggling with this one.

Thanks,

yogi


Sebastian
Telerik team
 answered on 25 Nov 2009
2 answers
77 views
Hi,

I would like to use Telerik List Box.  From demo what i can get is we can Move items up and down using javascript and pistback.

But I would like to know whether Ajaxified Posbacks are allowed while Move Up and Move down button in page? If yes how can i achieve it?

Also, i would liek to have text "Move Up" and Move Down" in place of Up/Down arrows.

Request you to please suggest on this.

Thanks and regards,
Manish Patel
Veselin Vasilev
Telerik team
 answered on 25 Nov 2009
8 answers
483 views
hi,

i am using context menus(4 options) for showing right click options.but am not able to implement some of the things  that are follows

These are to be done in server side.because i have some validations in server side to show/hide content menus.

1.  I need to disable the right click options(context menus) for  particular appointment.
2.  I need to enable one context menu out of 4 menus for particular appointment


how can it is possible?

Thanks for your valuable suggestions,

Sabarish
Peter
Telerik team
 answered on 25 Nov 2009
11 answers
382 views
Hi,
I need Modalpopup extender like control in my application. 
Is there anyway to use RadWindow as modal popup (without creating separate page) ?

I tried using RadDoc, but it is not looking good as RadWindow and main thing is, it does not provide modality. user can click controls on backside of the popup.


Thanks,
Georgi Tunev
Telerik team
 answered on 25 Nov 2009
7 answers
205 views
Hi,

Is it possible to hide the CSS-classes label and dropdown that appears on dialogs (i.e. on image manager/properties, hyperlink manager). Alternatively, how can I set the data source for the css-classes dropdown. Currently it loads all the application's styles and the result is awkward. The application in question cannot use styles so it is not needed. I prefer to hide it but if not possible, than set it to an empty data source.

BR,
eyal
eyal
Top achievements
Rank 1
 answered on 25 Nov 2009
1 answer
108 views
Hi,
I am using rad combo in user control but it has double borders in its design. Please see the image attached with this post.
I am using following code for it.

.ascx
<rad:RadComboBox  NoWrap="true"   ID="ddlCurrency" runat="server" Width="278px"  
                    Height="100px" Skin="WebBlue" EnableLoadOnDemand="True"  
                            EnableVirtualScrolling="True" MarkFirstMatch="True"  
                    ShowMoreResultsBox="True" AllowCustomText="True" 
                             
                    Text='<%#Convert.ToString(DataBinder.Eval( Container, "DataItem.Currency")) %>' > 
                                    <CollapseAnimation Duration="200" Type="OutQuint"></CollapseAnimation> 
                        </rad:RadComboBox> 

Almost similar code I am using in .aspx page this is working fine.

Any clue whats could be the reason ?


Thanks,
Awadh





Paul
Telerik team
 answered on 25 Nov 2009
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?