Telerik Forums
UI for ASP.NET AJAX Forum
9 answers
277 views
Hi,
I have a recurring appointment and i list all the occurrences in a datagrid. Now when i click on one of the occurrences, i would like to open/edit that occurrence, not the series. (currently it goes to the view of opening the series), Any suggestions how to achieve that?

regards,
Naresh
Peter
Telerik team
 answered on 05 May 2011
1 answer
74 views

Hai


I am creating an online application for attending quiz programs. I am using telerik controls in the application. This application is going to have two users admin and user. Admin is the one who is creating exams and assign test to the user. The user will register themselves for the test and attend the test. How can i effetcively design the test pagewith these controls?



Thanks
Georgi Tunev
Telerik team
 answered on 05 May 2011
1 answer
113 views
Hello Telerik,
It's very strange that the datetimepicker works very well on my local computer , but after I uploaded the website to the server,the part of "time" can not be selected(no response when I click it), I can only select "date", it confuse me a lot....
Pavel
Telerik team
 answered on 05 May 2011
2 answers
90 views
The attached Image shows what happens when I configure my RadScheduler with the following settings:


In my markup I have:
<TimelineView TimeLabelSpan="4" SlotDuration="00:15" NumberOfSlots="48"
ColumnHeaderDateFormat="HH:mm" HeaderDateFormat="HH:mm"
GroupingDirection="Vertical" StartTime="06:00" />


And once I've initiated my data programmatically I have
RadScheduler1.WorkDayStartTime = startTime;
RadScheduler1.WorkDayEndTime = endTime;
var duration = RadScheduler1.WorkDayEndTime - RadScheduler1.WorkDayStartTime;
RadScheduler1.TimelineView.StartTime = RadScheduler1.WorkDayStartTime;
RadScheduler1.TimelineView.NumberOfSlots =
duration.Hours * 4 + duration.Minutes / 15 + 1;



Note: I've tried it with & without the '+ 1'...It doesn't matter, still doesn't line up.
Veronica
Telerik team
 answered on 05 May 2011
3 answers
166 views
I have created a simple test to check to see if the date is properly filtering and it seems to be failing every time when I have two dates with different years ... Please look at this code and test it and let me know what I am doing wrong if anything.
<telerik:RadGrid ID="gridUsers" AllowAutomaticDeletes="true" runat="server" AllowPaging="true" AllowSorting="true" AllowFilteringByColumn="true" PageSize="10" AutoGenerateColumns="false">
                        <GroupingSettings CaseSensitive="false" />
                        <HeaderStyle Font-Bold="true" />
                        <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true" Visible="true" EnableSEOPaging="true"/>
                        <ClientSettings>
                            <Scrolling AllowScroll="False" />
                        </ClientSettings>
                        <MasterTableView CommandItemDisplay="Top" AllowNaturalSort="false" DataKeyNames="Created">
                            <Columns>
                                <telerik:GridDateTimeColumn HeaderText="Created" ItemStyle-Wrap="false" UniqueName="Created" DataField="Created" FilterListOptions="VaryByDataType" FilterImageUrl="~/images/filter_icon.gif" />
                            </Columns>
                        </MasterTableView>
                    </telerik:RadGrid>
Protected Sub gridUsers_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles gridUsers.NeedDataSource
        Dim myDT As New DataTable
        myDT.Columns.Add("Created")
  
        Dim row1 As DataRow = myDT.NewRow
        row1("Created") = Date.Now
  
        Dim row2 As DataRow = myDT.NewRow
        row2("Created") = Date.Now.AddDays(12)
  
        Dim row3 As DataRow = myDT.NewRow
        row3("Created") = Date.Now.AddYears(-2)
  
        Dim row4 As DataRow = myDT.NewRow
        row4("Created") = Date.Now.AddYears(-3)
  
        myDT.Rows.Add(row1)
        myDT.Rows.Add(row2)
        myDT.Rows.Add(row3)
        myDT.Rows.Add(row4)
  
        gridUsers.DataSource = myDT
    End Sub

The first bit is my code behind for the datasource of the grid and the second is the asp code. Try and filter something like "1/1/2010" without the quotes and place the filter on less then and the results come back empty. The inverse being greater then where the no filtering occurs.

Please help asap,
Thanks!
Trevor
Princy
Top achievements
Rank 2
 answered on 05 May 2011
3 answers
81 views
hello everyone,

I have a problem with the UI of RadGrid when using grouping functionality. It happens at the first time when a page is loaded, the UI of grouping icon does not appear as expected. When I click on to expand/collapse, the UI seems to be OK now.

The group load mode is client side and the grid is put on a web part deployed in sharepoint 2010.
Please see the attached file to see the problem in detail.

Any suggestion?

Regards,
TNgo



Tsvetoslav
Telerik team
 answered on 05 May 2011
1 answer
262 views
Hi,
This is a complex scenario which I will try to explain as good as I can.
I have a Master Page(MasterPage1) and their is another MasterPage(MasterPage2) inherited from the MasterPage1.
So in MasterPage2, I have a RadDatePicker which is inside a RadPageView which is inside a RadPanelBar.

Now, i want the ClientID of this RadDatePicker. Presently I am trying it using $find(<%= id_radDatePicker.ClientID%>), which says that id_radDatePicker doesnt exist in the scenario.

I would appreciate if you can let me know how to get around with this.

regards
Yash
Princy
Top achievements
Rank 2
 answered on 05 May 2011
2 answers
89 views


Data will be saved only if there is which radtab is changed that controls should be saved , its possible RadTabStrip
Dimitar Terziev
Telerik team
 answered on 05 May 2011
2 answers
129 views
Hi,

Is there a way to incorporate horizontal positional tab stops in to the editor? similar to MS word. We do not care about the ruler, we are looking for a simple API( rad window with TAB stop options, like in MS Word Paragraph TAB property dialogue) to insert TAB Stops.

This is a very crucial feature for our client and became a show stopper in our project, truly appreciate your response.

Thanks,
Indira.
Dobromir
Telerik team
 answered on 05 May 2011
1 answer
367 views
hi people!

i wanna rebind my RadGrid after updating data to database, everything works well except that the RadGrid cant rebind data after the action completed, here is my source code.

        protected DataClasses1DataContext context = new DataClasses1DataContext();

        protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
        {
            foreach (GridDataItem item in RadGrid1.MasterTableView.Items)
            {
                if ((item["Name"].FindControl("Name") as Label).Text == "Action")
                {
                    var group = (from g in context.Groups where g.Name == "Action" select g).Single();
                    group.Note = "note!";
                    context.SubmitChanges();
                    item.Enabled = false;
                }
            }    
            // i cant call back Rebind() method in RadGrid here because RadGrid does not allow while databinding
        }
i wanna show my data that has been updated in this event but havent still found out the ways to do it yet.
anyone can handle this problem please help me to fix it.

thanks in advance.

kind regards.
Daniel
Telerik team
 answered on 05 May 2011
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?