Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
140 views
Hi,

Here is my problem. When I try and deploy a website with RadSpell, I keep on a message (Popup) stating that the dialogs needs to be added to the webconfig.

My website works fine locally. Here is what I have. Please tell me what I am missing:

1. Website written in C# and .Net 3.5 SP1
2. App_Data folder with the relevant dictionary
3. App_GlobalResources with the RadSpell.Dialog.resx file
4. I have create a Web Setup Project which is my deployment method.
5. Point 4 recreates the site with everything except the App_GlobalResourcesfolder. Not sure if this is why.
6. Have configured my Web.config with all the HttpHandlers and with Handlers as shown in previous posts.

All other controls work fine, except when I click on the standard "Spell Check" button.

Any help would be greatly appreciated.

Thanks,

Henry
Henry
Top achievements
Rank 2
 answered on 24 May 2009
1 answer
51 views
 Hi,
    I guess I made my first mistake.
    I didnt know about the hotfix product.
    I uninstalled 2008 3.1125.35. I then installled my new license 2009.1.402.35. All seemed to go smoothly. Seems to have installed my toolbox ok. And, Installed the new tool.ui dll and the xml to my website bin and reference.
   My problem is that I had developmed several grid applications. The first thing I noticed is that the SkyBlue skin was gone. That seems to be ok because i saw thee post about the 2009 skins now being compatible with the Q3 product. But, there are other little issues I have seen. My first thought is maybe I better re-install with the hotfix first, then see if there is anything at odds.. 
   Is there a way to back out of this install of my new license and install everything again properly with the hotfix ?  I do still have my demo telerik.ui dll, but what goes away with the un-install is gone. I basically developed apps with the demo version of RadGrid.
   Since I overlooked the hotfix the first time, I just want to make sure I cover my bases during this next attempt ? Im wondering if I should download and install the demo version again so I can apply the hotfix ?
 Glad to get my license, thanks for a great product !!  
     
IQworks
Top achievements
Rank 1
 answered on 24 May 2009
1 answer
202 views
Hi,

I have followed the instructions from : http://www.telerik.com/support/kb/aspnet-ajax/editor/creating-a-simple-link-manager.aspx
to create a 'Simple Link Manager'.

This works fine, however, once a link has been added, if you right click on the link and select 'Set Link Properties', the editor trys to open the full telerik Link Manager, which is a problem as we do not wish to allow links to be edited in that way.

Is there a way to redirect that menu option to the simple link manager, or to remove the edit option altogether?

Regards,

Sean Duffy.
Rumen
Telerik team
 answered on 23 May 2009
2 answers
101 views

Hi! I have a problem with the RadGrid, I am show a lot data en grid using paging, but if I select another page the radgrid show-off

i hope your help.

This is my code:

 RadGrid1.DataSource = data.Query("NoTarjeta", selectsNoTarjeta, "NoTarjeta", toSearch, "%");
RadGrid1.DataBind();

The method Query is:

public DataSet Query(String type, String selects, String paramWhere, String compare, String comodin)
{
List<string> byTable = new List<string>();

  String Query = null;



byTable=searchTables(type);

foreach (string table in byTable) // Loop through List with foreach
{
Query = "SELECT " + selects + " FROM " + table + " WHERE " + paramWhere + " LIKE '" + compare + comodin + "' UNION ALL " + Query;
}
Query = Query.Substring(0, Query.Length - 10);

ConnectToDatabase("localhost", 3306, "data", "root", "xxx");
MySqlDataAdapter adapter = new MySqlDataAdapter(Query, Userconection);
adapter.Fill(Results);
Userconection.Close();

return Results;
}

<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" height="200px" 
width="994px">
<asp:TextBox ID="txSearch" runat="server" Width="343px"></asp:TextBox>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
<br />
<telerik:RadGrid ID="rgResults" runat="server" AllowPaging="True" 
AllowSorting="True" Skin="Telerik">
</telerik:RadGrid>
</telerik:RadAjaxPanel>

Brygom
Top achievements
Rank 1
 answered on 23 May 2009
0 answers
99 views
Disregard. Issue solved with radcodeblock.


Karl Wilkens
Top achievements
Rank 1
 asked on 23 May 2009
2 answers
79 views
Hi.
I am using Radgrid in my Project and for some records the size of the text is so big that it can not fit in the Respective Block of that Grid. So I wanted to Know that is there any property using which I can put the  scroll bar for that perticular column of that grid. I dont Want The scroll  bar for Entire Grid.
Please  Let me Know if anyone had the solution for this problem as early as possible
Thank You.
rahul
Top achievements
Rank 1
 answered on 23 May 2009
2 answers
129 views
Hi

I'm using Q3 2008 release

I am trying to copy your hierarchy with template demo and I can't get it to work.

Firstly when I expand an item in the master table to show the tab strip and its associated multi page control the first tab/page in the control is not displayed even though i have this in the asp.net code.

<telerik:RadTabStrip runat="server" ID="TabStrip1" MultiPageID="Multipage1"

 

 

SelectedIndex="0">


If i click on the tab nothing happens. If i click on another tab and then click back on the first tab the contents of the tab are displayed.

Here is my code. It uses the northwind database so you should just be able to copy and page it hopfully

 

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server">

 

 

 

 

 

</asp:ScriptManager>

 

 

 

 

 

<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="sqldatasource1">

 

 

 

 

 

<MasterTableView DataKeyNames="CustomerID" >

 

 

 

 

 

<ExpandCollapseColumn Visible="True">

 

 

 

 

 

</ExpandCollapseColumn>

 

 

 

 

 

<NestedViewTemplate>

 

 

 

 

 

 

<telerik:RadTabStrip runat="server" ID="TabStrip1" MultiPageID="Multipage1"

 

 

 

 

 

SelectedIndex="0">

 

 

 

 

 

<Tabs>

 

 

 

 

 

<telerik:RadTab runat="server" Text="Orders" PageViewID="PageView1">

 

 

 

 

 

</telerik:RadTab>

 

 

 

 

 

<telerik:RadTab runat="server" Text="Contact Information" PageViewID="PageView2">

 

 

 

 

 

</telerik:RadTab>

 

 

 

 

 

<telerik:RadTab runat="server" Text="Statistics Chart" PageViewID="PageView3">

 

 

 

 

 

</telerik:RadTab>

 

 

 

 

 

</Tabs>

 

 

 

 

 

</telerik:RadTabStrip>

 

 

 

 

 

<telerik:RadMultiPage runat="server" ID="Multipage1" RenderSelectedPageOnly="false">

 

 

 

 

 

<telerik:RadPageView runat="server" ID="PageView1">

 

 

 

 

 

<asp:Label ID="Label1" Font-Bold="true" Font-Italic="true" Text='<%# Eval("CustomerID") %>'

 

 

 

 

 

runat="server" />

 

 

 

 

PageView 1

 

 

 

 

<telerik:RadGrid runat="server" ID="RadGrid2">

 

 

 

 

 

<MasterTableView DataSourceID="SqlDataSource2">

 

 

 

 

 

<Columns>

 

 

 

 

 

<telerik:GridBoundColumn DataField="OrderDate"></telerik:GridBoundColumn>

 

 

 

 

 

</Columns>

 

 

 

 

 

</MasterTableView>

 

 

 

 

 

</telerik:RadGrid>

 

 

 

 

 

 

<asp:SqlDataSource ID="SqlDataSource2" ConnectionString="Data Source=SQLExpress;Initial Catalog=Northwind;Integrated Security=true;"

 

 

 

 

 

ProviderName="System.Data.SqlClient" SelectCommand="SELECT * FROM Orders Where CustomerID = @CustomerID"

 

 

 

 

 

runat="server">

 

 

 

 

 

 

<SelectParameters>

 

 

 

 

 

<asp:ControlParameter ControlID="Label1" PropertyName="Text" Type="String" Name="CustomerID" />

 

 

 

 

 

</SelectParameters>

 

 

 

 

 

 

</asp:SqlDataSource>

 

 

 

 

 

</telerik:RadPageView>

 

 

 

 

 

</telerik:RadMultiPage>

 

 

 

 

 

</NestedViewTemplate>

 

 

 

 

 

 

</MasterTableView>

 

 

 

 

 

</telerik:RadGrid>

 

 

 

 

 

 

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="Data Source=SQLExpress;Initial Catalog=Northwind;Integrated Security=true;" SelectCommand="select * from customers"

 

 

 

 

 

 

></asp:SqlDataSource>

 


Many thanks

 

andrea

 

andieje
Top achievements
Rank 1
 answered on 22 May 2009
6 answers
131 views
i have a setup where i dynamically add tabs and the default auto-wrap is nice, however, i'm having an issue with the end tab being cut off (before the wrap). is there any way to force the wrap at a certain width without cutting off tabs?
Drew
Top achievements
Rank 1
 answered on 22 May 2009
1 answer
144 views
I have a grid where I am using a stored proc in NeedsDataSource to populate the grid - the stored proc has support for custom paging, sorting and filtering. 

The paging and sorting appear to work perfectly on their own, however, when combined with filtering I have an issue.  The initial filter works as expected by hooking into the ItemCommand event:

Protected Sub rgPromos_ItemCommand(ByVal source As ObjectByVal e As GridCommandEventArgs) Handles rgPromos.ItemCommand 
        If e.CommandName = RadGrid.FilterCommandName Then 
            Dim filterPair As Pair = CType(e.CommandArgument, Pair) 
            Dim colName As String = filterPair.Second.ToString() 
 
            If colName = "PromotionCode" Then 
                Dim tbPattern As TextBox = CType((CType(e.Item, GridFilteringItem))(colName).Controls(0), TextBox) 
                PromoCodeFilter = tbPattern.Text 
                PromoCodeFilterOperator = filterPair.First.ToString() 
                rgPromos.Rebind() 
            End If 
End Sub 

PromoCodeFilter and PromoCodeFilterOperator are properties I use to store the information from the filter - I then pass these values into my stored proc and everything is right in the world.  

The problem is after that initial filter, if I change the grid page the filter values aren't properly passed into the stored procedure.  I assume that on the paging event or something I need to check to see if any filters had already been applied.  Can anyone point me in the right direction? 
Justin Heath
Top achievements
Rank 2
 answered on 22 May 2009
5 answers
126 views
hi

i have a grid using the nestedview template , but for some reason the template only displays on the last item on the page , all the others it seems the template doesnt exist , has anyone come across this before ?

Peter.
Rosen
Telerik team
 answered on 22 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?