Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
203 views

Dear Support,

I've issue with the image button. The button image blinks when the user hover over the Button, then when the user move out from the button the image appears again.

Please find the attached images.

Here is my markup code for the button.

 

<rad:RadButton ID="btnAccountStatusHistory" runat="server" Text="Status History"
           OnClientClicking="OnAccountStatusHistoryClientClicking">
           <Icon PrimaryIconUrl="~/_Images/ButtonsIcons/History.gif" PrimaryIconLeft="4" PrimaryIconTop="4" />
</rad:RadButton>

Your help is really appreciated to solve this weird behavior.

Slav
Telerik team
 answered on 13 Jan 2012
1 answer
120 views
I am using the RadComboBox to display a list of employees, along with their employee numbers (in the same field, in parentheses). The employee numbers have a fixed two character prefix ("NB") followed by 6 digits ("NB000342", "NB191561", etc). So the field in the combo drop down looks like "Smith, John (NB117654)". I am loading the full list on-demand. The filtering works fine until you type a digit, then it returns nothing. It matters not whether you type only digits or whether you mix digits and text; the presence of any digit(s) results in no matches. Is there a setting that I am missing that enables alphanumeric filtering?
Mark
Top achievements
Rank 1
 answered on 13 Jan 2012
0 answers
101 views
Hi everyone/ I'm currently using RadScheduler to create my own Scheduler. For better user experience, I used Web service binding, but only the GetAppointments is invalid. I use my own Advance Template with no resource, only passing extra attributes. 
But eveytime when I Update or Insert, a message box appears with the text "Invalid web service call, missing value for parameter 'appointmentData'".
Hoang Lam
Top achievements
Rank 1
 asked on 13 Jan 2012
1 answer
86 views
Hi,

In my page I have telerik grid, in that some rows are repeated. I need to show the repeated rows in group panel. If I add the group expression in my code, the group panel will come for all the rows in grid. Is it possible to put the group panel only for the repeated data(rows) in the grid. Thanks in advance.

Thanks,
Akki
Jayesh Goyani
Top achievements
Rank 2
 answered on 13 Jan 2012
10 answers
219 views
Hi I have MasterPage/Content page scenario the Content page loads a ModalPopup using the AjaxControlToolkit that loads a user control that has a RadGrid inside a FormView controls EditItemTemplate. The problem is that the FilterMenu/Group By etc only shows up behind the modal popup and is not click able. The same issue for that pager of the RadGrid in that it's Page size combo is not selectable.

I have tried the following:-
1). In the RadGrid's Init event setting the RadGrid style to a higher z-index than the popup
2). changing the FilterMenu and HeaderContextMenu CssClass to one with a higher z-index
3). Setting the RadComboBox in the pager to have a style with a higher z-index

but none of this works. What do I try next??
Marin
Telerik team
 answered on 13 Jan 2012
6 answers
398 views
Hello,

I have a grid with group headers. Grid has 3 columns. 2 columns are right aligned while one is left aligned.

I wish to have group header text also right aligned.

Please let me know I can achieve the same ?

Please see attached image for more info.
Dhilip
Top achievements
Rank 1
 answered on 13 Jan 2012
1 answer
338 views
Hey peeps,

I've got a strange problem happening. We're busy with a website that consists of 2 sections that accesses the same RadGrid. The first section is based on the programme selection by the user (e.g. Home Page -> Programme -> Sub Programme -> Tools Tab). The second section can be accessed directly (e.g. Home Page -> Resources). Both pages are different as the Resources page is a summary of all documents and the programme page contains documents related to that specific programme. On both pages we have a RadGrid that works great.

Now for the problem. On that RadGrid there is an item template that contains a button to allow the user to view the contents of the selected document category. Once clicked, a new RadWindow is opened containing a RadGrid, listing all the documents in that category. Both pages (programme and resources) access the same page that contains the radgrid displayed in the radwindow (lets call it ContentPage).

When the ContentPage is opened from the Programme page, the RadGrid shows 100%. However, when the same ContentPage is opened from the Resources page, the RadGrid does not show. Any ideas?
Tsvetina
Telerik team
 answered on 13 Jan 2012
1 answer
84 views
Hi there... I currently use a JQuery tag control JQuery Tagit

Its not very stable and i would prefer to use a asp.net Ajax solution.

I was hoping that the RadComboBox would allow me to click on multiple items. This was the closest thing i could find http://www.telerik.com/community/code-library/aspnet-ajax/combobox/combobox-with-checkboxes-and-select-all.aspx

Which is not quite what i want and is a little more complex than i wish to do at this point.

Is there perhaps another RadControl that i am missing that can handle functionality like the JQuery TagIt control, that i can use?

Any ideas would be great!

Duncan
Dimitar Terziev
Telerik team
 answered on 13 Jan 2012
0 answers
110 views
I have dotnetnuke 6.0 and uesed telerik product version 2011.1.051935 but ajax control can not work in IE.
Help me.
Best regards,
TuanTH
Top achievements
Rank 2
 asked on 13 Jan 2012
4 answers
242 views
Hi,
I am using the LoadOnDemand feature of the RadComboBox. It has been working on the VS development server and IIS6 but is not working after migrating to IIS7 in Classic mode.

When I type into the combo box a Javascript alert pops up with the message "The server method "LoadDropDown" failed".

My combo box is created like this:
var combobox = new RadComboBox 
                { 
                    WebServiceSettings = { Path = "~/Services/MyWebService.asmx"Method = "LoadDropDown" }, 
                    EnableLoadOnDemand = true
                    MarkFirstMatch = true
                    AllowCustomText = true
                    ShowDropDownOnTextboxClick = false
                    ID = "rcb"
                    MaxLength = 255
                    EnableEmbeddedSkins = false 
                }; 

The application is running in a pool using the classic mode, not Integrated pipeline mode.
In IIS7, the handler mappings have *.asmx paths mapped to  the handler IsapiModule.
According to some stuff on the web this could be a permissions error but I have tried giving full permissions to Network Service and it does not work.

All other AJAX requests are working fine.

In the web.config I have:
<httpHandlers> 
    <remove path="*.asmx" verb="*" /> 
    <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> 
     etc... 

My asmx file's code looks like this:
namespace MyWebsite.Services 
 
[WebService] 
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] 
[ToolboxItem(false)] 
[ScriptService] 
public class MyWebService : WebService 
 
    [WebMethod] 
    public RadComboBoxItemData[] LoadDropDown(object context) 
    { 
    var currentData = (IDictionary<stringobject>)context; 
        var currentText = (string)currentData["Text"]; 
 
        var result = new List<RadComboBoxItemData>(); 
        etc. 
        etc. 
        return result.ToArray(); 
     } 
 

Hope you can help
Michael
Top achievements
Rank 2
 answered on 13 Jan 2012
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?