Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
89 views
I have some content initialized in RadAjaxPanel which gets changed if I click next/previous buttons inside that panel and content inside that panel gets changed on every button click. The problem is that if I hit browser's refresh button, content gets changed and go to first record which was initialized when page was loaded first time. How can we stop that browser's refresh effect on content inside RadAjaxPanel?
Maria Ilieva
Telerik team
 answered on 16 May 2012
8 answers
141 views

I was testing my own built RADScheduler page and I found a bug.
My page will always start an advanced form to insert, when I press the Enter key, the focus dissappeared.

In my masterpage I have a Log Out button. Every time when I press the Enter key, I get logged out. How can I get the focus on the advanced insert form?

In my advanced form I have one custom attribute.

This problem also happens with the demo RADScheduler page. I use Internet Explorer 9 to test it. 

I don't have any code in Javascript or in the CS file:

<telerik:RadScheduler AppointmentStyleMode="Default" Culture="nl-NL" EnableCustomAttributeEditing="True"
        DataDescriptionField="omschrijving" DataEndField="eindtijd" DataKeyField="OID"
        DataRecurrenceField="terugkeerRegel" DataRecurrenceParentKeyField="terugkeerOID"
        DataSourceID="ldeAgenda" DataStartField="starttijd" DataSubjectField="onderwerp"
        DayEndTime="19:00:00" DayStartTime="07:00:00" EditFormTimeFormat="H:mm" EnableDescriptionField="True"
        FirstDayOfWeek="Monday" Height="" HoursPanelTimeFormat="H:mm" ID="rsrAgenda"
        CustomAttributeNames="locatie" LastDayOfWeek="Sunday" OnFormCreated="Schedule_FormCreated"
        <%--OnAppointmentInsert="InsertAfspraak" OnAppointmentDelete="DeleteAfspraak" OnAppointmentUpdate="UpdateAfspraak"--%>
        runat="server" SelectedView="MonthView" StartInsertingInAdvancedForm="True" WorkDayEndTime="19:00:00"
        WorkDayStartTime="07:00:00">
        <AdvancedForm Modal="true" TimeFormat="H:mm" />
        <TimelineView GroupingDirection="Vertical" />
        <MonthView GroupingDirection="Horizontal"></MonthView>
        <DayView EnableExactTimeRendering="True" />
        <AppointmentContextMenuSettings EnableDefault="true" EnableEmbeddedSkins="True" />
        <AdvancedForm Modal="true" ZIndex="2000000" />
        <TimeSlotContextMenuSettings EnableEmbeddedSkins="True" />
        <TimeSlotContextMenus>
            <telerik:RadSchedulerContextMenu ID="SchedulerTimeSlotContextMenu" runat="server">
                <Items>
                    <telerik:RadMenuItem Text="Nieuwe Afspraak" Value="CommandAddAppointment" />
                    <telerik:RadMenuItem Text="Naar Vandaag" Value="CommandGoToToday" />
                    <telerik:RadMenuItem Text="Naar Herhaalafspraak" Value="CommandAddRecurringAppointment" />
                    <telerik:RadMenuItem Text="Geef 24 uur..." Value="CommandShow24Hours" />
                </Items>
            </telerik:RadSchedulerContextMenu>
        </TimeSlotContextMenus>
        <AppointmentContextMenus>
            <telerik:RadSchedulerContextMenu runat="server" ID="ContextMenu">
                <Items>
                    <telerik:RadMenuItem Text="Afspraak wijzigen" Value="CommandEdit" />
                    <telerik:RadMenuItem Text="Afspraak verwijderen" Value="CommandDelete" />
                </Items>
            </telerik:RadSchedulerContextMenu>
        </AppointmentContextMenus>
    </telerik:RadScheduler>
    <asp:LinqDataSource ID="ldeAgenda" runat="server" ContextTypeName="AGenda.AgendaDataContext"
        TableName="Agendas" EnableDelete="True" EnableInsert="True" EnableUpdate="True">
    </asp:LinqDataSource>

Plamen
Telerik team
 answered on 16 May 2012
1 answer
305 views
I think that there's been a problem with the Copy'n'Paste inheritance used to put together the man page for this property.

All of the content refers to the ClientSettings class rather than the DataBinding class you would expect.

I don't know if the man pages for this class and it's properties are missing or just inaccessible.

--
Stuart
Tsvetina
Telerik team
 answered on 16 May 2012
1 answer
103 views
I have used Hierarichal radgrid. In that  i have to display empty according to a condition.

Have used below code on page load event:
 if (PrimaryID > 0)
                    {
                        PopulateData();
                        //data will be populated
                        AttributeNameGridBind();
                      
                    }
                    else
                    {
                        this.rgdLabTest.MasterTableView.NoMasterRecordsText = Utility.ContentFetcher.GetResourceContent("RES_035", BOL.Classes.EHRSessions.Culture);
                    }

But grid is showing as solidline istead of no record to dispay message.
Can anyone suggest something.

I want the message from codebehind.
Shinu
Top achievements
Rank 2
 answered on 16 May 2012
6 answers
109 views
I'm using RadEditorMoss v 5.8.15 and I'm not finding a MediaManager.gif in the ToolImages folder.  Is this a sign that I installed the light version?  I have the Ajax pack so I should have access to the full thing right?
Dave
Top achievements
Rank 1
 answered on 16 May 2012
3 answers
93 views
Hi.
I create a panel bar item, and attach ItemTemplate to it in the code-behind.
Everything looks ok, controls added to panel bar display just fine, but when i try to access them in code-behind (after a button on page being clicked) RadPanelITem that contains dynamically added controls doesn't show them anymore, its Controls collection is empty (but it's not empty after i add the controls) and findControl returns null.
What am i doing wrong?
Dimitar Terziev
Telerik team
 answered on 16 May 2012
1 answer
55 views
Hi there,

I'm setting a data set as the data source to the rad grid view then, all the values are displayed but some problem is there means for the gird i i allowed AutoInsertColumns = TRUE and AutoEditColumns = TRUE

please see the diagram
Antonio Stoilkov
Telerik team
 answered on 16 May 2012
3 answers
368 views
Hi all I am newbie to telerik controls. I have seen many examples on grid, now as per my requirement how can I handle paging and Filter by column from server side code, can some one help me..
Princy
Top achievements
Rank 2
 answered on 16 May 2012
1 answer
84 views
Hi,

When I add some client event to TreeList like;
<ClientSettings>
    <ClientEvents OnItemSelected="OnClientNodeClicked" OnItemDeselected="OnClientNodeClicked" />
</ClientSettings>

I am having this error msg;
Microsoft JScript runtime error: Sys.InvalidOperationException: 'ıtemDeselected' is not an event.

If you pay attention to event name it is "ıtemDeselected", first letter is ı (in Turkish small capital of I, dot-less i ). So when regional setting is set to Turkish, lowering "I" becomes "ı" then this exception is occured. To repro this behavior change your regional setting to Turkish from control panel (not UI culture from web.config) and test it. I hope you can fix it as soon as possible.

FYI and TIA.
Tsvetina
Telerik team
 answered on 16 May 2012
0 answers
43 views

I have a Rad Grid control on a form! and it works totally fine on localhost. But when i deploy project on server the grid hyperlinks did'nt work!

it did'nt open any pop up window but on localhost it works fine! and this issue is in soo many pages!

Can anyone help me! what i am doing wrong in deploying!

haroon
Top achievements
Rank 1
 asked on 16 May 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?