Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
109 views
Hi,

I followed the guidelines to localize the GridView's built-in resources in the file RadGrid.main.resx. Most of the items appear correctly, but some are not: the buttons on the built-in toolbar for exporting to PDF, Word, etc. are all messesd up, see the attached screenshot.
Is there a fix or workaround for this? I haven't found anything on the site about this.
thank you

Pavlina
Telerik team
 answered on 01 Nov 2011
1 answer
115 views
Hi,
I have a customer for which we a contractually bound to deliver a W3C compliant application.

We have used the RadChart on a page which is emmitting the following markup which is non-compliant:
onerror="if(confirm('Error loading RadChart image.\nYou may also wish to check the ASP.NET Trace for further details.\nDisplay stack trace?')
The onerror attribute is not a valid attribute for a div tag.
Can you please provide some guidance as to how we can make this compliant with XHTML Transitional 1.0.
Bartholomeo Rocca
Top achievements
Rank 1
 answered on 01 Nov 2011
1 answer
168 views
Is there any way to make the splitter panel take up the full page? Like Dock = Fill in Win forms.

Currently, I have it set to a particular size and hook into the window resize event. This produces a flicker that doesn't look great.
Dobromir
Telerik team
 answered on 01 Nov 2011
1 answer
58 views
Hello,
I have the problem that is mentioned in this post with RadTreeNodeData object. I'm using "2011.1.519.35"  version of telerik library, and the issue still happend.
There is some workaround or something that I can do to to solve this?

Thanks.
Julio
Princy
Top achievements
Rank 2
 answered on 01 Nov 2011
1 answer
175 views

Hi,

I ahve a treelist with checkboxs.when i select this checkbox ,row colur is changed to gray .how to avoid changing the row clour when selecting the check box ?

Thanks ,
sindu
Shinu
Top achievements
Rank 2
 answered on 01 Nov 2011
1 answer
158 views
How do you use the menu to use image in the upper part and use text which is aligned at the center with the image on top

 <table style="width:90%;">
        <tr>
            <td class="style4">
                &nbsp;</td>
            <td class="style2">
                &nbsp;</td>
            <td class="style3">


    <telerik:RadMenu ID="RadMenu1" Runat="server" Skin="" CssClass="CSMBMenu" 
                    EnableRoundedCorners="True" >
        <Items>
            <telerik:RadMenuItem runat="server" CssClass="menu" 
                HoveredImageUrl="~/Images/building_small_cadre.jpg" 
                ImageUrl="~/Images/building_small.jpg" 
                SelectedImageUrl="~/Images/building_small_cadre.jpg" Text="Bâtisses" 
                Width="83px">
            </telerik:RadMenuItem>
            <telerik:RadMenuItem runat="server" CssClass="menu" 
                HoveredImageUrl="~/Images/locker_small_cadre.jpg" 
                ImageUrl="~/Images/locker_small.jpg" 
                SelectedImageUrl="~/Images/locker_small_cadre.jpg" Text="Casiers" Width="83px">
            </telerik:RadMenuItem>
            <telerik:RadMenuItem runat="server" CssClass="menu" 
                HoveredImageUrl="~/Images/books_small_cadre.jpg" 
                ImageUrl="~/Images/books_small.jpg" 
                SelectedImageUrl="~/Images/books_small_cadre.jpg" Text="Dictionnaire" 
                Width="83px">
            </telerik:RadMenuItem>
            <telerik:RadMenuItem runat="server" CssClass="menu" 
                HoveredImageUrl="~/Images/security_small_cadre.jpg" 
                ImageUrl="~/Images/security_small.jpg" 
                SelectedImageUrl="~/Images/security_small_cadre.jpg" Text="Accès" Width="83px">
            </telerik:RadMenuItem>
        </Items>
    </telerik:RadMenu>
            </td>
            <td></td>
        </tr>
        </table>

Here is the RadMenu but i can't get the text to align in the center, i guess i have to use the right css but dont have a clue on how to do that.
Princy
Top achievements
Rank 2
 answered on 01 Nov 2011
2 answers
233 views
Hi,

When i click an Image button on a radgrid, I got a msgbox to test 

 Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.WebControls.GridCommandEventArgs) Handles RadGrid1.ItemCommand


if e.CommandName = "Release" then

msgbox("Release")

endif

end sub

But when i click i get the following error message.

Invalid postback or callback argument.  Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page.  For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them.  If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.

Thanks
TonyG
Top achievements
Rank 1
 answered on 01 Nov 2011
3 answers
142 views
I need some assistance.

Iam using rad editor 7.2.0.0 .

When ever I am creating a link with an attachment the font size changes to the smallest font (1) after I insert a document. I try to increase the font size to say 3 but it won't allow me.

What can I do to increase the font size of a link after I have inserted the document.

Thanks,

Rumen
Telerik team
 answered on 01 Nov 2011
2 answers
161 views
hi,
i face a problem with rad editor in IE 9.
currently i am using 2011.1.315.40 asp.net ajax version.i put a rad editor in jquery dialog but when i open the dialog i can't  change the content of rad editor and it become a read only.
i also used following syntax:
<meta http-equiv="X-UA-Compatible" content="IE=8" /> but it not work.
i also attached a snapshot.
please give me solution.
thanks in advance
Mahesh
Top achievements
Rank 1
 answered on 01 Nov 2011
1 answer
82 views
Hi,
I am working on creating custom filtering column for RadGrid, my code is largely based on :
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandcombo/defaultcs.aspx?product=grid

But I would like to have a clear filter button attached to each column, and if the button is clicked it will only clear one column instead of all columns. Here is my overrided function 
protected override void SetupFilterControls(TableCell cell)
{
    base.SetupFilterControls(cell);
    cell.Controls.RemoveAt(0);
    RadComboBox combo = new RadComboBox();
    combo.ID = ("RadComboBox1" + this.UniqueName);
    combo.ShowToggleImage = false;
    //combo.Skin = "Office2007";
    combo.EnableLoadOnDemand = true;
    combo.AutoPostBack = true;
    combo.MarkFirstMatch = true;
    combo.Height = Unit.Pixel(100);
    combo.ItemsRequested += this.list_ItemsRequested;
    combo.SelectedIndexChanged += this.list_SelectedIndexChanged;
    cell.Controls.AddAt(0, combo);
 
    ImageButton button = new ImageButton();
    button.ImageUrl = "~/images/delete.gif";
    button.Click += this.button_Click;
    button.CssClass = "ClearButton";
    cell.Controls.AddAt(1, button);
 
    cell.Controls.RemoveAt(2);
}
What should I do inside button_Click handler?

TIA
Princy
Top achievements
Rank 2
 answered on 01 Nov 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?