Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
143 views
I need to develop a booking room system,
I have a room that can be fully booked, or can be split to parts A & B which each can be booked independently or together
I would like to show two grouping level to the user,

Example:

[ ROOM A ][ ROOM B ]
[  A1 ][ A2 ][  B1 ][ B2 ]

or in resource view horizontally in a tree style
[ROOM A]
    [A1]
    [A2]

Please advise
Mickey


Peter
Telerik team
 answered on 03 May 2010
2 answers
172 views
I have my chart floating right on my page and I'd like to have the bars also align right so they scale out to the left

...easy to do?
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 03 May 2010
2 answers
124 views
I have 2 image columns whose url's are based on the value of another column and an upper and loer limit that the user can select from a rad window.
The Rad window is called from the rad grid and when it closes it updates the image columns based on the values the user selects.
I also have server side code that shows or hides the filter row. At the end it calls the rebind() method to show or hide the filter row.
My problem is that when it does the rebind I lose the limits the user set as well as the image url's because it goes back to the way it was when it was originally loaded.
What can I do to get the grid to stay the way it was and show or hide the filter row?
Thank you.

Protected Sub GrdPoints_ItemCommand(ByVal source As ObjectByVal e As GridCommandEventArgs) _  
                     Handles GrdPoints.ItemCommand  
 
        If e.CommandName = "PointsFilter" Then 
            If GrdPoints.MasterTableView.AllowFilteringByColumn = False Then 
                GrdPoints.MasterTableView.AllowFilteringByColumn = True 
            Else 
                GrdPoints.MasterTableView.AllowFilteringByColumn = False 
            End If 
            GrdPoints.MasterTableView.Rebind()  
        End If 
    End Sub 

Chris LaFrancis
Top achievements
Rank 1
 answered on 03 May 2010
7 answers
141 views
Can you give any suggestion on working with add and edit operation with a sample like the NorthWind Customers db?
With identity keys your examples seem to ignore the value and hide it from the user, but do you have a demo like the above.
Phil
Iana Tsolova
Telerik team
 answered on 03 May 2010
3 answers
262 views
Hello Sir,

How Can i Block Scheduler Slot Of Some Time Interval

For Example :- 

My Scheduler Time Between 9:00AM To 8:00PM

And i want Block :- 10:00AM to 11:00AM   And  01:00PM to 03:00PM

How can i Achive It. Please Help Me.

Thanks
Chandan Kumar
Chandan Kumar
Top achievements
Rank 1
 answered on 03 May 2010
1 answer
108 views
Hello

We have tested Telerik for about 14 days being a potential user (customer) in the future. It looks good.

BUT One thing we found is that the Editor is not working properly.

If you start on a blank page at change the font from (default) Times New Roman to eg Arial and afterwards changes to eg. 22px the font will jump back to Times New Roman. Check under asp.net ajax under Editor demo first look.

Can you please correct this?

NB We need the editor in a customer case

Thanks

Steffen
Dobromir
Telerik team
 answered on 03 May 2010
3 answers
200 views
Hello i hv following application

One Rad grid (Main Page Parent Page  ) It contains the ADD Cart Button .....When i click on that open the Cart Windows
 

<telerik:RadWindow ID="RadWndCart" runat="server" Modal="false" VisibleStatusbar="False"
                Behavior="Move,Minimize"  Skin="Black" Title="Cart" Top="150px" Left="250px" Width="620px"
                 NavigateUrl="ProposalCart.aspx"  Height="483px">
            </telerik:RadWindow>

The Cart windows contains the Create Button When i click on this Open the one form in same windows using following code, It contains creat project button when i click execute the follwoing script and open the page same child window,

  function OpenResult()
               {

                   var oWnd = radopen ("CreateProjectResult.aspx","RadWndCart");
                   return false;

            }

It will open the result windows On that one button i want refresh the Parent (Main Page) .........
for example
the Result page grid contains
ABC
PQR
ABCD

Above are the link button
when click
function RefreshParentPage()
            {
           GetRadWindow().BrowserWindow.location.href = GetRadWindow().BrowserWindow.location.href;

            }

but not open the parent main page it open the second Proposal cart page , i dont want this Reload the main parent page

when i click on the above ABC opens the ABC Page information.

How to navigate the on main page from Child -- Child Window to Parent

ITs Urgent very urgent

Georgi Tunev
Telerik team
 answered on 03 May 2010
1 answer
147 views
Hello everybody,

I found out intresting problem with IE 6,7 and 8. Everythink works fine with firefox. I don't is this Bug or featrure ;). First I created simble page where is rad editor version 7.1.2. Created button click event to code behind. where I put following code.
 
            Dim editor As Telerik.WebControls.RadEditor = CType(Page.FindControl("editor"), Telerik.WebControls.RadEditor) 
        
            editor.Html = "<ul><li>Link1</li><li>Link2</li></ul>"  

After button click I changed  radeditor viewmode to html mode.Now RadEditor output is :
<ul> 
<li>Link
<li>Link 2</li></ul




first li ending tag is missing.Does anyone have idea how to fix this ?
Rumen
Telerik team
 answered on 03 May 2010
2 answers
79 views
I have a search that I know return 2 records (I change the page size to 2 and I get both records.)  So to test the paging I set the page size to 1  I get no pager controls at all.

The Data is bound in the Page_Load method based on some search logic.

I ripped the logic right from the demo.

<telerik:RadListView ID="lvSearchResults" runat="server" AllowPaging="true" 
                            PageSize="1" ItemPlaceholderID="coursePlaceHolder" DataKeyNames="courseId"
            <LayoutTemplate> 
                <fieldset id="FieldSet1"
                    <asp:PlaceHolder ID="coursePlaceHolder" runat='server'
                    <asp:LinkButton runat="server" ID="btnFirst" CommandName="Page" CommandArgument="First" 
                    Text="First" Enabled="<%#Container.CurrentPageIndex > 0 %>" CssClass="small green awesome" /> 
                    <asp:LinkButton runat="server" ID="btnPrev" CommandName="Page" CommandArgument="Prev" 
                    Text="Prev" Enabled="<%#Container.CurrentPageIndex > 0 %>" CssClass="small green awesome" /> 
                    <asp:Button runat="server" ID="btnNext" CommandName="Page" CommandArgument="Next" Text="Next"  
                    Enabled="<%#Container.CurrentPageIndex + 1 < Container.PageCount %>" CssClass="small green awesome" /> 
                    <asp:Button runat="server" ID="btnLast" CommandName="Page" CommandArgument="Last" Text="Last"  
                    Enabled="<%#Container.CurrentPageIndex + 1 < Container.PageCount %>" CssClass="small green awesome" /> 
                    </asp:PlaceHolder> 
                </fieldset> 
            </LayoutTemplate> 
            <ItemTemplate> 
                <div class="searchResult odd"
                    <href='/Courses/<%# Eval("courseID") %>' class="normal" ><%# Eval("courseName") %></a
                </div> 
            </ItemTemplate> 
            <AlternatingItemTemplate> 
                <div class="searchResult even"
                     <href='/Courses/<%# Eval("courseID") %>' class="normal"><%# Eval("courseName") %></a
                </div> 
            </AlternatingItemTemplate>  
             
         </telerik:RadListView>



Rosen
Telerik team
 answered on 03 May 2010
3 answers
143 views
Hello

I have got a PanelBar to bind to a hierarchical datasource. However I'm not sure how to get this to work with template items.

RadPanelBar1.DataSource = clients; 
RadPanelBar1.DataFieldID = "ID"
RadPanelBar1.DataFieldParentID = "ParentId"
RadPanelBar1.DataTextField = "Label"
RadPanelBar1.DataBind(); 

That produces a PanelBar with default styling and three levels:

Parent Name
- Child Name
  - Child Child Name

Now what I want to be able to do is turn each row into a template field so I style each level differently and add some other stuff, like button or image on each row.

Parent Name [button]
- Child Name [Image]
  - Child Child Name [Textbox]

Thanks for any help you can provide.



Nikolay Tsenkov
Telerik team
 answered on 03 May 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?