Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
129 views
I am unable to get MasterTable.get_selectedItems()[i]._itemIndexHierarchical. Instead an empty string is returned. How to get the Row index of the Selected row of RadGrid?
Below is my script:

function RowSelected()
{  
    var grid = $find("<%=CandidatesGrid.ClientID %>");
    
var MasterTable = grid.get_masterTableView();
    var IDArray = new Array(MasterTable.get_selectedItems().length);
    
for (var i = 0; i < MasterTable.get_selectedItems().length; i++)
    {
     alert(MasterTable.get_selectedItems()[i]);
     IDArray[i] = MasterTable.get_selectedItems()[i]._itemIndexHierarchical;
    }
    __doPostBack( "ctl00_ContentPlaceHolder_CandidatesGrid", IDArray );
}
Shinu
Top achievements
Rank 2
 answered on 16 Dec 2011
1 answer
124 views
Hi,

I am trying to create a custom skin for my Combo boxes and I was wondering if its possible to position the arrow key in Combo Box control to the left of the input box. Any help would be appreciated.

I have the Q2 2011 version of RadControls for ASP.NET AJAX installed.

Thanks;
Princy
Top achievements
Rank 2
 answered on 16 Dec 2011
1 answer
85 views

Hi,

Radopen was working correctly with IE6,7 and 8, BUT it is not working with IE9.
i am using 2010.2.929.35 dll version of Telerik . Is this version compatible with IE9 or i need t to upgrade it?
I read in other posts that i can use - meta tag like <meta http-equiv="X-UA-Compatible" content="IE=8" />, is this the
only solution for this?

my js script is looking like this (it is on master page and i make call to it from content pages)

function newWin(url, title, height, width, modal, onClose) {

            var win = radopen(url);
            win.set_height(height);
            win.set_width(width);
            win.set_title(title);
            if (modal == true)
                win.set_modal(true);
            win.center();
            if (onClose != undefined)
                win.add_close(onClose);
            return win;
        }

I will expect your answer for solution of this
Shinu
Top achievements
Rank 2
 answered on 16 Dec 2011
2 answers
229 views
Hello,

I have a grid that uses paging [AllowPaging="true" AllowCustomPaging="true"] so that I can load a page at a time from my database. I would like to also display a horizontal scroll bar around the grid, but the scroll bar is displaying on the outside of my paging bar. This means that my paging bar is inside of the scrolling section, unlike your example linked below.

How can I get the scroll bar around my grid like your example? I'm assuming I may need to do something a little different since I'm using custom paging.
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/frozencolumns/defaultcs.aspx

I dont need frozen columns, but only the ability to add the scroll bar with paging bar at the outside. 

Thanks!!

Shinu
Top achievements
Rank 2
 answered on 16 Dec 2011
1 answer
173 views

 

Hi
I have a page with RadGrid on it and defined CommandItemTemplate with RadToolBar.
Toolbar has RadToolBarDropDown item. The problem is I need to add items to DropDownItem in code-behind.
Please advice how to do that.
Thanks
Vladimir
Shinu
Top achievements
Rank 2
 answered on 16 Dec 2011
1 answer
138 views
Is the hierarchical export of the RadGridView (Excel/CSV/PDF) available in Telerik ASP.NET Ajax?

Thanks,   
Princy
Top achievements
Rank 2
 answered on 16 Dec 2011
6 answers
697 views
Dear All,

i have a simple form which is used to login the user to the web application i develop,

i want to show messages to users in case their username and password are incorrect.

i want to use the radWindow control.

i put the following code on my login button click event
.....
......
after user name and paswword validating
if(false){

Telerik.Web.UI.

 

RadWindow newWindow = new Telerik.Web.UI.RadWindow

();

 

 

 

newWindow.NavigateUrl =

 

 

 

"My Message Form name"

;

 

 

 

newWindow.OpenerElementID = btnLogin.ClientID;

newWindow.VisibleOnPageLoad =

 

true

;

 

 

 

newWindow.DestroyOnClose =

 

 

 

true

;

 

 

 

RadWindowManager1.Windows.Add(newWindow);


}

this works fine when click the button by the user...
but if the page is reloaded/refreshed the window is opened again and again...
i don't wont this to happen..
how to prevent the rad window to show if the page is refreshed?


Hope you can help me....

Thanks

Best Regards
Kanna
Top achievements
Rank 2
 answered on 16 Dec 2011
1 answer
124 views
 Is there are a way to do custom validation on the client side for RadDateTimePicker (tie a custom validator). We want to prevent users from entering a date that is greater than the current date/time and want to do it on the clientside.
Princy
Top achievements
Rank 2
 answered on 16 Dec 2011
1 answer
157 views
I'm sure I'm missing something simple, but I've searched through the documentation, and I can't seem to find anyone else reporting this issue.  In short, I have a RadChart (bar).  I've implemented tooltips using the OnItemDataBound event and the RadToolTipManager.  The tooltips are showing up as I mouseover different items (bars) in the chart, but it is displaying at the top of the browser window rather than over the item that I have moused over.  

Here is the relevant aspx code:

<telerik:RadChart ID="RadChart1" runat="server" Width="950px" Height="400px"
    SeriesOrientation="Horizontal" OnClick="RadChart1_OnClick" BorderWidth="0"
        IntelligentLabelsEnabled="True" PlotArea-Appearance-Dimensions-Margins="15%,10%,30%,10%"
        SkinsOverrideStyles="false" Skin="Custom" OnItemDataBound="RadChart1_OnItemDataBound">
</telerik:RadChart>
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Animation="Slide"
    Position="TopCenter" EnableShadow="true" ToolTipZoneID="RadChart1"
        AutoTooltipify="true">
</telerik:RadToolTipManager>

Here is code behind:

protected void RadChart1_OnItemDataBound(object sender, ChartItemDataBoundEventArgs e)
        {
            e.SeriesItem.ActiveRegion.Tooltip = ((DataRowView)e.DataItem)["Answer"].ToString();
        }

any ideas?  Thanks!

Richard
Top achievements
Rank 1
 answered on 15 Dec 2011
15 answers
624 views
We are making use of jQuery in our solutions and currently load jQuery 1.6 in our solution. We also would like to define our own jQuery functions, but we've encountered the problem that the Telerik libraries load its own version of jQuery (with our current version jQuery 1.4.2 is loaded) which the version would not be a problem, but ALL of our custom jQuery functions get override after Telerik loads the library.

I've seen the "directive" to disable the loading of Telerik's built-in jQuery for MVC, but we are using the standard ASP.NET model and thus the Telerik AJAX controls.

How can we disable this Telerik built-in jQuery library????

Thanks
Simon
Telerik team
 answered on 15 Dec 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?