Telerik Forums
UI for ASP.NET AJAX Forum
8 answers
142 views
We have had several users with this problem, but I am unable to replicate it on my system.  Near as I can tell, they edit a page, typing in text, save the page, and what is saved is not only the text they have typed but also many <br> tags both between the text that they've typed and after it.  Usually there are 5-21 lines of <br>s between text, but some of them have hundreds of <br>s after the text.  This is rendering our tool unusable.  We are currently using <!-- 2010.1.519.20 -->.  We thought initially that they were pasting from Word, but that is not the case.  We are trying to track users down and gather further information from them, and I'll report back any clarifying info I receive. Initial reports indicate it may be an IE issue and not a FF issue.  Any ideas people may have off the tops of your heads would be helpful.

Thanks!

Laurie
Laurie
Top achievements
Rank 2
 answered on 23 Mar 2012
1 answer
76 views
I have a radchart with names instead of numbers on the y axis.  However the names are getting cut off.  How can I add more space for them?

I've attached a picture so you can see what I'm talking about.
Javier
Top achievements
Rank 1
 answered on 23 Mar 2012
1 answer
77 views
Hi,

                           I am setting the restrict zone area dynamically on expand and collapse of slide panel.While the slide panel is in expanded mode my child window works fine on maximizing.But an issue occurs when my child window is maximized my slide panel goes behind the window on expansion or even the child window is placed to the extreme left the slide panel is unable to push the window to right.
                           I want my window functionality like outlook window.

Help me,

Thnx in advance
Marin Bratanov
Telerik team
 answered on 23 Mar 2012
3 answers
162 views
Hi,
I have a RadGrid which displays 250 rows and 18 Columns.
At present, because of our requirement, we can't allow paging.
The Header background color is Navy Blue and the Row Selected color is Light Blue.
However when I navigate between rows using the Keyboard down arrow, the Row Selected Color changes to the Header
background Color as it nears the viewable bottom area of the Grid and once it changes the color, any other row I select, the row selected color is the  Header background Color  not the original Light Blue I assigned.
Can you please let me know what might be the Issue?
Thanks
Srinivas
Andrey
Telerik team
 answered on 23 Mar 2012
1 answer
92 views
Hi, i want to know is exists any sample that show me how to add a combo (or check list) for display in may Scheduler only specific resource
Plamen
Telerik team
 answered on 23 Mar 2012
19 answers
221 views
Hi

               I have a RadAsyncUpload to upload the image. Using  another button named "UpLoad" generate the postback to upload the image.  Save the image in sql Server database in binary format. Retrieve the binary data from the database and set it to the datavalue property of the RadBinary image control. The radbinary image displays the image in it's original size.  I have set the width and height of the radbinary image as 200px but the the image is displayed in its original size.
 If i will generate a postback again then the image is set in 200px height and width. Please give the solution for this problem.
protected void Page_Load(object sender, EventArgs e)
        {
 
            binaryimage1.Height = Unit.Pixel(200);
            binaryimage1.Width = Unit.Pixel(200);
       
            b1.Click += new EventHandler(b1_Click);
 
        }
void b1_Click(object sender, EventArgs e)
        {
 
            foreach (Telerik.Web.UI.UploadedFile file in uploader.UploadedFiles)
            {
                byte[] bytes = new byte[file.ContentLength];
                string fname = file.FileName.ToString();
                int length = bytes.Length;
 
                file.InputStream.Read(bytes, 0, file.ContentLength);
 
                SqlConnection dbconn = new SqlConnection(strconn);
 
                try
                {
                    string Query = "INSERT INTO RadBinaryImageDemo (ImageData,ImageName) VALUES " + " (@imgdata,@imgname)";
                    SqlCommand cmd = new SqlCommand(Query, dbconn);
 
                    SqlParameter[] param = new SqlParameter[2];
 
                    cmd.Parameters.AddWithValue("@imgdata",bytes);
                    cmd.Parameters.AddWithValue("@imgname", file.FileName);
                    dbconn.Open();
                    cmd.ExecuteNonQuery();
                   
                    DataTable d1 = new DataTable();
                    string Query1 = "select ImageData from   RadBinaryImageDemo where ImageName='" + fname + "'";
                    SqlDataAdapter sqldadap = new SqlDataAdapter(Query1, dbconn);
                    sqldadap.Fill(d1);
 
                    byte[] imgdata = ((byte[])d1.Rows[0]["ImageData"]);
 
                    binaryimage1.DataValue = imgdata;
                     
                }
                finally
                {
                     
                        dbconn.Close();
                     
                }
            }
 
             
        }
danny lankar
Top achievements
Rank 1
 answered on 23 Mar 2012
3 answers
168 views
Hello.
I would like to set some settings in server-side.
So i want to enable bold and italics and font-size 22px and selected font Arial(those settings depend on user preferences)
I don't want to use ContentAreaCssFile(which can actually  set the font-weight bold but not make the B button look like it's pressed.Of course i can use js...).
Any ideas?Thanks.

tasos
Top achievements
Rank 1
 answered on 23 Mar 2012
2 answers
211 views
Hello,

I was working on implementing a RadComboBox through Telerik's style builder, then I came across a strange problem. On hovering over the RCB, the controller responds as expected, however when I hover over the arrow image, the arrow image is pushed approx 10px to the right.

After using firebug to modify the CSS in an attempt to fix the problem there was no resolve.

I got rid of my custom styles and just dropped a vanilla RCB (default theme) with 3 test items and I have the same problem.

I'd appreciate any help, I've spent a little too much time trying to get it working. I've attached a screengrab.

Kind Regards,

Asif
Asif
Top achievements
Rank 1
 answered on 23 Mar 2012
5 answers
94 views
Hi All,
 when we right click on scheduler Past time slot i want to hide my 'Add New Appointment' TimeSlotContextMenu. I don't want to allow to add Appointments for past date and time.

Thanks
Madhan
Madhan
Top achievements
Rank 1
 answered on 23 Mar 2012
2 answers
126 views
I'm having an issue with the RadTextBox not remaining at the bottom of the text box as you type into it.  A few rows after it hits max height (roughly half of max length), it pops up to showing roughly the 2nd line of text and down.  Typing a character will briefly pop focus back to the bottom of the text box, but it will return to the 'top' immediately after.  RadTextbox is within a cell of a table as well, if that makes a difference.

Text box declaration below for help:
<telerik:RadTextBox ID="tbComment" Runat="server"
    EmptyMessage="Comment (Optional)" MaxLength="2000" TextMode="MultiLine"
    Width="100%" Height="100px">
</telerik:RadTextBox>

I've only observed this happening in IE8.  I also tested in Firefox 11 and had no issues with this there.  Telerik controls are Version 2011.3.1115.35. 
Milena
Telerik team
 answered on 23 Mar 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?