Hi ,
I am using Q2 2008 telerik version.
Here is my Aspx code ,
<telerik:RadUpload Localization-Select="Select Photo" ID="UploadFile" runat="server"
Skin="Vista" ControlObjectsVisibility="None" OverwriteExistingFiles="false" InitialFileInputsCount="1" />
I dont want Add , Delete , Remove etc button , want only a text box and select button.
So i have set ControlObjectsVisibility="None" property.
If i set this property in code and test in Opera browser , Upload control do not work.When i click on select nothing happens.
Where as when i set ControlObjectsVisibility="All" it runs in Opera.But i dont want to show all other controls.
Is there any solution for this?
Thanks.
I have a Formview and a RadGrid on my page.
I am getting details in my RadGrid for the Selected Value in my FormView based on Client ID (cID).
I want to use PopUp edit form. However I am having the following issues when creating new items in my radgird using popup..
1. I need to set the cID in the RadGrid to the current selected value for my FormView.
2. I need on of my columns in Popup Edit form to present a dropdown for ProductID (pID) whiohc ties the dropdown datasource to another lookup table.
I need to hide some of the colums that are being display in the Insert form of the popup editfiorm as they are not required. But are using in SQL Joins.
Anybody have any clue where to start on any of this?
Pseudo Code for Setting cID
...I know "CurrentMode" dosne't exist for RadGrid...but I don't know where to put this.
| Protected Sub RadGrid1_PreRender(ByVal sender As Object, ByVal e As EventArgs) |
| Dim strCID As String = fvClients.SelectedValue |
| If RadGrid.CurrentMode = RadGrid.Insert AndAlso (DirectCast(RadGrid.FindControl("cIDTextBox"), TextBox)).Text.Length = 0 Then |
| Dim tbox As TextBox = TryCast(RadGrid1.FindControl("cIDTextBox"), TextBox) |
| tbox.Text = strCID |
| End If |
| End Sub |
| <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="dsPrescriptionItems" |
| GridLines="None" AutoGenerateEditColumn="True" AutoGenerateColumns="False" Skin="Forest"> |
| <HeaderContextMenu EnableAutoScroll="True"> |
| </HeaderContextMenu> |
| <MasterTableView DataKeyNames="ID" DataSourceID="dsPrescriptionItems" AllowAutomaticDeletes="True" |
| AllowAutomaticInserts="True" AllowAutomaticUpdates="True" CommandItemDisplay="Bottom" |
| EditMode="PopUp"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="ID" DataType="System.Int32" Display="False" HeaderText="ID" |
| ReadOnly="True" SortExpression="ID" UniqueName="ID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="cID" DataType="System.Int32" Display="False" |
| HeaderText="cID" SortExpression="cID" UniqueName="cID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="pID" DataType="System.Int32" Display="False" |
| HeaderText="pID" SortExpression="pID" UniqueName="pID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Name" HeaderText="Name" SortExpression="Name" |
| UniqueName="Name"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="ScriptRefills" DataType="System.Int32" HeaderText="Refills" |
| SortExpression="ScriptRefills" UniqueName="ScriptRefills"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="StartDate" DataFormatString="{0:MMM dd, yyyy}" |
| DataType="System.DateTime" HeaderText="Start Date" SortExpression="StartDate" |
| UniqueName="StartDate"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| <EditFormSettings CaptionFormatString="Edit Prescription" |
| InsertCaption="Add Prescription:" PopUpSettings-Modal="True"> |
| <PopUpSettings Modal="True" /> |
| </EditFormSettings> |
| </MasterTableView> |
| <ClientSettings> |
| <ClientEvents OnPopUpShowing="PopUpShowing" /> |
| <Selecting AllowRowSelect="true" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
How can I change the z-index of a chart series? I have couple of chart series on a chart. One chart series type is StackedArea while the others are StackedBar. Telerik chart seems to assign the z-index of the chat-series-elements based on the order from the code.
Please look at the attached image. On the Data Table, I would like "OverOrUnder" to the listed as the last row. I can achive this by moving it as the last Chart Series on the code but if I do that the Red StackedArea series will come to the front and hide BookedWork and SolidProspect for some weeks. Any ways to achive this?