Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
86 views
Hello
I have a problem to display Telerik control in design mode en Visual stuio 2008.
I am working on VS2008 (Windows Vista).

Some control my be showed like: Spell Check...
but can't display other like: RadChart, RadComBox, RadAjaxPanel.
It display error like: Failed te create designer ...

Look at the picture attached.

thx to help.
Pavlina
Telerik team
 answered on 13 Nov 2009
1 answer
132 views
I have question to the spinbuttons.

Is there any option that I can set a increase/decrease value by 0.01 or 0.1.

Default is 1.0 - how can I change it if this is available?
Shinu
Top achievements
Rank 2
 answered on 13 Nov 2009
1 answer
84 views
I'm creating a plain html table that isn't really suitable for a RadGrid, but I'd like to be able to use the FormDecorator to style my table as if it were a RadGrid.

I've played around with the css classes on the table, and it seems to look fine when I have a RadGrid accompanying the table - however, if I remove the RadGrid, the stylesheet for the RadGrid is no longer included, leading me to believe that the FormDecorator will only include css files for the controls found on that page.  No RadGrid, no RadGrid css.

Is it possible to force the FormDecorator to include the RadGrid css file even if there isn't a RadGrid on the page?  At the moment I'm creating a RadGrid and hiding it in a hidden div, but I'd prefer a solution where I can remove the RadGrid entirely.

Anyone know if this is possible?

Thanks,
Matt
Martin
Telerik team
 answered on 13 Nov 2009
2 answers
91 views
How do you hide the red x cancel image from an InPlace RadGrid form?
Princy
Top achievements
Rank 2
 answered on 13 Nov 2009
1 answer
140 views
Hi,

How can I create the grid row header text and column header text from the values in database as shown below:

 

CHC

ROL

PAC

DAC

CHC

 

12

15

18

ROL

 

 

20

20

PAC

 

 

 

25

DAC

 

 

 

 

 
Cells in yellow color need to be editable. Price entered by the user will be stored in database.

The DB Table (ROUTEPRICETABLE) is as follows:
RoutePriceID     StartCityCode    EndCityCode    Price
1                                  CHC                ROL               

2                                  CHC                PAC

3                                  CHC                DAC

4                                  ROL                PAC

5                                  ROL                DAC

6                                  PAC                DAC


So the price field data which is editable will go into db field Price. I would really appreciate if you could make a small sample for showing how to do it? I am using RadGrid for telerik controls version .net 3.5. with sql server 2005.

Thanks
Syed.

So the price field data which is editable will go into db field Price. I would really appreciate if you could make a small sample for showing how to do it? I am using RadGrid for telerik controls version .net 3.5. with sql server 2005. ThanksSyed.
Johny
Top achievements
Rank 1
 answered on 13 Nov 2009
9 answers
393 views
Hello,

First off I want to thank you for the great tools and functionality that Telerik delivers.

Now on to my problem/question.

I am using the code from http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx to the tee except for the database it is pulling from.  This demo allows you to drag and drop from the left table to the right table.  I want to be able to drag and drop between the two grids.

How would I go about this functionality.  I have read the forums quite extensively and haven't found a simple solution. 

Any help would be greatly appreciated.
Carl
Telerik team
 answered on 13 Nov 2009
2 answers
103 views
Hi,

In my application I have a radsplitter and 2 radmenus. On at the top of the screen (running horizontal) and the other in a radpanel (vertical). I use the sunset skin in a radskinmanager, and for some reason some of the menu items are highlighted as if it got focus or even selected. I have tried this will "forest" and the same thing. 

What is wrong? Am I missing something?
juststarting
Top achievements
Rank 2
 answered on 12 Nov 2009
1 answer
101 views

                <DetailTables> 
                    <telerik:GridTableView Name="ParentFunctions" AllowSorting="true" Width="100%"   
                        AutoGenerateColumns="false" DataKeyNames="Id"  DataSourceID="RolesGridDetailsDataSource" 
                        HierarchyLoadMode="Client" HierarchyDefaultExpanded="true">  
                          
                        <SortExpressions> 
                           <telerik:GridSortExpression FieldName="FeatureName" SortOrder="Ascending" /> 
                        </SortExpressions> 
                  
                        <Columns> 
                            <telerik:GridBoundColumn HeaderText="<%$ Resources:AdministrationLanguage, Feature %>" UniqueName="FeatureName" DataField="FeatureName" SortExpression="FeatureName" ItemStyle-Width="50%" HeaderStyle-Width="50%"/>  
                            <telerik:GridTemplateColumn HeaderText="<%$ Resources:AdministrationLanguage, Locked %>">  
                               <ItemTemplate> 
                                    <asp:CheckBox ID="LockedCheckBox" OnCheckedChanged="UpdateRoleFunction" runat="server" checked='<%# Eval("Locked") %>' ></asp:CheckBox> 
                               </ItemTemplate>   
                            </telerik:GridTemplateColumn> 
                            <telerik:GridTemplateColumn HeaderText="<%$ Resources:AdministrationLanguage, PermissionLevel %>">  
                                <ItemTemplate> 
                                    <telerik:RadComboBox ID="ActionRadComboBox" runat="server" Width="100px" style="cursor:pointer" OnClientSelectedIndexChanging="ManageRolesView_SelectedIndexChanging" OnClientSelectedIndexChanged="ManageRolesView_OnSelectedIndexChanged"  /> 
                                </ItemTemplate> 
                            </telerik:GridTemplateColumn> 
                        </Columns> 
                          
                        <DetailTables> 
                            <telerik:GridTableView Name="ChildFunctions" AllowSorting="true" Width="100%" AutoGenerateColumns="false" DataKeyNames="Id">  
                                <SortExpressions> 
                                   <telerik:GridSortExpression FieldName="FeatureName" SortOrder="Ascending" /> 
                                </SortExpressions> 
                                  
                                <Columns> 
                                    <telerik:GridBoundColumn HeaderText="<%$ Resources:AdministrationLanguage, Feature %>" UniqueName="FeatureName" DataField="FeatureName" SortExpression="FeatureName" ItemStyle-Width="50%" HeaderStyle-Width="50%"/>  
                                    <telerik:GridTemplateColumn HeaderText="<%$ Resources:AdministrationLanguage, Locked %>">  
                                       <ItemTemplate> 
                                            <asp:CheckBox ID="LockedCheckBox" OnCheckedChanged="UpdateRoleFunction" runat="server" checked='<%# Eval("Locked") %>' ></asp:CheckBox> 
                                       </ItemTemplate>   
                                    </telerik:GridTemplateColumn> 
                                    <telerik:GridTemplateColumn HeaderText="<%$ Resources:AdministrationLanguage, PermissionLevel %>" > 
                                        <ItemTemplate> 
                                            <telerik:RadComboBox ID="ActionRadComboBox" runat="server" Width="100px" style="cursor:pointer" OnClientSelectedIndexChanging="ManageRolesView_SelectedIndexChanging" OnClientSelectedIndexChanged="ManageRolesView_OnSelectedIndexChanged"  /> 
                                        </ItemTemplate> 
                                    </telerik:GridTemplateColumn> 
                                </Columns> 
                            </telerik:GridTableView> 
                        </DetailTables> 
                    </telerik:GridTableView> 
                </DetailTables> 
Above is a snippet of the GridTableView inside of the RadGrid.

We have a problem when we set the HierarchyLoadMode to Client on a GridTableView and have a RadComboBox inside of the ItemTemplate, it does not hide the RadComboBox. If we have it set to server bind, it is extremely slow and unnecessary, so we would like to have this set to Client. Can you please direct us what to do to get this to work properly, the latest Q3 didn't seem to fix this problem.

.

 

 

 

 

 

 

 

 

 

 

 

Mike
Top achievements
Rank 1
 answered on 12 Nov 2009
1 answer
53 views

I have a master page which is inherited by one or more child pages. For a button click event in the master page, a popup should be displayed and the background of the Current Child page must be disabled/Mocked. I displayed the radwindow as a popup using javascript by calling method "radopen()".Now i want to disable the Current Child page.

Schlurk
Top achievements
Rank 2
 answered on 12 Nov 2009
1 answer
137 views
We have an app that uses the TabStrip and RadMultiView (version 2009.1.527.35) to present several pages of information to the user that they can change.  We are using a set of servers via NLB, and are using InProc Session State to keep track of the user's profile and settings.  IP Affinity is turned on so that the user is not redirected to a different server (we even brought the other servers down to test this).

If the user goes to any tab, changes a set of controls on a single page, when they submit the changes/form, the process works fine.  The script updates the backend Oracle database correctly, and returns the user to the proper page. 

If however, the user makes changes on two or more tabs and hits submit, the session state is lost and forces the user to log back in.  If this occurs, they lose the effort that they have gone through.  If they again change more than one tabs' worth of components, this process will repeat.  If they resort to changing one tab at a time, it works fine.

We are not sure if it is causing an App Pool recycle or if the object just "vanishes".  At this point we are hoping that this may be something someone else has experienced and has a fix other than using cookies or a database to store data. 
Walter Harris
Top achievements
Rank 1
 answered on 12 Nov 2009
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?