Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
63 views
I have a RadGrid that is used to update items to a different status. A user is given a list of status's in a drop down and the can choose what status to change the item to. I'm not sure the best way to go about this, but I would like to popup a modal window or some type of form where the user has to fill in more information if they try to update an item with a certain status. Basically if a user selects a certain status and tries to update the row they would be prompted to fill out more information. Any suggestions on the best way to go about this would be appreciated. 
William
Top achievements
Rank 1
 asked on 23 Jun 2011
1 answer
72 views
Hi ,
I am using Rad Upload Control In my page  , i have set ControlObjectVisibility to None. I have One scenario to work on Rad Upload , 
Fist of all  i dont have any button to post back for uploading Files and I have to choose only image files. I m having asp.Image control above my radupload, when i select the image , i have to show the seleceted image in asp.Image conrol , that can be either in server or client side. Can you give me better idea or soultion to how to do the above scenario
Peter Filipov
Telerik team
 answered on 23 Jun 2011
1 answer
168 views
The grid border disappears when the columns are expanded on google chrome.

following code is added to allow resiziing of columns:


<ClientSettings>

                          <Resizing EnableRealTimeResize="True" AllowColumnResize="True"></Resizing>
             
                </ClientSettings>
Maria Ilieva
Telerik team
 answered on 23 Jun 2011
1 answer
61 views
Hi,

I have a web page where we have used Rad Editor. We have not mentioned any skin to control and its taking a Default skin. Now when i try to change the skin its not reflecting on page. Please update us why is this happeneing?
Rumen
Telerik team
 answered on 23 Jun 2011
2 answers
82 views
Hello All,

  I have a grid. I have several small grids inside the grid. I want to export the grid to MS word using RadGrid1.MasterTableView.ExportToWord();
This works fine, but when I do   RadGrid1.ExportSettings.IgnorePaging = true; then the small grids inside the bigger grid starts throwing error. I get the error message that small grid is null. I am doing the find of the small grid in
RadGrid1_ItemDataBound. below is my code

protected void RadGrid1_itemDataBound(object sender, GridItemEventArgs e)
{
    if (e.Item is GridDataItem)
    {
        RadGrid RadGrid_DetailsHeader = (RadGrid)e.Item.FindControl("RadGrid_DetailsHeader");
        RadGrid_DetailsHeaderBind(casRepHeader, RadGrid_DetailsHeader);
    }
     
}
In the above code RadGrid_detailsHeader is my small grid inside RadGrid1. when I write the ignorePaging command, this radGrid_detailsHeader becomes null. I am not sure what am I doing wrong. I need to print this grid with paging. I have five grids inside the big grid.

I spend my whole day trying to work this out, but without success. I am willing to use Telerik reporting option or any other way is also fine.

I have to export this grid to MS word and Excel.

I really really need help with this one.

Any help or tips will be greatly appreciated.
Anjali
Top achievements
Rank 1
 answered on 23 Jun 2011
2 answers
119 views
Hello,
I have media player on main site, when I open radWindow, the media player is still visible through radWindow, even when I set "Modal" property on true in radwindow.

Please, help me.
jay
Top achievements
Rank 1
 answered on 23 Jun 2011
10 answers
241 views

In page load i'm  dynamically binding  some records in radgrid ,
if that binded  values id how to get in radgrid_itemcommand event
reply soon


Thanks,
Mohamed.
mohamed
Top achievements
Rank 1
 answered on 23 Jun 2011
2 answers
123 views
Hello everyone,

I have a listbox with template and I need to do search in the item list.
I´m using this command: (without sucess)
RadListBox_Diretorias_0301_a.FindItemByValue

I´m trying to read item content using this command: (without sucess)
RadListBox_Diretorias_0301_b.Items[j].Value.ToString()

Any help would be appreciated.

Thanks

Daniel

-------------------
asp.net code
-------------------
<telerik:RadListBox ID="RadListBox_Diretorias_0301_a" runat="server" Skin="Sunset"
                                                                TransferToID="RadListBox_Diretorias_0301_b" AllowTransfer="True" AllowTransferOnDoubleClick="True"
                                                                EnableDragAndDrop="True" LoadingPanelID="RadAjaxLoadingPanel1" SelectionMode="Multiple"
                                                                Culture="pt-BR" Height="200px" Width="100%" BackColor="Transparent" AllowAutomaticUpdates="True"
                                                                DataKeyField="dirempresa" DataSortField="empnome" DataSourceID="SqlDataSource_Diretorias_0301x"
                                                                DataTextField="dirnome" DataValueField="dircodigo" OnClientTransferring="onClientTransferring"
                                                                AutoPostBackOnTransfer="true">
                                                                <ItemTemplate>
                                                                    <div>
                                                                        <%# DataBinder.Eval(Container.DataItem, "dirnome")%>&nbsp;-&nbsp;<%# DataBinder.Eval(Container.DataItem, "empnome")%></div>
                                                                </ItemTemplate>
                                                            </telerik:RadListBox>
-------------------
C# code
-------------------
public class Diretorias
    {
        public string empnome { get; set; }
        public string dirnome { get; set; }
    }

    void RadListBox_Diretorias_0301_a_ItemDataBound(object sender, RadListBoxItemEventArgs e)
    {
        var serializedDataItem = GetSerializedDataItem((DataRowView)e.Item.DataItem);
        e.Item.Attributes.Add("dataItem", serializedDataItem);
    }

    private string GetSerializedDataItem(DataRowView view)
    {
        var info = new Diretorias()
        {
            empnome = (string)DataBinder.Eval(view, "empnome"),
            dirnome = (string)DataBinder.Eval(view, "dirnome")
        };

        return Serializer.Serialize(info);
    }
Daniel Aquere
Top achievements
Rank 2
 answered on 23 Jun 2011
2 answers
108 views
How can I capture the SelectedIndexChanged event on the server side for a DropDownList within a Tab Template?  The event does not seem to fire.  I've found some similar posts for other controls, but I can't seem to make any sense out of this.

I would appreciate your help.

Al
alo
Top achievements
Rank 1
 answered on 23 Jun 2011
2 answers
106 views
Dear Telerik Staff,

lets say, in my database, I have a field / colum called "Location" in order to store the location of an appointment as simple text.

I know that I can add an attribute to the advanced edit form of the scheduler - in this case "Location". Then, RadScheduler creates a simple Textbox field in order to store the information about the location of an appointment as text.

That is what I needed. But RadScheduler names the label besides the textbox exactly like the field, it is bound to. Is there a way to replace the default label, so I can add an alias for a attribute, I have added, for example "Ort" (German) or "Where the appointment takes place"??
 
Would be happy to hear from you, soon.

Best regards,
Marco
Marco Beyer
Top achievements
Rank 1
 answered on 23 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?