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

I am currently using a telerik:RadButton and encountering some cross-browser issues with Chrome. Please see the screenshot for a better view of the problem.

I've also provided a code snippet of the solution :
<%--Component--%>
<td style="width: 192px;">
<table cellpadding="0" cellspacing="0" width="100%">
    <tr>
        <td>
            <telerik:RadButton ID="chkBoxComponent" runat="server" ToggleType="CheckBox" ButtonType="StandardButton"
                SkinID="filterCheckBox" AutoPostBack="false">
                <ToggleStates>
                    <telerik:RadButtonToggleState Text="Exclude Components Filter" PrimaryIconCssClass="rbToggleCheckboxChecked" />
                    <telerik:RadButtonToggleState Text="Include Components Filter" PrimaryIconCssClass="rbToggleCheckbox" />
                </ToggleStates>
            </telerik:RadButton>
        </td>
    </tr>
    <tr>
        <td>
            <asp:ListBox ID="listBoxComponent" SkinID="listboxFilter" runat="server"></asp:ListBox>
        </td>
    </tr>
</table>
</td>


I have also debugged it by using Chrome's Inspect Element feature and found that the following css class is causing the issue. The problem is that if I make any alterations to it, other rad controls will not display properly as I believe it's a key class to all the Rad Controls.

.rbSkinnedButton {
padding-right: 2px;
}


Any suggestions?
Thanks

Regards,
Navnit
Navnit
Top achievements
Rank 2
 answered on 26 Aug 2011
10 answers
377 views
Hi,
   We are looking for a flexable controls for asp.net, and we found the Telerik RadControls!
It's so amazing and we all love it!
   The only one thing that we worry abount is the size( >16MB)!!
   For example,If we just use a ComboBox control of Telerik RadControls in a page, we need to load the Telerik.Web.UI.dll to the memory first?
   And if that's yes, int that case thousands of users visit the page in the same time, our server can take it?
   In a word , is the Telerik RadControls work well in the distributed application?
  I'm looking forward to your reply.
Thanks!
Gimmik
Top achievements
Rank 1
 answered on 26 Aug 2011
7 answers
81 views
Hi Telerik Team,


 Its been a great Pleasure to Work with u r Telerik Controls.i have been using Telerik Controls from past one year and i feel so comfortable with u r controls.Thanks for that

My issue here is that When i'm trying to hide a EditcommandColumn through Code behind, its changing the Alignments  of the other columns..can u please help me in this issue

Code i used in Item Data bound Event
 if (e.Item is GridEditableItem && !(e.Item.IsInEditMode))
 {
            GridDataItem dataItem = e.Item as GridDataItem;
            dataItem["EditColumn"].Visible = false;
 }


Thanks,
Vijay
Pavlina
Telerik team
 answered on 26 Aug 2011
4 answers
202 views
I have tried searching through threads for 20 minutes on how to use the new FilterTemplate functionality of the RadGrid to apply google type filters to my columns, but can't find anything.

Is there any working example of the google type filtering using the FilterTemplate ?

I would prefer this as my Grid has several non text columns that the google filter does not really apply to, and we would like to use normal filter functionality for that, but wire up the google suggest type for the text fields.

Also to create the grid declaratively with sqldatasource is big bonus.

Any help?
Pavlina
Telerik team
 answered on 26 Aug 2011
3 answers
98 views
I had copied the code for enabling google like filter from this URL Google Like Filter Demo
it works fine it we didn't specified any Data bound column in Design time. My requirement is i have Design time Bound Column's and i am binding data to Grid. When i tried to implement Google like filtering its not working as i want. Please have a look on JPG image attached to this post.

red crossed filter is not required
green color filter which i am generating using overriding template column

its creating extra columns in grid for goolge like filtering. Its not overriding existing filter column
Pavlina
Telerik team
 answered on 26 Aug 2011
5 answers
207 views
Hello,

I would like to know if ASP.NET Ajax Q1 2011 has still the Visual Studio 2005 support? Or it has been dropped?

On my Windows, Visual Studio 2005 and SQL Server 2005 are installed, with Framework .NET 2.0.
I wanted to install this new Q1 2011 and what was my surprise that the installer requieres the Framework .NET 3.5 or 4 to be running.

If Q1 2011 has still Visual Studio 2005 support, what to do to install it without installing the Framework .NET 3.5 or 4?

Thank your for your answer,
Alain
Erjan Gavalji
Telerik team
 answered on 26 Aug 2011
2 answers
204 views
I want to try and use a list of objects as my data source where the object contains multiple fields and I am populating the listbox programmatically.  If I set the Datasource of my list box to the object how can I set what fields actually show up in the listbox I tried using templates but I couldn't get that to work.

List<Keyword> resultList = keywordService.FindKeywords();
            canonicalSearchResults.DataSource = resultList;
            canonicalSearchResults.DataBind();

I want the Keyword's name field to appear in the textbox but be able to keep the datasource as a list of keywords so that I can later access them. Right now it calls the tostring method and displays the result but the toString method is different than what I want displayed
ted
Top achievements
Rank 1
 answered on 26 Aug 2011
1 answer
1.2K+ views

Hello Telerik,
We are encountering an error that is very perplexing.
we found how to correct this,
if you would indicate why this fix works.  This was extremely hard to
find.  Is there a best practice as to how this section should be formatted in web config going forward...to avoid this.

Removing this block bypasses the error below, but it has to do with - Telerik.Web.UI.Skins.Web20.Grid.Web20.css:

<

 

 

telerik:RadStyleSheetManager ID="RadStyleSheetManagerPrePaidSettlements" runat="server">

 

 

 

<StyleSheets>

 

 

 

<telerik:StyleSheetReference Name="Telerik.Web.UI.Skins.Web20.Grid.Web20.css" Assembly="Telerik.Web.UI" />

 

 

 

</StyleSheets>

 

 

 

</telerik:RadStyleSheetManager>


in the web config.....to fix
move this entry below after the 2nd verb entry and the error noted will be gone.

 

<

 

 

add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false"/>

 

 

 

 



<

 

 

httpHandlers>

 

<

 

 

remove verb="*" path="*.asmx"/>

 

<

 

 

add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

--place here..
<

 

 

add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>

 

<

 

 

add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>

 

<

 

 

add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false"/>

 

<

 

 

add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false"/>

 

<

 

 

add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false"/>

 

<

 

 

add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false"/>

 

<

 

 

add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false"/>

 

<

 

 

add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>

 

</

 

 

httpHandlers>

 




System.IO.FileLoadException: The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)
   at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMarkHandle stackMark, Boolean loadTypeFromPartialName, ObjectHandleOnStack type)
   at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
   at System.RuntimeType.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
   at System.Type.GetType(String typeName)
   at Telerik.Web.UI.WebResource.Exists(HttpContext context, String path, String applicationPath)
   at Telerik.Web.UI.RadStyleSheetManager.OnPreRender(EventArgs e)
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Control.PreRenderRecursiveInternal()
   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
Simon
Telerik team
 answered on 26 Aug 2011
3 answers
171 views
Similar to how a RadToolTipManager is used to insert a record into a RadGrid, I have a RadListView where the user clicks a button on a record to load a tooltip to see more info about the record, including some function buttons (namely, the "Delete" button).  Because other controls update both the listview and the tooltipmanager via ajax, both controls are included in RadAjaxManagerProxy ajax settings on the page.  When user clicks "Delete" in the tooltip, the record should be removed from the database, tooltip hidden, and parent listview updated.  Everything is working except for updating the listview.

How do you setup ajax settings so a button in the tooltip (loaded dynamically on tooltipmanager's AjaxUpdate event) can ajax update it's parent control?
Steve
Top achievements
Rank 2
 answered on 26 Aug 2011
5 answers
111 views
Dear Telerik,

We have a problem with the French spellchecker. When spellchecking words with appostrophes, words with single quotes as appostrophe ( ' ) will be seen as error. There are no problems with real appostrophes ( ’ ). The English dictionary allows both of them while the French one doesn't.

Since a vast majority of our users will use the single quote appostrophe in their texts, having to validate and ignore manually all these false positives a gazillion times over and over makes the spellchecking a real pain in the ***. All they're left with is the impression that the spellchecker is buggy and therefore, they won't trust the result... that is, if they got the patience to go through all the spellchecking operation.

Is there a way to fix this?

Thanks in advance.

Philippe
Rumen
Telerik team
 answered on 26 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?