Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
102 views

 

I have the following problem, when I make the exportation to Excel using the following method
 
protected void Grid_ItemCommand(object source, GridCommandEventArgs e)

 



I have no problem sending me the excel, the problem is when I check the excel is empty and no why this happens, it happens to me all the grids of 7 with 2 happens to me only and the export processis the same


greetings and thanks for the support

Gustavo
Top achievements
Rank 1
 asked on 08 Jun 2012
1 answer
113 views
<style type="text/css">
  html, form
  {
    height: 100%;
    margin: 0px;
    padding: 0px;
  }
 
  body
  {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #333;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
  }
   
  .topBar
  {
    width: 100%;
    padding: 5px;
    height: 35px;
    display: block;
    background-color: #336699;
  }
   
  .topBarLogo
  {
  
  }
</style>

<body>
<form id="form1" runat="server">
<div class="topBar">
<table width="100%">
<tr>
<td><div class="topBarLogo"><img src="/_Images/logo.png" /></div></td>
<td width="100"><a href="\login.aspx?logout=true" class="button">Logout</a></td>
</tr>
</table>
</div>
 
<telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
<telerik:RadSplitter ID="RadSplitter1" runat="server" Height="100%" Width="100%" BorderSize="0">
<telerik:RadPane ID="navigationPane" runat="server" Width="250px" BackColor="#ffffff" Scrolling="Y">
<div class="LeftPane">
My Nav menu
</div>
</telerik:RadPane>
<telerik:RadSplitBar ID="RadSplitbar1" runat="server" CollapseMode="Forward" />
<telerik:RadPane ID="contentPane" runat="server" ContentUrl="/login.aspx" BackColor="White">
</telerik:RadPane>
</telerik:RadSplitter>
</form>
</body>

The RadSplitter is rendering with both the browser's horizontal and vertical scrollbars. I suspect it has to do with the topBar div - but I want the splitter to be 100% of the remaining width/height of the browser after the topBar?

David
Top achievements
Rank 1
 answered on 08 Jun 2012
5 answers
138 views
Hello,

I have a column with two textboxes with BREAK. I need those breaks. Here is my HTML. Depending on the codition, I may or may not display the second textbox. If I am not displaying second textbox, how can I make the first textbox in the middle of the row.

<telerik:GridTemplateColumn HeaderText="Exception Price" UniqueName="ExceptionPrice" ItemStyle-Width="8%">
                   <ItemTemplate>
                     <telerik:RadNumericTextBox  ID="txtNewPrice" runat="server" MaxLength="10" AutoCompleteType="None" CssClass="txtException" MinValue="0"
                                Width="50px"     Type="Number" ShowSpinButtons="false" AllowOutOfRangeAutoCorrect="false" InvalidStyle-Font-Bold="true">
                                    <NumberFormat  AllowRounding="false" DecimalDigits="2"  KeepNotRoundedValue="true" GroupSizes="3"/>
                                    <ClientEvents OnValueChanging="ValueChanges" OnError="HandleError"/>
                                </telerik:RadNumericTextBox>
                                <br /><br />
                   <div style="vertical-align:bottom" >
                   <telerik:RadNumericTextBox  ID="TxtNewPSPrice" runat="server" MaxLength="10" AutoCompleteType="None"  MinValue="0"  Visible="false"
                          Width="50px" Type="Number" ShowSpinButtons="false" AllowOutOfRangeAutoCorrect="false" InvalidStyle-Font-Bold="true" CssClass="txtException">
                       <NumberFormat AllowRounding="false" DecimalDigits="2"  KeepNotRoundedValue="true" GroupSizes="3"/>
                         <ClientEvents OnValueChanging="ReinstatementChange" OnError="HandleError"/>
                      </telerik:RadNumericTextBox>
                    </div>
                                
                    </ItemTemplate>
               </telerik:GridTemplateColumn>
Jayesh Goyani
Top achievements
Rank 2
 answered on 08 Jun 2012
1 answer
146 views
I've been struggling for days now to try to figure out why the tooltips are positioned in the bottom of the screen instead of where they are supposed to. IE9 positions the tooltips correctly while FF.11 and Chrome.19 places the tooltips on the bottom of the screen.

I've got two RadToolTipManagers. One that is set to autotooltipify, where all the tooltips actually are correctly positioned in all browsers. The other where the tooltip is set "FromCode" is only correct positioned in IE. I've tried removing the css to make sure that doesn't messes up anything and also played around with the DocType. Same result.

As the demo-telerik-stuff is positioned correct I assume there must be something in the way the content is organizes in <div>'s etc... Are there any special things that I should try to investigate that could lead to this behaviour?
Jugoslav
Top achievements
Rank 1
 answered on 08 Jun 2012
1 answer
107 views
I have a radgrid. When I go to update a record the dropdown does not populate with the value of the current record.

I understand how to set the selectedvalue, but i dont understand how to retrieve the records value for this field to set the selectedvalue to.

This is my code that isnt working. Any help is appreciated.

ASPX Code:
<telerik:GridDropDownColumn DataSourceID="ReportFormatddlist" ListTextField="ReportFormat"
    ListValueField="ReportFormat" UniqueName="ddReportFormat" SortExpression="ReportFormat"
    HeaderText="Report Format" DropDownControlType="DropDownList" DataField="ReportFormat">
</telerik:GridDropDownColumn>


.VB Code:
Protected Sub RadGrid1_ItemDataBound(ByVal sender As Object, ByVal e As GridItemEventArgs) Handles RadGrid1.ItemDataBound
    If (TypeOf e.Item Is GridEditableItem AndAlso CType(e.Item, GridEditableItem).IsInEditMode) Then
 
        'Report Render Format. The 3 values are just plugged into a list
        Dim editedItem As GridEditableItem = CType(e.Item, GridEditableItem)
        Dim editMan As GridEditManager = editedItem.EditManager
        Dim editor As GridDropDownListColumnEditor = CType(editMan.GetColumnEditor("ddReportFormat"), GridDropDownListColumnEditor)
        Dim ReportFormatddList As DropDownList = editor.DropDownListControl
 
        'populate the list
        ReportFormatddList.Items.Insert(0, New ListItem("Excel", "Excel"))
        ReportFormatddList.Items.Insert(1, New ListItem("PDF", "PDF"))
        ReportFormatddList.Items.Insert(2, New ListItem("HTML4.0", "HTML4.0"))
        ReportFormatddList.DataBind()
 
        'prime value for update
           '**this is where I am having trouble**
        Dim ReportFormatEditor As GridDropDownListColumnEditor = editMan.GetColumnEditor("ddReportFormat")
        Dim ReportFormatValue = ReportFormatEditor.SelectedText
        editor.SelectedText = ReportFormatValue.ToString
 
        'Report name. The values are pulled from the db.
        editor = CType(editMan.GetColumnEditor("ddReportName"), GridDropDownListColumnEditor)
        editor.DataSource = (From r In DbContext.SubscriptionReportNames Select r).ToList()
        editor.DataBind()
 
    End If
End Sub
Jayesh Goyani
Top achievements
Rank 2
 answered on 08 Jun 2012
1 answer
72 views

 

Hi,
 
We are using RadGrid. I am having same issue. In debug mode, error is generating right after End of InsertCommand

Insert Item is available only when grid is in insert mode
 
Please help!!!!!!

Jayesh Goyani
Top achievements
Rank 2
 answered on 08 Jun 2012
18 answers
582 views
I need to save images using FileExplorer into SQL database, I created a classDataServer.cs and DBContentProvider.cs, I placed them in the App_Code folder. The class DataServer.cs I changed the name of the table Items in Pictures and name of the column ItemID PictureID. Everything else remained unchanged.

The Handler created I changed only the ConnectionString.

After running everything works, but the image is not stored in the database.
Where we make mistaken?
Dobromir
Telerik team
 answered on 08 Jun 2012
3 answers
231 views
I want to  show a radTooltip from codebehind and use it as a type of msgbox. I want to give the user 'on the fly' database information from serverside, so I need to be able to build the radtooltip content codebehind aswell. Do you have any VB.net example and javascript to accomplish this ?  

I have access to the client user screen pixel where the user clicked. ( I do not want to use a targetcontrolID, tis is goolemap in a <div>) 

How can I call radtooltip to apear clientside on a given x,y pixel on client screen ?

'################################################################################################
This is how I show a radcontextmenu from codebehind/.showat x,y , Does radtooltip have a similar property ? please advise !!!
   ScriptManager.RegisterClientScriptBlock(Page, Page.GetType(), "RCM", "function pageLoad(){$find('RCM').showAt(" & txtlath.Value & "," & txtlngh.Value & ");}", True)
'################################################################################################

  

  
rdmptn
Top achievements
Rank 1
 answered on 08 Jun 2012
1 answer
98 views
When I click on a row in master grid , the detail grid does not refresh. Please help me. thanks

        protected void OnLogGridNeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
        {
            var logs = LogManager.FindLog();
 
            var sortedlogs = from l in logs
                             orderby l.LogId descending
                             select l;
 
            grdLogGrid.DataSource = sortedlogs;
 
        }
 
        protected void OnLogDetailGridNeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
        {
            int logid = 0;
            grdLogDetailGrid.DataSource = null;
            
            if (grdLogGrid.SelectedValue != null)
                logid = Convert.ToInt32(grdLogGrid.SelectedValue.ToString());
 
 
            var logDetails = LogManager.FindLogDetail();
            var logDetail = from ld in logDetails
                            where ld.LogId == logid
                            select ld;
 
            grdLogDetailGrid.DataSource = logDetail;
 
        }
 
 
 
        protected void OnLogGridSelectedIndexChanged(object sender, EventArgs e)
        {
            int logid = Convert.ToInt32(grdLogGrid.SelectedValue.ToString());
 
            var logDetails = LogManager.FindLogDetail();
            var logDetail = from ld in logDetails
                            where ld.LogId == logid
                            select ld;
 
            grdLogDetailGrid.DataSource = logDetail;
 
        }










	<telerik:RadAjaxManagerProxy ID="AjaxProxy" runat="server">
		<AjaxSettings>
			<telerik:AjaxSetting AjaxControlID="grdLogGrid">
				<UpdatedControls>
					<telerik:AjaxUpdatedControl ControlID="grdLogGrid" />
				</UpdatedControls>
			</telerik:AjaxSetting>
		</AjaxSettings>
	</telerik:RadAjaxManagerProxy>
	
	<telerik:RadGrid 
		ID="grdLogGrid" 
		runat="server"
		OnNeedDataSource="OnLogGridNeedDataSource"
		AllowFilteringByColumn="true"
		AllowPaging="true"
		AllowSorting="true"
		GroupingEnabled="true"
		ShowGroupPanel="true" 
        onselectedindexchanged="OnLogGridSelectedIndexChanged">
		<MasterTableView
			DataKeyNames="LogId">
            <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
            <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn>
            <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn>
            <EditFormSettings>
                <EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn>
            </EditFormSettings>
		</MasterTableView>
		<ClientSettings 
			AllowColumnsReorder="true"
			AllowDragToGroup="true"
			AllowGroupExpandCollapse="true"
			ColumnsReorderMethod="Reorder"
			EnableRowHoverStyle="true" EnablePostBackOnRowClick="True"
			>
			<Resizing AllowColumnResize="true" ResizeGridOnColumnResize="false" />
			<Selecting AllowRowSelect="true"  /> 
			             
		</ClientSettings>
		<GroupingSettings ShowUnGroupButton="true" />             
 
<FilterMenu EnableImageSprites="False"></FilterMenu>
 
	</telerik:RadGrid>
 
    <br />
    <strong>Log Details</strong>
 
    <br />
	<telerik:RadGrid 
		ID="grdLogDetailGrid" 
		runat="server"
		OnNeedDataSource="OnLogDetailGridNeedDataSource"
		AllowFilteringByColumn="true"
		AllowPaging="true"
		AllowSorting="true"
		GroupingEnabled="true"
		ShowGroupPanel="true">
		<MasterTableView
			GroupLoadMode="Client">
		</MasterTableView>
		<ClientSettings 
			AllowColumnsReorder="true"
			AllowDragToGroup="true"
			AllowGroupExpandCollapse="true"
			ColumnsReorderMethod="Reorder"
			EnableRowHoverStyle="true"
			>
			<Resizing AllowColumnResize="true" ResizeGridOnColumnResize="false" />
			<Selecting AllowRowSelect="true"  /> 
			             
		</ClientSettings>
		<GroupingSettings ShowUnGroupButton="true" />             
 
	</telerik:RadGrid>


Pavlina
Telerik team
 answered on 08 Jun 2012
2 answers
176 views
I have a simple Scheduler to display scheduled meetings in various rooms.  Whether I use the default appointment display or a custom appointment template, if the subject is long enough, it will wrap the text and cut off anything on line 2 or more.  Any ideas on how to show the whole subject.  This is specific for the month view.

<telerik:RadScheduler ID="rsVTC" runat="server" DataStartField="dtStartDateTime" DataEndField="dtEndDateTime" DataKeyField="intRoomScheduledId"
                                            DataSubjectField="Title" OverflowBehavior="Expand" SelectedView="MonthView"
                                            DayView-UserSelectable="false" WeekView-UserSelectable="false" MultiDayView-UserSelectable="False" TimelineView-UserSelectable="False" 
                                            Skin="Office2010Blue" Width="100%" AllowDelete="false" AllowEdit="false" AllowInsert="false">
                                            <AppointmentTemplate>
                                                <div>
                                                    <asp:LinkButton ID="lnkVtcViewRequest" runat="server"><%# Eval("Subject")%></asp:LinkButton>
                                                </div>
                                                <div>
                                                    <asp:LinkButton ID="lnkVtcSelectRequest" runat="server" Text="Select" />
                                                </div>
                                            </AppointmentTemplate>
                                        </telerik:RadScheduler>


Greg
Top achievements
Rank 1
 answered on 08 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?