Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
98 views
Hi Telerik Team

I have many Redhtmlfield on same page, and on that page i want to make one of the redhtmlfields to readonly(non-editable)?
Can you provide the support for that? Its urgent.

Thanks and regards

Rajat Jindal
Pavlina
Telerik team
 answered on 30 Oct 2012
3 answers
63 views
Hi,
Suppose i have placed a button inside a ClientItemTemplate of RadGrid and attached handler to its click event as:
<ClientItemTemplate>
         <input type="button" onclick="OnModifyActiveStatus(this);">
         </input>
</ClientItemTemplate>


Now i have enabled CellSelectedEvent and attached an handler to OnCellSelected event as:
<ClientEvents OnCellSelected="cs" ... />


Now when i click on button inside Template, i want both event handlers to get fired (button.onclick and ClientEvents.OnCellSelected) which I'm getting in firefox but no success in IE.
Maria Ilieva
Telerik team
 answered on 30 Oct 2012
2 answers
70 views
When implementing 2012 Q3 on one of our sites I run into the problem that the custom skin classes are not applied to the html elements of the grid.

I use:

<telerik:RadGrid Skin="altec" EnableEmbeddedSkins="false" ID="dtgProducts" runat="server" DataSourceID="SqlDataSource1" PageSize="10" PageCount="20" AllowSorting="False"
AllowMultiRowSelection="False" AllowPaging="True" ShowGroupPanel="True" AutoGenerateColumns="False" OnItemCommand="dtgProducts_ItemCommand" OnItemCreated="dtgProducts_ItemCreated" OnItemDataBound="dtgProducts_ItemDataBound" GridLines="none">

Nowhere the "_altec" suffix is added to the classes.

Is this a known bug in Q3 2012?

Marc
Fit2Page
Top achievements
Rank 2
Bronze
Iron
Iron
 answered on 30 Oct 2012
8 answers
902 views
Hi.

In a RadGrid control I get an int value and tinyint value from the database.

I need to convert the tinyint value to the string representation of an enum that they represent in my application. E.g. If value = 1 then show "Active", if 2 show "Pending etc"

And with the int value I need to convert it to a value in a database table, the int value essentially being a primary key in another table.

I've looked at the column types page on your demo site (http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/columntypes/defaultcs.aspx) and your support but nothing is showing me what I want except when in edit mode to fill a drop down list.

If you could point me in the right direction I'm sure this is all documentated somewhere.

Many thanks
Chris
Kostadin
Telerik team
 answered on 30 Oct 2012
1 answer
53 views
I've successfully been using two RadSlidingPane controls on one of my web form for some time now.  As shown in the screenshot, the inner one actually sits on a User Control, which is loaded into the web form.  Everything was working perfectly fine.

Today I had occasion to change a bunch of server-side code, somewhat unrelated to the RadSlidingPanes ... or so I thought.  Anyhow, I've now discovered that the Undock icon (the thumbtack) of the inner sliding pane has suddenly stopped functioning!  The outer one still works normally, meaning that when I hover over it a hand cursor appears, an "Undock" tooltip appears, and clicking on it causes the sliding pane to collapse (undock).

But the inner one isn't doing any of that anymore!

I really have no idea what it is I could have possibly changed that would make this happen.  In point of fact, I have about a dozen User Controls in which the inner RadSlidingPane is implemented in the same way and I KNOW that I haven't even touched the code in most of them ... yet their Undock icons aren't working either!

I would really appreciate it if you could give me some suggestions about what code controls the aforementioned Undock functionality (cursor & tooltip for example).  That might give me a clue as to what it is I changed that messed things up.

Thank you,

Robert W.
Robert
Top achievements
Rank 1
 answered on 30 Oct 2012
13 answers
639 views
I am writing to learn if there is an option to remove the blinking mouse cursor from the RadComboBox - 
without disabling the actual RadComboBox;

As of April of 2010, a post from Telerik Support indicated the cursor cannot be controlled programmatically - unless the RadComboBox is disabled;

Thanks in advance for any insight; 

Best regards - Rob
Matthew
Top achievements
Rank 1
 answered on 30 Oct 2012
3 answers
71 views
I am using RadAjaxManager and it works well, but to update a frame with RadAjaxManager have stop working.
I am using RegisterClientScriptBlock in code behind, and this works before i use RadAjaxManager....
How do I configure it to work again?
Using Page Language="VB"....

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="rcbMyLink">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="PanelNewInsert" LoadingPanelID="RadAjaxLoadingPanel1" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewExternUrl" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewInternUrl" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="lbSavePage">
            <UpdatedControls>       
                <telerik:AjaxUpdatedControl ControlID="PanelNewInsert" LoadingPanelID="RadAjaxLoadingPanel1" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewExternUrl" />
                <telerik:AjaxUpdatedControl ControlID="PanelNewInternUrl" />
            </UpdatedControls>
        </telerik:AjaxSetting>
   </AjaxSettings>
</telerik:RadAjaxManager>


ClientScript.RegisterClientScriptBlock(Me.[GetType](), "scr", "<script>parent.TreeFrame.location.replace('" + MyMeny + "');</script>")
Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Oct 2012
1 answer
408 views
What does the message actually mean?  The DataFieldID has unique values from the data table. There are no column names the same.
Seems like no matter what fields I try to set I receive "Parent Columns and Child Columns don't have type-matching columns." Or "These columns don't currently have unique values."

RadTreeView1.DataFieldParentID = "IdeaID"
RadTreeView1.DataFieldID = "ID";  
RadTreeView1.DataTextField = "IdeaName"
RadTreeView1.DataValueField = "IdeaStatus"
RadTreeView1.DataSource = dtT;                   
RadTreeView1.DataBind();
Shinu
Top achievements
Rank 2
 answered on 30 Oct 2012
0 answers
63 views
Hi,

I'm using Telerik RadGrid of Version "2012.1.411.35" . I have a scenario where i need to expand/ collapse the disabled node. if use endable/disable property it is not working and tried as per the below link "http://www.telerik.com/help/aspnet-ajax/treeview-client-expand-disabled-node.html" still it is not working. Please help me to resolve this issue as soon as possible
Sreeram
Top achievements
Rank 1
 asked on 30 Oct 2012
1 answer
442 views

See the following code.  By default, the ImageButton is above the "Region" HeaderText.  How can I place the ImageButton under the "Region" HeaderText?  Note that I want to keep the sorting features when click the "Region" label.

<telerik:GridTemplateColumn AllowFiltering="false" HeaderStyle-VerticalAlign="Bottom" HeaderStyle-HorizontalAlign="Center" HeaderText="Region" SortExpression="RegionName" UniqueName="RegionName">
  <HeaderTemplate>
    <div style=" margin:0 10px 0 15px;">

      <asp:ImageButton ID="ButtonStartFilter" ImageUrl="../images/placeholder.png" runat="server"/>
    </div>
  </HeaderTemplate>
</telerik:GridTemplateColumn>

Princy
Top achievements
Rank 2
 answered on 30 Oct 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?