Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
138 views
I have a page with ajaxified RadGrid.

 

 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" ClientEvents-OnRequestStart = "mngRequestStarted">    
<AjaxSettings> 
<telerik:AjaxSetting AjaxControlID="RadGrid1">  
<UpdatedControls> 
<telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1"/>  
</UpdatedControls> 
</telerik:AjaxSetting></AjaxSettings></telerik:RadAjaxManager>    
 
<telerik:RadGrid ... >
   
 ..........
 </telerik:RadGrid ... >
 

 

 

 

EditFormSettings are the following:

 

<EditFormSettings UserControlName="Controls/EditRate.ascx" EditFormType="WebUserControl">  
 

In EditRate.ascx.cs I try to add a startup java-script by the following way. 

 

 

protected void Page_Load(object sender, EventArgs e)     
{  
ScriptManager.RegisterStartupScript(RadAjaxManager.GetCurrent(Page), typeof(Page), "DualListScript"
"MetaBuilders_DualList_Init();"true);    
 }  
 
 

 

 

 When I click on the Edit icon in the grid row, edit user control is loaded, but 

 

 

MetaBuilders_DualList_Init() is not included to the page source. What I am doing wrong?

 

Nikolay Rusev
Telerik team
 answered on 20 Jul 2009
2 answers
137 views
Hi all,
I've got my own Appointment class which has extra info - apart from Subject etc. - for example customer account number (CustAcctNumber).

I want to display this, formatted separately, on the Scheduler screen using Templates.

How can I access the CustAcctNumber in the template?

I've seen mention of CustomAttributes, but am not sure if this is the right way to go.

Any pointers would be appreciated!

Thanks,

James
James
Top achievements
Rank 1
 answered on 20 Jul 2009
1 answer
150 views
HI i have a rad panelBar in which i am using radgrid.
the datasource  for radgrid is datatable.
initially the radpanel is in collapse mode.
when i expand the radpanel bar then the grid is visible but the page get hanged.
please help me
its important.
thanks in advance
Paul
Telerik team
 answered on 20 Jul 2009
1 answer
180 views
I am working on an online schedule viewer that is supposed to display a person's shifts in a week.  The week view is confusing for the end users in that they have to scroll to view their shifts when it's after a late shift.  They like the timeline view, but it only shows from todays date going forward.  This too is confusing for the end users.

Is it possible to set the timeline view to start on a specific day, ie Sundays, or programatically with a specific date like 7/19/2009?

Thanks.
Shinu
Top achievements
Rank 2
 answered on 20 Jul 2009
1 answer
90 views
Hi,

    I wish to show negative and positive values on Y axis with different colors.

    If possible,i also wish to show the values on the series with different color.
    How can i do this.


Thanks,
Avi
Dwight
Telerik team
 answered on 20 Jul 2009
0 answers
119 views
Hello Telerik team,

 Using this demo : http://demos.telerik.com/aspnet-ajax/menu/examples/appearance/iphonemenu/defaultcs.aspx . i have tried to prepare a simple application. 

everything works fine on IE, firefox . But when it comes to safari or Iphone the combobox opens behind the Radmenu. Through one of your forums i came to know that  RadMenu is configured to be on top of RadComboBox. In My case comboBox is inside radmenu .

Please provide me a solution or workaround for this problem .


<telerik:RadMenuItem Text="Quick Patient" BackColor="#FFFFFF" style="z-index: 10000">  
 
<Items> 
 
<telerik:RadMenuItem BackColor="#343b43">  
 
<ItemTemplate> 
 
 
<asp:UpdatePanel ID="pnl_quickpatient" runat="server" UpdateMode="Conditional">  
 
<ContentTemplate> 
 
<div > 
 
 
<div id="wrapper">  
 
<table class="txt" style="background-color:#343b43;">  
 
<tr> 
 
<td align="center" colspan="2">  
 
 
<div id="header1" align="center">Test<br />testtt</div> 
 
 
 
</td> 
 
</tr> 
 
 
<tr> 
 
 
</tr> 
 
<tr> 
 
<td align="center" colspan="2" class="txt">  
 
<asp:Label ID="lblheading" runat="server" Text="Quick Patient" Font-Bold="True"></asp:Label> 
 
</td> 
 
</tr> 
 
<tr align="Left">  
 
<td colspan="2">  
 
<asp:Label ID="lbl_Error" runat="server" ForeColor="Red" Text="" Visible="False"></asp:Label> 
 
</td> 
 
</tr> 
 
<tr align="Left">  
 
<td style="width: 40%;">  
 
Hospitalist  
 
</td> 
 
<td style="width: 60%;">  
 
 
<telerik:RadComboBox runat="server" ID="cmb_hospitalist" Enabled="false" Skin="WebBlue" MarkFirstMatch="true" EmptyMessage="Select Hospitalist" AllowCustomText="true" ShowMoreResultsBox="True" EnableLoadOnDemand="True" OnItemsRequested="cmb_hospitalist_ItemsRequested"></telerik:RadComboBox> 
 
 
</td> 
 
</tr> 
 
<tr align="Left">  
 
<td style="width: 40%;">  
 
PCP  
 
</td> 
 
<td style="width: 60%;">  
 
<telerik:RadComboBox runat="server" ID="cmb_pcp" Skin="WebBlue" MarkFirstMatch="true" EmptyMessage="Select PCP" AllowCustomText="true" ShowMoreResultsBox="True" EnableLoadOnDemand="True" OnItemsRequested="cmb_pcp_ItemsRequested"></telerik:RadComboBox> 
 
 
</td> 
 
</tr> 
 
<tr align="Left">  
 
<td style="width: 40%;">  
 
Primary Diagnosis  
 
</td> 
 
<td style="width: 60%;">  
 
 
 
 
</td> 
 
</tr> 
 
<tr> 
 
<td align="center" colspan="2">  
 
<asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_OnClick"/>  
 
</td> 
 
</tr> 
 
<tr> 
 
<td colspan="2">  
 
</td> 
 
</tr> 
 
<tr> 
 
<td colspan="2">  
 
</td> 
 
</tr> 
 
</table></div>  
 
</div> 
 
</ContentTemplate> 
 
</asp:UpdatePanel> 
 
 
</ItemTemplate> 
 
</telerik:RadMenuItem> 
 
</Items> 
 
</telerik:RadMenuItem> 
 

Thank you
Vipin

 

Vipin
Top achievements
Rank 1
 asked on 20 Jul 2009
3 answers
143 views
Extraction of this zip not possible as it is asking for a password on numerous files within.  Have searched forums, Knowledge base, etc., but cannot find anything about this. All other zips on the current RCajax page extracted with no problems and no password requirement.
Please advise.
Debbie B.
Ivo
Telerik team
 answered on 20 Jul 2009
1 answer
98 views
Hi,

It is possible to use r.a.d Editor for moss in blog site fo sharepoint? I installed the editor but when I generate a new entry it appears the base sharepoint editor.

Thanks in advance,
Stanimir
Telerik team
 answered on 20 Jul 2009
1 answer
90 views
Hi!
I'm using Telerik 2009.2.701.20.
I found a bug when using Firefox, and RadWindow.
When using MinimizeZone, if you minimize the window and restore it, it will reload. Not matter if you are using reloadonshow = false...
That's happening only with FF, not with IE.

To reproduce it just modify this lines of RadControlsExamples, Window-Examples-TargetAttribute:

 <div class="module">
            <div class="moduleHeader">
                Using the 'Target' Attribute</div>
            <table style="height: 500px">
                <tr>
                    <td style="vertical-align: top; width: 220px;" id="NavigationDiv">
                        <a href="http://www.google.com" target="NavigationWindow">Load Google in Navigation
                            Window</a>
                        <br />
                        <a href="http://www.yahoo.com" target="ContentWindow">Load Yahoo in Content Window</a>
                    </td>
                    <td id="ContentDiv">
                    </td>
                </tr>
            </table>
            <telerik:RadWindowManager ID="Singleton" VisibleOnPageLoad="true" runat="server" MinimizeZoneID="MinZone" RestrictionZoneID="mainForm" >
                <Windows>
                    <telerik:RadWindow OffsetElementID="NavigationDiv" Behaviors="Close" NavigateUrl="./Navigation.aspx"
                        runat="server" Width="210" Height="450" Top="50" Left="60" VisibleStatusbar="false"
                        ID="NavigationWindow">
                    </telerik:RadWindow>
                    <telerik:RadWindow OffsetElementID="ContentDiv" NavigateUrl="http://www.google.com"
                        runat="server" Width="430" Height="450" Left="55" Top="50" VisibleStatusbar="false"
                        ID="ContentWindow">
                    </telerik:RadWindow>
                </Windows>
            </telerik:RadWindowManager>
            <div id="MinZone"> </div>
        </div>

Thanx a lot!
Tom
Georgi Tunev
Telerik team
 answered on 20 Jul 2009
11 answers
192 views
I'm hoping the answer is yes, but looking over the documentation, it doesn't look like RadChart can produce a radar plot (sometimes known as Spider or Spider Web plots).  Is there any solution using the control (short of coding it myself)?  I'm implementing this in a Sitefnity site.

Regards,
Mike Sharp
ManniAT
Top achievements
Rank 2
 answered on 20 Jul 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?