Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
188 views
Hello,

How can i show a radtooltip for each node of radtreeview on mouseover and position it beside the node. i am using rad controls prometheus. i also want to fetch some records from the database as tooltip content. please advice me asap.

thanks & regards
Pranjal
Aarsh
Top achievements
Rank 1
 answered on 23 Sep 2012
4 answers
89 views
Can someone tell me how I can find the highest number in each column and format it to make it stick out?
Michael
Top achievements
Rank 1
 answered on 22 Sep 2012
5 answers
201 views
Hello,

I would like to know whether there is a way to dynamically create an ImageEditor and override, for example, the Save functionality in such a way that I don't need any client-side script and the functionality is handled server-side. Thanks in advance,
IT
Top achievements
Rank 1
 answered on 22 Sep 2012
16 answers
273 views
I am using 'external edit in raddock' for Radscheduler in my application.
I have 2 checkboxes outside the scheduler,showing the resources Teacher and ClassRoom.
When 1st checkbox is checked,scheduler is grouped by Teacher as below

RadScheduler1.GroupBy = GroupByExpression;
private string GroupByExpression
        {
            get
            {                              
                return GroupByTeacherCheckBox.Checked ? "Teacher" : "";     
                 
            }
        }
Same with checkbox for Room also.
1)I have more than 30 Teachers.
How can I display only say 5 Teachers at a time in the scheduler and need a horizontal scrollbar to show the rest of Teachers  
?
2)When checkbox for Teacher(resource) is checked,I need to select a particular Teacher(resource value) from a combobox and show the appointments for that Teacher in the scheduler(day /week/month view).
3)Also ,in the appointment template,how can I show any field from my advance form? For example,if my advance form has field mobile number,can I show it in the appointment template?

Please help me on above questions
Thanks,
Soumya
Soumya
Top achievements
Rank 1
 answered on 22 Sep 2012
5 answers
103 views
Hi,
Pl's find the attachment. There is color difference between the header and the selected rectangle area . This show only when the scroll is ative. How i solve this problem.

Thanks & Regards
Anzar.M
Anzar
Top achievements
Rank 2
 answered on 22 Sep 2012
5 answers
679 views
Hi,
I have a radcombobox inside radgrid. On Add new record I created only a insert template of multi column combo box(containing columns like  main rad grid). I can select a single row in combo box. Now I need to populate all the other column values of main rad grid from the selected row values of combo box. how can we do this in client side. What is the best approach for this. 
Jayesh Goyani
Top achievements
Rank 2
 answered on 21 Sep 2012
5 answers
138 views
Sorry for what is likely a repeat of past threads, but in spite of looking through the forum, I can't seem to get this to work.  I have 2 listboxes, the "source" listbox is databound to a LINQ query and I want to be able to transfer items to a second listbox.  In spite of (I think) carefully following the past examples, I can't get it working.  The "transfered" event on the source doesn't appear to be firing at all, and when I attempt to do a transfer even of a single item, both listboxes wind up empty.  I'd be very veryyyyyyy grateful for any guidance.  My listboxes are defined as such:
<div class="left">
        <telerik:RadListBox ID="ticketListbox" runat="server"
         ItemPlaceholderID="TicketContainer"
            EnableViewState="False"  Font-Names=""Helvetica 65 Medium",Arial,sans-serif"
            Font-Size="Medium" ForeColor="#C36029" Width="275px" AllowTransfer="True"
              TransferToID="splitListbox" AutoPostBackOnTransfer="True"
              SelectionMode="Multiple" ontransferred="ticketListbox_Transferred">
             
<ButtonSettings TransferButtons="All"></ButtonSettings>
             
            <ItemTemplate>
       <table style="font-family: Arial, Helvetica, sans-serif;  font-size: medium; color: #C36029">
       <td>
        <%#Eval("Quantity")%>
       </td>
       <td>
        <%#Eval("Name")%>
       </td>
        <td>
        <%#Eval("Price","{0:c}")%>
       </td>   
       </table>              
       </ItemTemplate>      
        </telerik:RadListBox>
        </div>
 
        <div class="centerElements">
          <telerik:RadListBox ID="splitListbox" runat="server"
            ItemPlaceholderID="splitContainer"
            EnableViewState="False"  Font-Names=""Helvetica 65 Medium",Arial,sans-serif"
            Font-Size="Medium" ForeColor="#C36029" Width="275px" AllowTransfer="False"
                 >
          
<ButtonSettings TransferButtons="All"></ButtonSettings>
          
               <ItemTemplate>
       <table style="font-family: Arial, Helvetica, sans-serif;  font-size: medium; color: #C36029">
       <td>
        <%#Eval("Quantity")%>
       </td>
       <td>
        <%#Eval("Name")%>
       </td>
        <td>
        <%#Eval("Price","{0:c}")%>
       </td>   
       </table>              
       </ItemTemplate>          
          </telerik:RadListBox>
          </div>

And my code behind is as follows:
protected void Page_Load(object sender, EventArgs e)
        {
            if (!User.Identity.IsAuthenticated)
            {
                Response.Redirect("http://localhost:64501/LogOn.aspx");
 
            }
            if (!Page.IsPostBack)
            {
                ticketListbox.DataBind();
                splitListbox.DataBind();
            }
 
            
        }
 
        protected void Button1_Click(object sender, EventArgs e)
        {
            CaffeBravoContext tc = new CaffeBravoContext();
            int tableNo = System.Convert.ToInt16(tableTextbox.Text);
            var table = from t in tc.Tickets
                        where (t.Table==tableNo)&&
                        (t.Closed_==false)                       
                        select t;
 
            if (table.Count()==0)
            {
                statusLbl.Text="There is no open ticket for that table!";
            }
            else
            {
                var tickets = from d in tc.Ticket_Details
                              where d.Ticket_ == table.FirstOrDefault().Ticket_Number
                              select d;
               
 
                ticketListbox.DataSource = tickets.ToList();               
                ticketListbox.DataBind();
            }
        }
 
        protected void ticketListbox_Transferred(object sender, RadListBoxTransferredEventArgs e)
        {
            foreach (RadListBoxItem item in e.Items)
            {
 
                item.DataBind();
 
            }
        }
 
       
 
        
 
        
    }
}
Paul
Top achievements
Rank 1
Iron
 answered on 21 Sep 2012
2 answers
136 views
Hello guys,

Sometimes when I open the spell checker appear a small black boxes on the form, do You have any idea?
Attached you will find how the form looks, those boxes appear on le leftside of all buttons, Ignore, Ignore all, Add custom and so on.

No matter what explorer I use, these appear IE7,IE8,IE9, Chrome.

Thanks in advance.


Regards.
Cesar
Top achievements
Rank 1
 answered on 21 Sep 2012
5 answers
206 views
Hello,
I used the RadFileExplorer in a Panel for ModalPopup. It works good. When I clicked by the Upload button, then the Upload Dialog is not in front from the FileExplorer. How can I solve this problem?

Thanks
Reiner
Vessy
Telerik team
 answered on 21 Sep 2012
3 answers
194 views
http://www.telerik.com/support/kb/aspnet-ajax/menu/mega-drop-down-menu-bind-to-xml-datasource.aspx

The above is what I'm working from. I am noticing that "alt" nor "title" are showing up for my URL's from my XML file that I have the urls contained in and the menu reading from. Are there any known options for this?

Also is there way to differentiate if a sub menu only has 1 column link to display as a 1 column sub menu opposed to 2 (how I currently have it setup). I tried setting it through the style sheet but once it posts back it extends to 2 column. 

 

 

 

 

 

.Item1 .rmSlide
{
left: 695px !important;
max-width: 200px !important;
min-width: 200px !important;
}


 
Boyan Dimitrov
Telerik team
 answered on 21 Sep 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?