Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
46 views
Hi,

I'm trying to implement the advanced template scenario. I'm getting an error when trying to load the advanced form.

The error is located:

_initializeAllDayCheckbox: function()
{
    var allDayCheckbox = $("#" + this._templateId + "_AllDayEvent");
    var controlList = $(allDayCheckbox[0].parentNode.parentNode.parentNode);

This is located in AdvancedForm.js

It's happening with or without having this in the AdvancedForm:

<li class="rsAllDayWrapper">
    <asp:CheckBox runat="server" ID="AllDayEvent" CssClass="rsAdvChkWrap" Checked="false" />
</li>

The form still works, although I did notice it does not close unless I refresh the page (first time).

Could you help with this?
Alan
Top achievements
Rank 1
 answered on 13 Mar 2012
4 answers
280 views
Hi,
I have a RadGrid, which I have set the EditMode as "PopUp". I want top have a customised Header for the pop up that appears on click of Edit. Please suggest how I can achieve this.
Thanks and Regards,
Deepika Karanth
Deepika
Top achievements
Rank 1
 answered on 13 Mar 2012
3 answers
75 views
Hi, 
 I have a requirement wherein I need to call webservice method on RowSelected event and on rowdblclick event I want to open a new aspx page in addition to webservice call which is in rowselected event. This works fine in IE and data is returned from server and controls are updated accordingly and also aspx page opens properly. But in chrome and firefox, aspx is opening and but webservice call(ajax) is not returning successfully(though data is returned from server). Is there any difference behaviour between IE and chrome for rowselected and rowdblclick events? Please reply asap.

Regards,
Mahesh
Antonio Stoilkov
Telerik team
 answered on 13 Mar 2012
2 answers
188 views
How to change width and select button text in radupload?
Iana Tsolova
Telerik team
 answered on 13 Mar 2012
2 answers
120 views
Hi all,

Been some years since I've been on these forums..anyway.
version = 2009.2

I open my Radwindow (login) from codebeind. (No default behaviours...just login button which if clicked and login is valid ,  must close the radwindow)
On users click of "login"  button"..I do the usual to close the popup(radwindow login)

 

function GetRadWindow() { 
    var oWindow = null
    if (window.radWindow) oWindow = window.radWindow; 
    else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; 
    return oWindow; 
    
  
function Close() { 
    var oWindow = GetRadWindow(); 
    alert (oWindow);
    oWindow.argument = null
    oWindow.close(); 
    

but


On first "login " click" ...nothing,..does not close...the Close function gets the oWindow var from GetRadWindow,..
and the alert shows it as id ctl003
On 2nd "login " click  ..the alert shows id ctl002
and it closes.

Tried a few javascripts , loading it from javascript as oppposed to from code behind, ..but no joy.
There must be a way I'm sure, but ..how?
TIA
Neal
Neal
Top achievements
Rank 1
 answered on 13 Mar 2012
1 answer
55 views
Hi,

I have successfuly created a self referencing heirarchy grid and it is pretty much working great. The problem I have is that the child grids are left justified with the right side indented. What I need to do is to have the inner grids be left justified. Also I would really like to change the style of the headers so that they are more prominently noticed.

Any help would be greatly appreciated.
Tsvetina
Telerik team
 answered on 13 Mar 2012
3 answers
62 views
Hi, I've built a scheduler very simlar to the first look demo and I'm having a problem setting the scheduler date to the date selected on the second calendar. The same behavior happens on the first look demo schedule. If you select a date on the second calendar the schedule displays the prior month. I'm using the same javascript as the demo. The date passed to the schedule is the correct date, but the scheduler doesn't seem to use it. If you select a date on the first calendar it works ok.

Thanks, all help is appreciated.
Ivana
Telerik team
 answered on 13 Mar 2012
5 answers
500 views

Hello,

I am developing a web application with telerik rad control. I Use the RadTreeView in my application. The all nodes are generate   from (server side) DB. This demo: http://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/contextmenu/defaultcs.aspx

I need to hide/visible false the root node of the tree.  How can I do this?

Thanks and Regards
Nahid

Nikhil
Top achievements
Rank 1
 answered on 13 Mar 2012
4 answers
124 views

I have a problem to display images in a RadRotator.

The image is saved in database.

When i display images in a repeater it works perfectly but when i do the same thing within a radRotator, the image is not displaying

<asp:Repeater runat="server" ID="Repeater1" DataSourceID="SqlDataSource1">
    <ItemTemplate>
        <fieldset style="float: left; width: 350px; height: 150px;">
            <legend><b>Company Name</b>:
                <%#Eval("ImageID")%></legend>
            <div class="details">
                <div class="photo-container">
                    <telerik:RadBinaryImage runat="server" ID="RadBinaryImage1" DataValue='<%#Eval("Image") %>'
                        AutoAdjustImageControlSize="false" Width="90px" Height="110px" />
                </div>
            </div>
        </fieldset>
    </ItemTemplate>
</asp:Repeater>


and within the radrotator ( not working )

<telerik:RadRotator ID="RadRotator1" runat="server" Width="224px" Height="112px"
    CssClass="rotatorStyle" ItemHeight="112px" ItemWidth="112px"
    DataSourceID="SqlDataSource1" >
    <Items>
        <telerik:RadRotatorItem>
            <ItemTemplate>
                    <telerik:RadBinaryImage runat="server" ID="RadBinaryImage1" DataValue='<%#Eval("Image") %>'
                        AutoAdjustImageControlSize="false" Width="90px" Height="110px"  />
 
            </ItemTemplate>
        </telerik:RadRotatorItem>
 
    </Items>
</telerik:RadRotator>

Thanks for your help!

Shinu
Top achievements
Rank 2
 answered on 13 Mar 2012
4 answers
124 views
Hi,
i have a grid with dynamically created DateTime column. Since it was a DateTimeColumn i have datePicker  as a filter control. now the problem is that i want to restrict that filter control as read only. i tried with following code in item created

protected void grid_itemCreated(object sender, GridItemEventArgs e){
DatePicker datePicker = null;
// Code here to find GridFilterControl
datePicker.DataInput.ReadOnly = true;

above code works fine but i can not  choose date from calender popup too.  i am expecting output like user can choose date from calender popup but should not enter date from keys. Kindly suggest to solve this problem
thanks  in advance

regards
Venkat  
Venkat
Top achievements
Rank 1
 answered on 13 Mar 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?