Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
255 views
Hi,

I have written code on ItemDataBound event of grid to check certain condition. If that condition is met then I would like to make 'Delete' button in GridButtonColumn and 'Edit' button in GridEditCommandColumn invisible for that row. For other rows these buttons should be visible.
I have managed to make these button invisible but for those rows and for these two columns only it is not showing gridlines and it looks weird. How to make it show gridlines but make image buttons invisible?

Thanks.
Sebastian
Telerik team
 answered on 01 Aug 2011
1 answer
49 views
Hello

I want to know how I can delete the image attached in a forum post.

Url:

http://www.telerik.com/community/forums/aspnet-ajax/grid/grid-grouping-sum-and-count-problem.aspx#1741505

Thanks..
Sebastian
Telerik team
 answered on 01 Aug 2011
1 answer
158 views
Hello,

I'm using the demo: http://demos.telerik.com/aspnet-ajax/editor/examples/righttoleft/defaultcs.aspx.
Can i know using the c# code (In the server side) of the usercontrol in which mode I'm in (Insert or update)?
Note: I'm using the follwoing code:
((bool)DataBinder.Eval(Container, "OwnerTableView.IsItemInserted")) ? false : true

But thats doesn't help in the server side of the user control.

Please, I need your help,
It is apprecited to send me a sample code:

Regards,
Bader

Andrey
Telerik team
 answered on 01 Aug 2011
2 answers
96 views
Hi,
I have Rad Menu which is supposed to pick up custom skin and the css, but somehow it still picks up some classes from default css. I am not sure why.I have created a folder called mytheme and within that i have Menu.mytheme.css  and also in the web config i have specified page theme=mytheme.
When i reference it from the page i have  explicity mentioned skin="mytheme" and embeddedskin="false"
Could you please help on this.
Thanks.
Teju
Kate
Telerik team
 answered on 01 Aug 2011
1 answer
81 views
Hi;
We are using Telerik RadGrid When we dont use grouping there is by default text in the panel "Drag and Drop Grouping for here".
It is always in Center ,IS there any mechanism that we can shift this text to left Handside.
Maria Ilieva
Telerik team
 answered on 01 Aug 2011
6 answers
139 views
I'm not sure if this is a bug or intentional, but the Open option in the context menu is available even when you don't have a file selected. For example, if I right click in the open area in the file grid on the right, I can choose Open, which then attempts to open my path (with no file) using my file handler. I've written the following code to stop this from happening.

if (item.get_url().lastIndexOf("/") == item.get_url().length - 1) {
                alert('You must select a file to open.');
            } else {
                var requestImage = "FileHandler.ashx?path=" + item.get_url();
                document.location = requestImage;
            }
Dobromir
Telerik team
 answered on 01 Aug 2011
1 answer
155 views

Grid not rebinding on Closing Rad Window

I have problem with radgrid refreshing, when i close the radwindow .I have a radgrid which should refresh automatically when i close the radwindow , In my application i have a radwindow through which i will insert the values to database , on successfull insertion , i am calling the refresh grid function , but the grid refresh functionality is not working , can i know where exactly i am wrong ,so that the functionality works fine. 

my Gridpage aspx code looks like this
 <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest" EnableAJAX="true">
            <AjaxSettings>
                <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
                <telerik:AjaxSetting AjaxControlID="RadGrid1">
                    <UpdatedControls>
                        <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                    </UpdatedControls>
                </telerik:AjaxSetting>
            </AjaxSettings>
        </telerik:RadAjaxManager>

<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" AllowSorting="True"
            GridLines="None" ShowGroupPanel="True" Skin="Black" AutoGenerateColumns="False" Width="100%" AllowAutomaticInserts="false" AllowAutomaticUpdates="false">
            <ClientSettings AllowDragToGroup="True" AllowColumnsReorder="True" ReorderColumnsOnClient="True">
                <Scrolling AllowScroll="True" UseStaticHeaders="True" />
                <ClientEvents OnGridCreated="OnGridCreated" />
            </ClientSettings>

.......................
..................
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="true"
            Skin="Black">
            <Windows>
                <telerik:RadWindow ID="UserListDialog" runat="server" Height="620px" Width="620px"
                    Left="150px" Top="50px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true"
                    OnClientClose="closeRadWindow" />
            </Windows>
        </telerik:RadWindowManager>
protected void RadAjaxManager1_AjaxRequest(object sender, Telerik.Web.UI.AjaxRequestEventArgs e)
        {
            if (e.Argument == "Rebind")
            {
                RadGrid1.MasterTableView.SortExpressions.Clear();
                RadGrid1.MasterTableView.GroupByExpressions.Clear();
                Presenter List = new Presenter(this);
                IList<FileAdmin> GridDta = List.PopulateGrid();
                RadGrid1.DataSource = GridDta;
                RadGrid1.Rebind();
            }
javascript looks like this
function closeRadWindow()
                 {
                     $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");
                  
                }
       function refreshGrid()
                 {
                   $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");
                 
                 }
RadWindow aspx code Looks like this
javascript
 function CloseAndRebind() {
                        GetRadWindow().BrowserWindow.refreshGrid();
                        //GetRadWindow().close();
                    }
function GetRadWindow()
                     {
                        var oWindow = null;
                        if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog
                        else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz as well)
                        return oWindow;
                    }
Radwindow aspx.cs file looks like this
protected void buttonclick(object sender, EventArgs e)
{
if (result == true)
 {
ClientScript.RegisterStartupScript(Page.GetType(), "mykey1", "CloseAndRebind();", true);
 }
}
Maria Ilieva
Telerik team
 answered on 01 Aug 2011
1 answer
282 views
Hello,

I'm using the following autocomplete radcombobxo:

<telerik:RadComboBox
                                 ID="ParentRadComboBox" runat="server"
                                 Width="590px" Height="140px" AllowCustomText="true" MarkFirstMatch="true"
                                 EmptyMessage="Type a Title" DataValueField="SerID"
                                 DataSourceID="GuideSqlDataSource" DataTextField="Title" >
                             <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
                        </telerik:RadComboBox>

The problem is the user can type a text which is not even exist within the radcombobox item and click Submit (A Button).
I need to use the property AllowCustomText .
How can I validate that the typed text is valid?

Please, I need your help,
It is appreciated to sendme the modified code.

Regards,
Bader
Shinu
Top achievements
Rank 2
 answered on 01 Aug 2011
1 answer
90 views
Hi Telerik,

I am having problem after i load a user control to radsplitter. i am not able to fired the event that i created in the ascx. is there anyway i can invoke the event ?

In aspx
Imports Telerik.Web.UI
 
Partial Class Admin
    Inherits System.Web.UI.Page
 
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not IsPostBack Then
            RadPane11.Controls.Add(LoadControl("~/Admin/Insert Landmark.ascx"))
        End If
    End Sub
 
    Protected Sub RadPanelBar1_ItemClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadPanelBarEventArgs) Handles RadPanelBar1.ItemClick
        Dim ItemClicked As RadPanelItem = e.Item
        RadPane11.Controls.Add(LoadControl("~/Admin/" & ItemClicked.Text & ".ascx"))
        RadPane()
    End Sub
End Class

in ascx.
Imports Telerik.Web.UI
 
Partial Class Admin_InsertLandmark
    Inherits System.Web.UI.UserControl
 
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
 
    End Sub
 
    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        If RadUpload1.UploadedFiles.Count > 0 Then
            For Each f As UploadedFile In RadUpload1.UploadedFiles
                Dim landmarkname As String = TextBox1.Text
                Dim landmarkaddress As String = TextBox2.Text
                Dim landmarkphotourl As String = f.FileName
                f.SaveAs("D:\LandMarkImage\" + f.FileName)
            Next
        End If
    End Sub
End Class

P.S. i load the ascx dynamically.

Regards,
KEA
Dobromir
Telerik team
 answered on 01 Aug 2011
1 answer
76 views
Hi,

Number of times we have previously email telerik regarding this problem/issue: 2 (Two)

We bought telerik components just to use the editor in our project. We were shown how the editor works as per our requirement.
Now we have implemented it in our project and spent numerous hours making this update but due to the problems (mentioned below) we are unable to launch our project with telerik editor.

I have sent an email before regarding the below-mentioned problems but have not been receiving any response from telerik.
We will really appreciate it if you can help us solve this problem so we can launch our project on a timely basis.
Thanks!

Problem:
radeditor does not work properly in Opera and Safari.
I used editor in this way,
split editor text area and toolbar in different frames
In safari, editor never load and toolbar as well while,
In Opera, two toolbar load for one text area so toolbar conflict with each other and some option do not work properly. In toolbar there is a HTML button when click this button a radwindow open containing text area which get the Html of focused editor, sometime radwindow do not open and sometime it contain the html of any editor which is not focused
Download the project from following link, test and solve this issue



Rumen
Telerik team
 answered on 01 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?