Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
55 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
87 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
190 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
3 answers
289 views
hi i dynamically create RadComboBox and fill items then set SelectedItem if the SelectedItem Exist on the database
next time i click another link on again i clear all dynamic items again i create dynamic controls
but the problem is second time created Combobox holds the selectedItem of First time created Combobox
how to solve this problem?
Princy
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
362 views

Iam using a telerik RadGrid and I want to check if GridDataItem is in edit mode or not

Using javascript .

I can handle this using VB but I want to do it on Client Side.

If anyone can tell me also how to loop through all Items in the Grid and get selected item

using JavaScript.

I'm stuck Here .. Any Help Please ... I will be grateful.

2) I have a problem with OnCommand function in Javascript

I have a commandItemTemplate in radgrid.

and I add a client event: <ClientEvents OnCommand="OnCommand" />

Function: function OnCommand(sender, args) { if (args.get_commandName() == 'EditSelected') { ....}

The OnCommand doesn't fire on any of the commands in the CommandItemTemplate , on the other hand , it fires on other commands like (Edit,Update,Delete,...).

I don't know why?? I need Help Please.

Shinu
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
110 views
Hello all,

I am using Telerik radgrids to display information and within the control I am getting the following error on all the elements

"Type 'Telerik.Web.UI.GridRowIndicatorColumn' does not have a public property named 'FilterControlAltText'."  I am also seeing issues like radgrid is not a known element as well as other controls?

Thanks Caleb

Iana Tsolova
Telerik team
 answered on 13 Jan 2012
1 answer
105 views
Dear Telerik Team,

I am trying to  have my RadGrid to export as Excel and I am seeing following bugs with the same:

  1. There are a few dynamic columns added in the dataTable. Whilst the screen display is fine, the excel file shows the data in the dynamic columns but the grid headers are missing for those columns.
  2. A couple of grid columns has hyperlink. They are incorrectly hyperlinked as C:/Documents and settings/~/details.aspx 

Can you help out with a fix or workaround for these RadGrid Excel bugs?
Princy
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
145 views
Hi, 
I have a Radgrid controls  ~ 60 columns and  50-100 rows.These data are fetched from multiple SQL Server tables and binded to grid using item_databound and Need Data Source.  
I want to implement adding new records to the Grid. The issue is that I need to display controls for inserting new values in between existing rows, so user can see before and after records while inserting the new one.

Please advise me what is the best practice for implementing this scenario? 

Thanks.

Shinu
Top achievements
Rank 2
 answered on 13 Jan 2012
1 answer
78 views
Hi,,,

I have some quires  reagrding Structre columns
First is these grid columns always automatically generated or not..
another is can we use thsese column as user defined column type in grid or not.
1) GridRowIndicatorColumn: its sets automatically when we set allow resizing property to true.but incaseautogeneratedcolumn property set to false still this column showing at the begining of grid.Another issue is like  that if we dont set allow resizing property but using  GridRowIndicatorColumn  class  directly as a user defined column then the column is not visible at all.So can we use GridRowIndicatorColumn class directly or not.
2)GridGroupSplitterColumn: it sets automatically when grouping enable,to facilitate the expand/collapse functionality.But incaseautogeneratedcolumn property set to false still this column showing at the begining of grid.Another issue is like  that if we dont set grouping expression property but using  GridGroupSplitterColumnclass  directly as a user defined column then the column is not visible at all.So can we use GridGroupSplitterColumnclass directly or not.
3)GridExpandCoulmn: same like ....

Please give some suggestions to clarify thsese issues.
Please share some demos\samples  where  we are using direcltly GridRowIndicatorColumn,GridGroupSplitterColumn and GridExpandCoulmn  as users defined column type.
Shinu
Top achievements
Rank 2
 answered on 13 Jan 2012
4 answers
157 views
Hi,

I need to create a template to be applied for all the days. Is it possible to do so?
I know the concept of SpecialDays, which we can define the template for 'individual' day. But is there any way for me to define the template to be applied for all the days, instead of adding all the days to the SpecialDays.

Really appreciate your help!
Larissa
Top achievements
Rank 1
 answered on 13 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?