Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
157 views
I have a TabStrip on almost every page of my site. When I upgraded to Q1 2009, all the skins broke... I must have missed the part were "Gray" was deleted from the skins.

After fixing that, I noticed that I cannot see the TabStrip in the designer portion of VS 2008. I think the issue has something to do with using ImageUrl's...

Here's a link to a picture that shows the problem.

As you can see, the image is stacked on top of the text. In the Q3 version, it displayed propery.

Also, the baseline disappeared (in Q3 I had to edit the CSS), I found that by enabling showbaseline, it now works.

Thanks,
Joe
Henrik
Top achievements
Rank 1
 answered on 19 Mar 2009
1 answer
66 views
We have a RadTreeView with checkboxes enabled, and are finding that when the page also has a RadFormDecorator, the CheckedNodes collection is not updated on a postback.

Searching this forum, it seems like there have been several incompatibilities between these two controls, but the promise has always been that it will/is fixed in a future release. We are using the latest (March 11) release, and the problem still persists.

Is this still a known problem? Are there any workarounds?

Thanks, in advance,

Tom Otvos
Georgi Tunev
Telerik team
 answered on 19 Mar 2009
0 answers
66 views
Hi,

I am using RadScheduler in readonly mode in my application means user can't add/edit/delete appointments , he can just browse different days for appointments. I have disabled all the views except Timeline View which is readonly.But when I checked this with fiddler it shows me that page loads a 500KB Telerik's webresource.axd file on Pageload.I have used both RadScriptManager and RadStyleSheetManager. Is there a way that only those portion of javascripts loads that I used instead of all the functionalities that I am not using right now.

Thanks
 
Imran
Top achievements
Rank 1
 asked on 19 Mar 2009
6 answers
174 views
Context menu is not rendered correctly in IE 7.0.

Do you have any suggestion how to solve it?

I can't change the doctype...

Thank you very much.

Tom
Kamen Bundev
Telerik team
 answered on 19 Mar 2009
3 answers
133 views
I get Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index.
Daniel
Telerik team
 answered on 19 Mar 2009
10 answers
972 views
Hi,
I am using RadGrid control, and i am having Asp DropdownnList control inside the every grid row. Now on selecting every action from DropDownList i entered to DropDownList_SelectedIndexChanged event but here i am not able to find Grid row cell values. Could you please help me for that.

Thanks ,
Sagar
Sebastian
Telerik team
 answered on 19 Mar 2009
6 answers
302 views
This seems like such a simple problem, I'm surprised that I can't figure it out myself or find an answer on the forums.

I have a RadGrid (for ASP.Net AJAX) with a specified width. There are three columns, one of which is hidden or displayed based on the data.  When there is data, the columns nicely fill the specified width of the grid, regardless of the number of columns displayed. (That is, if all 3 are shown, then their collective width = the grid width. When the first column is hidden, the other columns expand in order to still fill the entire grid width.)

The problem occurs when there are no records to display. In this case, the column widths are the minimum width necessary to fit the HeaderText for each column. This leaves a big ugly gap to the right of the last column.

I have MasterTableView / TableLayout set to "Auto" and no specific width on the last column.

Is there a property I can set on the grid or column to make it fill the available width even when there is no data present?

thx,
david
Sebastian
Telerik team
 answered on 19 Mar 2009
1 answer
108 views
I had it working and now it has stopped. I can't figure out what I've done wrong!

I created my SqlDataSource (one of several on the page) and tested it. I have since fiddled with the UpdateParameters, converting them to FormParameters and giving them a type of "String" instead of the default "Object" in case that mattered.

        <asp:SqlDataSource ID="ExistingDataSqlDataSource"  
            runat="server"  
            ConnectionString="<%$ ConnectionStrings:IepWizardDBConnectionString %>"  
            SelectCommand="SELECT ClassroomAssessmentText, TeacherObservationText, ParentInformationText, OtherEvaluationData FROM EvaluationReviews WHERE (EvaluationReviewID = @EvaluationReviewID)"  
            UpdateCommand="UPDATE EvaluationReviews SET ClassroomAssessmentText = @ClassroomAssessmentText, TeacherObservationText = @TeacherObservationText, ParentInformationText = @ParentInformationText, OtherEvaluationData = @OtherEvaluationData WHERE (EvaluationReviewID = @EvaluationReviewID)"
            <SelectParameters> 
                <asp:SessionParameter  
                    DefaultValue="2"  
                    Name="EvaluationReviewID"  
                    SessionField="EvaluationReviewID" /> 
            </SelectParameters> 
            <UpdateParameters> 
                <asp:FormParameter DbType="String" Name="ClassroomAssessmentText" /> 
                <asp:FormParameter DbType="String" Name="TeacherObservationText" /> 
                <asp:FormParameter DbType="String" Name="ParentInformationText" /> 
                <asp:FormParameter DbType="String" Name="OtherEvaluationData" /> 
                <asp:SessionParameter  
                    DbType="Int32"  
                    DefaultValue="2"  
                    Name="EvaluationReviewID"  
                    SessionField="EvaluationReviewID" /> 
            </UpdateParameters> 
        </asp:SqlDataSource> 

I dropped a FormView onto the page (actually into a RadMultiPage in case that matters). Deleted the textboxes and replaced them with RadEditors, "Edit Databindings", "refresh schema" in the binding editor, bound "Content" to the parameter I required.

It worked for a while. I took a break in triumph, came back, and I must have changed something because I can't get it to work anymore.

Here is the code for the RadEditor itself:
                <telerik:RadEditor  
                    ID="RadEditor1"  
                    Runat="server"  
                    Content='<%# Bind("ClassroomAssessmentText") %>'  
                    Skin="Web20"  
                    EditModes="Design"
                    <Content></Content
                    <CssFiles> 
                        <telerik:EditorCssFile Value="../styles/EditorContentArea.css" /> 
                    </CssFiles> 
                    <Tools> 
                        <telerik:EditorToolGroup > 
                            <telerik:EditorTool Name="Cut" /> 
                            <telerik:EditorTool Name="Copy" /> 
                            <telerik:EditorTool Name="Paste" /> 
                            <telerik:EditorTool Name="PasteFromWord" /> 
                            <telerik:EditorTool Name="Bold" /> 
                            <telerik:EditorTool Name="Italic" /> 
                            <telerik:EditorTool Name="Underline" /> 
                            <telerik:EditorTool Name="StrikeThrough" /> 
                            <telerik:EditorTool Name="InsertUnorderedList" /> 
                            <telerik:EditorTool Name="Indent" /> 
                            <telerik:EditorTool Name="Outdent" /> 
                            <telerik:EditorTool Name="Undo" /> 
                            <telerik:EditorTool Name="Redo" /> 
                            <telerik:EditorTool name="FindAndReplace" shortcut="CTRL+F"/> 
                            <telerik:EditorTool Name="InsertDate" /> 
                        </telerik:EditorToolGroup> 
                    </Tools> 
               </telerik:RadEditor> 


Can you tell me how to code this so it just works every time? I don't need drag-and-drop, I just need a solution that works reliably.

What should the databind look like on the RadEditor?
What should the UpdateParameters (or the whole SqlDataProvider) look like?
Is there an alternative to using the FormView that I can just wire up myself?

Thanks!

Rumen
Telerik team
 answered on 19 Mar 2009
3 answers
149 views
Hai,
I we want to see the preview of all items in a row inside the grid itself, what can we do?
Like when we click the Edit button we see it in text boxes
Plz Help.

Kollam2003
kollam2003
Top achievements
Rank 1
 answered on 19 Mar 2009
1 answer
82 views
Hi

It appears that VisibleRangeStart and VisibleRangeEnd are readonly in Q1 2009, so how do I set these properties?

I want to set the to and from date displayed in month view.

Best Regards
Thomas Kristensen
Peter
Telerik team
 answered on 19 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?