<
form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<div style="height:300px; width:400px;overflow:scroll;">
<div style=" height:500px; width:350px">
<table ><tr><td>
<asp:TextBox ID="TextBox1" runat="server" Width="197px"></asp:TextBox>
</td></tr>
<tr><td>
<asp:Button ID="Button1" runat="server" Text="Button" />
</td></tr>
<tr><td>
<rad:RadDatePicker ID="datePikFmCrRangeStart" runat="server" EnableTyping="False" Skin="Default2006" Calendar-EnableMonthYearFastNavigation="false">
<DateInput ReadOnly="True" Skin="Outlook" CssClass="input" runat="server" ID="dateInput2">
</DateInput></rad:RadDatePicker>
</td>
</tr>
<tr>
<td>
<asp:HyperLink ID="HyperLink1" runat="server">HyperLink</asp:HyperLink>
</td>
</tr>
</table>
</div>
</div>
</form>
You can paste this code in a page and can see how the calendar control behaves.
I tried to set the Style="position:relative;" to this control but did not work.
please suggest me some solution.
Regards,
Manoj Dwivedi
m_oWebMenu.Attributes.Add("onmouseout", "hideRadMenu(event, '"+ m_oWebMenu.ClientID +"')");
old output:| public void RadGrid1_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e) |
| { |
| if (e.CommandName == RadGrid.InitInsertCommandName) |
| { |
| e.Canceled = true; |
| e.Item.OwnerTableView.InsertItem(); |
| GridEditableItem insertedItem = e.Item.OwnerTableView.GetInsertItem(); |
| TextBox drzava = insertedItem.FindControl("TextBox_drzava") as TextBox; |
| drzava.Text = "Slovenija"; |
| TextBox id_sod = insertedItem.FindControl("TextBox_idsod") as TextBox; |
| id_sod.Text = Profile.stevilkaSodelavca; |
| } |
| if (e.CommandName == "Add") |
| { |
| e.Canceled = true; |
| e.Item.OwnerTableView.InsertItem(); |
| //PODATKI IZ BAZE |
| String strKraj = ""; |
| String stPoste = "0"; |
| GridEditableItem insertedItem = RadGrid1.MasterTableView.GetInsertItem(); |
| TextBox posta = insertedItem.FindControl("TextBox_posta") as TextBox; |
| stPoste = posta.Text; //HERE I GOT "" (empty string) |
| TextBox drzava = insertedItem.FindControl("TextBox_drzava") as TextBox; |
| drzava.Text = "Slovenija"; |
| TextBox id_sod = insertedItem.FindControl("TextBox_idsod") as TextBox; |
| id_sod.Text = Profile.stevilkaSodelavca; |
| TextBox kraj = insertedItem.FindControl("TextBox_kraj") as TextBox; |
| kraj.Text = strKraj; |
| } |
| } |
Why we are choosing rad controls for ASP.NET AJAX(Q2/2008)
If we have fine with RadControls for ASP.NET Q1 2008.
What are the advantages to build Q2/2008 built on top of MS ASP.NET AJAX?
If my old version telerik controls are fine working on vs2008/asp.net3.5
Regards,
Abhi