Hi,
I am using radgrid with Inplace EditMode and its working fine when there is data available in grid.
But when there is no any data in grid, and then on clicking on “Add Row” the grid is getting blank without any new row for inserting data
Please get the details decription in attached file.
Thanks
Mukesh
Hi
I am using this code to display a RAD Date Picker (I am using Rad Ajax Control for ASP .Net Version Q3 2008) . My requirement is on Tab off(lost focus) calendar popup should be hide. This is working while I added “OnBlur” event on “DateInput” control. But now it is creating a new problem. It is not showing new selected date in DatePicker control. For example if DatePicker already have “09/09/2008” as date value and now I have selected “09/08/2008” as new date, This new selected date is not coming in DatePicker control (If I commented ctl.hidePopup() statement from _txtClaimantDOI_OnBlur() Then I am able to see new selected date in date picker control).
<telerik:RadDatePicker ID="txtClaimantDOI" runat="server" Skin="Office2007" EnableEmbeddedSkins="false" Width="70px">
<DateInput onfocus="_txtClaimantDOI_OnFocus()" OnBlur="_txtClaimantDOI_OnBlur()" >
</DateInput>
<Calendar DayNameFormat="FirstLetter" FirstDayOfWeek="Default" EnableMultiSelect="false"
UseColumnHeadersAsSelectors="False"
UseRowHeadersAsSelectors="False" TabIndex="0">
</Calendar>
<ClientEvents OnDateSelected="DateSelected" />
<DatePopupButton Visible="true" Style="display: none;" TabIndex="0" />
</telerik:RadDatePicker>
<telerik:RadScriptBlock ID="txtClaimantDOIScriptBlock" runat="server">
<script language="javascript" type="text/javascript">
//<![CDATA[
function _txtClaimantDOI_OnFocus() {
var ctl = $find("<%= txtClaimantDOI.ClientID %>");
ctl.showPopup();
}
function _txtClaimantDOI_OnBlur() {
var ctl = $find("<%= txtClaimantDOI.ClientID %>");
ctl.hidePopup();
}
//]]>
</script>
</telerik:RadScriptBlock>
Please help me in this.
Regards
Atul Kumar Srivastav
If TypeOf e.Item Is GridGroupHeaderItem Then Dim item As GridGroupHeaderItem = e.Item If item.GroupIndex = "0" Then item.Expanded = True End IfEnd IfPrivate Sub rgvReportGrid_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles rgvReportGrid.ItemCommand If e.CommandName = RadGrid.ExpandCollapseCommandName Then Dim item As GridGroupHeaderItem = e.Item Dim groupIndex As String = item.GroupIndex.ToString Dim grid As RadGrid = source For Each gridItem As GridItem In grid.MasterTableView.Controls(0).Controls If TypeOf (gridItem) Is GridGroupHeaderItem Then Dim groupHeaderItem As GridGroupHeaderItem = gridItem If groupHeaderItem.GroupIndex.ToString = groupIndex Then groupHeaderItem.Expanded = True Else groupHeaderItem.Expanded = False End If End If Next End IfEnd SubI have a relatively small asp.net web site project that I recently started using Telerik with.
It seems that since I introduced telerik into the project, every hour or so my VS 2008 will fail to build the website part of the solution, with the error:
Validating Web Site
(0): Build (web): Exception of type 'System.OutOfMemoryException' was thrown.
Closing and restarting VS fixes this issue.
Does anyone have any idea why this would be happening?
I have few RAD combo boxes in my form view. I'm using ObjectDataSource for the RAD Combo boxes where "EnableAutomaticLoadOnDemand" is used. Other RadComboBoxes are populated on load with hand coded data source and data bind.
I'm using "EmptyMessage" and "Allow Custom Text" properties to get water mark empty message for all of them.
While entering the details or while submitting the form I want to validate that the RAD combo boxes should have selected item, selected text and selected value. I don’t want any custom text to get submitted. I just want to use the "Allow Custom Text" property to get water mark empty message and to do item request where "EnableAutomaticLoadOnDemand is used.