Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
158 views
Hello.
i have a autocompletebox . when i type a character i get this error : input string was not in a correct format

<telerik:RadAutoCompleteBox ID="acpstudents" Runat="server" DataSourceID="st" DataTextField="name" DataValueField="id" InputType="Text" MaxResultCount="10">
          </telerik:RadAutoCompleteBox>
          <asp:SqlDataSource ID="st" runat="server" ConnectionString="<%$ ConnectionStrings:dbconnection %>" EnableCaching="true" SelectCommand="SELECT [name]+' '+[lname] as name,[lname],[scode],[codemelli],[id] FROM [students] WHERE ([schoolid] = @schoolid)" SelectCommandType="Text">
              <SelectParameters>
                  <asp:CookieParameter CookieName="schoolmanager" Name="schoolid" Type="Int32" />
              </SelectParameters>
          </asp:SqlDataSource>

Thank You
shervinrv
Top achievements
Rank 1
 asked on 02 Nov 2014
1 answer
243 views
I am trying to solve this problem, either:
a) Disable all drag and drop across all parts of the file explorer
or
b) Enable drag and drop inside the grid view, list view, tree view etc

1) As part of my testing and playing around with the file explorer, I tried setting these

            FileExplorer1.FileList.ListView.Enabled = false;
            FileExplorer1.FileList.Grid.Enabled = false;

            FileExplorer1.ListView.Enabled = false;
            FileExplorer1.Grid.Enabled = false;

            FileExplorer1.FileList.ListView.ClientSettings.AllowItemsDragDrop = false;
            FileExplorer1.FileList.Grid.ClientSettings.AllowRowsDragDrop = false;

All of which made no observable change to the control.
These however, did work as expected:
           
            FileExplorer1.TreeView.EnableDragAndDrop = false;
            FileExplorer1.TreeView.Enabled = false;

Why did the other lines have no effect?

2) To disable dragging and dropping for the file explorer, I'm told I can use this:

        explorer.get_fileList().get_grid().add_rowDragStarted(RowDragStarted);

        function RowDragStarted(grid, args) {
            args.set_cancel(true);
        }

Is there an easier way to disable or enable drag/dropping without going through every view for an entire File Explorer?

3) When inside the grid or thumbnail view, dragging a file over another folder does not trigger the move file event, but dragging over to the tree view does. How can I trigger this for the grid/thumbnail event?

Thanks,
Sean
Vessy
Telerik team
 answered on 31 Oct 2014
1 answer
191 views
We are facing an issue upon using filter on a GridHyperLinkColumn when this is present inside DetailTables. We are using 2014.2.724.40 versions and are experiencing this issue across all browsers viz. IE9, Chrome, Firefox.

Is there any other attribute that needs to be set in the code snippet below?

<telerik:RadGrid ID="grdView" runat="server" AutoGenerateColumns="false" EnableAJAXLoadingTemplate="True"
        AllowSorting="true" GroupingEnabled="false"
AllowPaging="true" PageSize="10" OnNeedDataSource="grdView_NeedDataSource" OnDetailTableDataBind="grdView_DetailTableDataBind"   OnItemCommand="grdView_ItemCommand">
        <ExportSettings ExportOnlyData="true" OpenInNewWindow="true" HideStructureColumns="true" FileName="ExportExcel"
            IgnorePaging="true">
        </ExportSettings>
        <MasterTableView ShowHeader="False" CommandItemDisplay="Top" PageSize="10" DataKeyNames="GroupName" AllowFilteringByColumn="true">
<CommandItemSettings ShowRefreshButton="false" RefreshText="" ShowAddNewRecordButton="true" AddNewRecordText="AddNew"   AddNewRecordImageUrl="../Images/RadGrid/Duplicate.gif"
                ShowExportToExcelButton="true" ExportToExcelText="Export to Excel" ExportToExcelImageUrl="../Images/RadGrid/ExportToExcel.gif"
                ShowExportToCsvButton="true" ExportToCsvText="Collapse All" ExportToCsvImageUrl="../Images/RadGrid/CollapseAll.gif"
                ShowExportToPdfButton="true" ExportToPdfText="Expand All" ExportToPdfImageUrl="../Images/RadGrid/ExpandAll.gif" />
            <Columns>
                <telerik:GridTemplateColumn UniqueName="GroupName" DataField="GroupName">
                    <ItemTemplate>
                        <asp:Label runat="server" ID="lblGroupName" Text='<%#Bind("GroupName") %>'>
                        </asp:Label>
                        <asp:Label runat="server" ForeColor="Blue" ID="lblDisplayName" Text='<%#Bind("DisplayName") %>'>
                        </asp:Label>
                    </ItemTemplate>
                    <HeaderStyle Wrap="true" />
                    <ItemStyle Width="100%" />
                </telerik:GridTemplateColumn>
            </Columns>
            <DetailTables>
                <telerik:GridTableView AllowSorting="True" Width="100%" runat="server" ClientDataKeyNames="Id" AllowFilteringByColumn="true">
                    <ParentTableRelation>
                        <telerik:GridRelationFields />
                    </ParentTableRelation>
                    <Columns>
<telerik:GridHyperLinkColumn  DataTextField="RequestNo" Target="_blank" DataNavigateUrlFormatString="~/FormController.aspx? Id={0}" DataType="System.String"
                            DataNavigateUrlFields="Id" HeaderText="Request#" UniqueName="RequestNo"
                            SortExpression="RequestNo" ShowFilterIcon="false" FilterControlWidth="100%"
                            CurrentFilterFunction="Contains" AutoPostBackOnFilter="true">
                            <HeaderStyle Width="100px" />
                            <ItemStyle HorizontalAlign="Left" CssClass="hyperlink" />
                        </telerik:GridHyperLinkColumn>
                    </Columns>
                    <PagerStyle AlwaysVisible="true" Mode="NextPrevAndNumeric" Wrap="false" Position="Bottom" PageButtonCount="5" />
                    <ExpandCollapseColumn ButtonType="ImageButton" UniqueName="ExpandColumn" Visible="False">
                        <HeaderStyle Width="19px" />
                    </ExpandCollapseColumn>
                </telerik:GridTableView>
            </DetailTables>
            <ExpandCollapseColumn ButtonType="ImageButton" UniqueName="ExpandColumn">
                <HeaderStyle Width="19px" />
            </ExpandCollapseColumn>
            <NoRecordsTemplate>
                There is no document to display
            </NoRecordsTemplate>
            <ExpandCollapseColumn ButtonType="ImageButton" UniqueName="ExpandColumn">
                <HeaderStyle Width="19px" />
            </ExpandCollapseColumn>
        </MasterTableView>
        <GroupingSettings CaseSensitive="false" />
        <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true" PageButtonCount="10" />
        <ClientSettings>
            <Selecting AllowRowSelect="true" />
            <ClientEvents OnRowDblClick="RowDblClick"/>
        </ClientSettings>
    </telerik:RadGrid>
Pavlina
Telerik team
 answered on 31 Oct 2014
2 answers
97 views
Hi
Why using the GridTemplateColumn in grid Blast?(Template , Header, EditCommand Dont Show! )!!!!
So,How to Save in RadGrid ComboCheck And Insert Multi Select Item in LinqDataSource ,And return Select Multi Inserted in ComboCheck?

Ashkan
Top achievements
Rank 1
 answered on 31 Oct 2014
3 answers
235 views
Ran into a problem with the RadComboBox (rcb) today.
 
Was setting the selected value of the rcb in the page_load function and it was working fine when the rcb looked like this.
 
                        <telerik:RadComboBox ID="rcbAssignedTo" DataSourceID="Assignees" AppendDataBoundItems="true"
                            DataTextField="Name" DataValueField="ID" runat="server" Filter="Contains">
                        </telerik:RadComboBox>
 
Page_Load Code: rcbAssignedTo.SelectedValue = Request.QueryString("ato")
 
However when adding an empty item and AppendDataBoundItems set to true to the list like so
 
                        <telerik:RadComboBox ID="rcbAssignedTo" DataSourceID="Assignees" AppendDataBoundItems="true"
                            DataTextField="Name" DataValueField="ID" runat="server" Filter="Contains">
                            <Items>
                                <telerik:RadComboBoxItem Value="" />
                            </Items>
                        </telerik:RadComboBox>
 
The Page_Load code did not work and the rcb was empty. Which is strange because at some point the rcb was populated as it was filled when opening it on the page. However simply databinding the rcb before setting the selectedvalue fixes the problem.
 
New Page_Load Code:             rcbAssignedTo.DataBind()
                                               rcbAssignedTo.SelectedValue = Request.QueryString("ato")

I was just wondering if this is expected behaviour. I have seen several threads talking about LoadOnDemand being set to true will cause the rcb to populate once clicked, however it is set to false in this scenario so I don't see why the rcb would not be populated during page_load.
Boyan Dimitrov
Telerik team
 answered on 31 Oct 2014
1 answer
141 views
Hi,
I am using radClientDataSource to bind the RadGrid , The client side pagination and page size works fine.like below link.

http://demos.telerik.com/aspnet-ajax/grid/examples/data-binding/client-side/client-data-source-binding/defaultcs.aspx?product=clientdatasource

Problem is : when page size changes from  5 to 10 , the template column (having checkbox in it) is not showing for another 5 rows...first 5 rows i am able to see checkbox control but not for another 5 rows in grid.

Please help me.

Below is the code for ref:

<div>
      <telerik:RadClientDataSource ID="RadClientDataSource1" runat="server">
        <DataSource>
            <WebServiceDataSourceSettings >
                <Select Url="http://localhost:1100/Invoice/InvoiceService.svc/InvoiceLucen" DataType="JSON" />
            </WebServiceDataSourceSettings>
        </DataSource>
        <Schema>
            <Model>
                <telerik:ClientDataSourceModelField FieldName="SiteName" DataType="String" />
                  <telerik:ClientDataSourceModelField FieldName="AccountNo" DataType="String" />
                  <telerik:ClientDataSourceModelField FieldName="VendorName" DataType="String" />
                  <telerik:ClientDataSourceModelField FieldName="CommodityName" DataType="String" />
                  <telerik:ClientDataSourceModelField FieldName="ServiceMonth" DataType="Date" />
              </Model>
        </Schema>
    </telerik:RadClientDataSource>
    <telerik:RadGrid runat="server" ID="RadGrid1" ClientDataSourceID="RadClientDataSource1"
        Width="306px" Skin="DV" AllowPaging ="true" EnableEmbeddedSkins="false" PageSize ="5"  >
        <MasterTableView>
            <Columns>
                 <telerik:GridTemplateColumn UniqueName="CheckBox">
                                        <HeaderTemplate>
                                            <div style="float:left; width:43px;">
                                            <asp:CheckBox ID="ChkHeaderSelect" runat="server" onClick="CheckGrdAllCheckBox(this)" CssClass="queecheckbox" />
                                            </div> 
                                        </HeaderTemplate>
                                        <ItemTemplate>
                                            <asp:CheckBox ID="ChkSelect" runat="server" onClick="UncheckheaderCheckBox(this)" />
                                        </ItemTemplate>
                                    </telerik:GridTemplateColumn>
                <telerik:GridBoundColumn DataField="SiteName" HeaderText="Site Name" UniqueName="column">
                </telerik:GridBoundColumn>  
                <telerik:GridBoundColumn DataField="AccountNo" HeaderText="AccountNo" UniqueName="column1">
                </telerik:GridBoundColumn>   
                 <telerik:GridBoundColumn DataField="VendorName" HeaderText="Vendor Name" UniqueName="column2">
                </telerik:GridBoundColumn> 
                 <telerik:GridBoundColumn DataField="CommodityName" HeaderText="Service" UniqueName="column3">
                </telerik:GridBoundColumn> 
                 <telerik:GridBoundColumn DataField="ServiceMonth" HeaderText="ServiceMonth" UniqueName="column4">
                </telerik:GridBoundColumn>            
            </Columns>
        </MasterTableView>
    </telerik:RadGrid>
    </div>



Viktor Tachev
Telerik team
 answered on 31 Oct 2014
1 answer
97 views
Hello All,

I'm not sure how to explain this so here goes.  I have a RadMenu with two menu items.  Each menu item simply shows one grid and hides the other.  The grids themselves are AJAXED and work fine.  But when I try to add the two grids as Updated Controls beneath the RadMenu in AJAX I get this error:

"0x800a138f - Microsoft JScript runtime error: Unable to get value of the property 'PRM_MissingPanel': object is null or undefined"

Here is my jax code:

<telerik:RadAjaxManagerProxy ID="ajaxmp" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="MsgGrid">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="MsgGrid" LoadingPanelID="ralp1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="ExpGrid">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="ExpGrid" LoadingPanelID="ralp1" />
</UpdatedControls>
</telerik:AjaxSetting>

<!--This triggers the error -->
<telerik:AjaxSetting AjaxControlID="rmWl">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rmWl" LoadingPanelID="ralp1" />
<telerik:AjaxUpdatedControl ControlID="MsgGrid" LoadingPanelID="ralp1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>

<!-- Here is the radmenu -->
<div style="text-align: center; margin-top: 5px; margin-bottom: 5px">
<telerik:RadMenu runat="server" ID="rmWl" Flow="Horizontal" CssClass="MyRadMenu" RenderMode="Classic" OnItemClick="rmMenu_ItemClick">
<Items>
<telerik:RadMenuItem Text="Setup" PostBack="false">
<Items>
<telerik:RadMenuItem Text="Messages and Self Serve" Value="M" />
<telerik:RadMenuItem Text="Expenses" Value="E" />
</Items>
</telerik:RadMenuItem>
<telerik:RadMenuItem Text="Reports" PostBack="false">
<Items>
<telerik:RadMenuItem Text="Run Report" Value="R" />
<telerik:RadMenuItem Text="Run Batch" Value="B" />
</Items>
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>
</div>

For what it's worth, both grids are in a pageview, the menu is not.

What am I doing wrong here?

Thanks!
Boyan Dimitrov
Telerik team
 answered on 31 Oct 2014
1 answer
150 views
Hello!

I'd like some help on two issues that I'm running into while using "EditMode=Batch" on a RadGrid that's bound to an object data source. The Grid is simple with just 3 columns and 4 hidden columns. In those 3 visible columns, only the 3rd column is the editable column. The first two columns are last_update (date) and who (updated).

For inserts, I'd like that to be a static label values with last_update = today's date and who will be the currently logged in use who is in a Session Variable. 
For updates, I was trying to display those two labels with whatever the values that were retrieved and while while inserting the actual values, I wanted to override the values of last_update with the recent date/time and whoever the new user that's editing the record for "who" column. 

This simple task of displaying this using  <ClientEvents OnBatchEditOpening="SetLabels" /> javascript was absolutely tedious task and I am not sure whether these two columns can be a Bound Column or does it have to be a template column with Label controls inside for both edit and insert? 

I've provided some code snippets here.

NOTE: This page is called inside a RadTab strip control which is part of another page with Master Page that has the radscript manager and window manager etc as well. I'm not sure whether for this reason, we encounter another issue with enabling the first three lines of javascript below. Because whenever those lines are uncommented, the "Batch Edit" mode automatically becomes "Form Edit" mode and the javascript doesn't fire.

Any help is appreciated.

Thank you!

<!DOCTYPE html>
 <html>
 <head id="Head1" runat="server">
     <title>GDBID - Invoice Notes</title>
 
        <script type="text/javascript">
             function SetLabels(sender, args) {
                 //var RowID = args.get_id(); //get Row
                 //var masterTable = document.getElementById("RadGrid1").get_masterTableView(); //get Grid
                 //var ControlX = masterTable.get_dataItems()[RowID].findElement('lblLastUpdateInsert').id; //get Control ID
                  
 
                 if (args.get_columnUniqueName() == "last_update") {
                     var cardStatusCell = sender.get_masterTableView()._getCellByColumnUniqueNameFromTableRowElement(args.get_row(), "last_update");
                     //alert(sender.get_batchEditingManager().getCellValue(cardStatusCell));
                     //sender.get_batchEditingManager().changeCellValue(cardStatusCell, "10/28/2014");
                     var txtBox = document.getElementById("RadGrid1_RadGrid1_ctl00_last_update_TB_last_update");
                     if (txtBox != null) { txtBox.value = "Hello World"; txtBox.disabled = true; }
 }
 </script>
 </head>
 
 
 
 
 <body>
     <form id="form1" runat="server">
         <telerik:RadScriptManager runat="server" ID="RadScriptManager1" EnablePartialRendering="true" EnablePageMethods="true"
                 LoadScriptsBeforeUI="true" AsyncPostBackTimeout="600" EnableScriptCombine="false" ScriptMode="Release">
             <Groups>
                 <telerik:ScriptReferenceGroup>
        <Scripts>
                         <asp:ScriptReference Path="~/Scripts/jquery-1.4.1.js" />
                         <asp:ScriptReference Path="~/Scripts/json2.js" />
                        <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
                         <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
                         <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
                         <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryPlugins.js" />
                </Scripts>
                 </telerik:ScriptReferenceGroup>
             </Groups>
         </telerik:RadScriptManager>
         <telerik:RadAjaxPanel runat="server" ID="RadAjaxPanel1">
             <asp:Table ID="tblInvoiceNotes" runat="server" CssClass="">
                 <asp:TableRow>
                     <asp:TableCell>
                         <telerik:RadGrid ID="RadGrid1" GridLines="None" runat="server" PageSize="10" Skin="Telerik"
                             AllowAutomaticDeletes="True" AllowAutomaticInserts="True" AllowAutomaticUpdates="True"
                             AllowPaging="True" AutoGenerateColumns="False" Width="750px" DataSourceID="objDataSourceIN"
                             OnBatchEditCommand="RadGrid1_BatchEditCommand" OnUpdateCommand="RadGrid1_UpdateCommand"
                             OnInsertCommand="RadGrid1_InsertCommand" OnDeleteCommand="RadGrid1_DeleteCommand">
                             <ValidationSettings EnableModelValidation="true" EnableValidation="true" CommandsToValidate="Update,InitInsert,Insert" />
                             <MasterTableView CommandItemDisplay="Top" DataKeyNames="InvNum,InvDbId,InvNotesNum" AutoGenerateColumns="False"
                                 DataSourceID="objDataSourceIN" HorizontalAlign="NotSet" EditMode="Batch">
                                 <BatchEditingSettings EditType="Cell" OpenEditingEvent="Click" />
 <%--                                <SortExpressions><telerik:GridSortExpression FieldName="last_update" SortOrder="Descending" /></SortExpressions>--%>
                                 <Columns>
                                     <%--<telerik:GridTemplateColumn HeaderText="Date" UniqueName="last_update" HeaderStyle-Width="150px" DataField="last_update">
                                         <ItemTemplate><%# Eval("last_update") %></ItemTemplate>
                                         <EditItemTemplate>
                                             <asp:Label runat="server" ID="lblLastUpdateEdit" Text='<%#Eval("last_update")%>' Visible="true"></asp:Label>
                                         </EditItemTemplate>
                                         <InsertItemTemplate>
                                             <asp:Label runat="server" ID="lblLastUpdateInsert" Text="<%= DateTime.Now.ToShortDateString() %>" Visible="true"></asp:Label>
                                         </InsertItemTemplate>
                                     </telerik:GridTemplateColumn>
                                     <telerik:GridTemplateColumn HeaderText="Who" UniqueName="who" HeaderStyle-Width="200px" DataField="who">
                                         <ItemTemplate><%# Eval("who") %></ItemTemplate>
                                         <EditItemTemplate>
                                             <asp:Label runat="server" ID="lblWhoEdit" Text='<%#Eval("who")%>'></asp:Label>
                                         </EditItemTemplate>
                                         <InsertItemTemplate>
                                              <asp:Label runat="server" ID="lblWhoInsert" Text="" Visible="true"></asp:Label>
                                         </InsertItemTemplate>
                                     </telerik:GridTemplateColumn>--%>
                                     <telerik:GridBoundColumn DataField="last_update" HeaderStyle-Width="150px" HeaderText="Date"
                                         SortExpression="last_update" UniqueName="last_update"></telerik:GridBoundColumn>
                                     <telerik:GridBoundColumn DataField="who" HeaderStyle-Width="200px" HeaderText="Who"
                                         SortExpression="who" UniqueName="who"></telerik:GridBoundColumn>
                                     <telerik:GridBoundColumn DataField="Notes" HeaderStyle-Width="410px" HeaderText="Notes" SortExpression="Notes" UniqueName="Notes">
                                         <ColumnValidationSettings EnableRequiredFieldValidation="true">
                                             <RequiredFieldValidator ForeColor="Red" Text="*This field is required" Display="Dynamic">
                                             </RequiredFieldValidator>
                                         </ColumnValidationSettings>
                                     </telerik:GridBoundColumn>
 
                                     <telerik:GridBoundColumn DataField="InvNum" DataType="System.Int32" HeaderText="InvNum" UniqueName="InvNum" Display="false">
                                     </telerik:GridBoundColumn>
                                     <telerik:GridBoundColumn DataField="InvDbId" DataType="System.Int32" HeaderText="InvDbId" UniqueName="InvDbId" Display="false">
                                     </telerik:GridBoundColumn>
                                     <telerik:GridBoundColumn DataField="InvNotesNum" DataType="System.Int32" HeaderText="InvNotesNum" UniqueName="InvNotesNum" Display="false">
                                     </telerik:GridBoundColumn>
                                     <telerik:GridBoundColumn DataField="AllowEdit" DataType="System.String" HeaderText="AllowEdit" UniqueName="AllowEdit" Display="false">
                                     </telerik:GridBoundColumn>
 
                                     <telerik:GridButtonColumn ConfirmText="Delete this Note?" ConfirmDialogType="RadWindow"
                                         ConfirmTitle="Delete" HeaderText="Delete" HeaderStyle-Width="50px" ButtonType="ImageButton"
                                         CommandName="Delete" Text="Delete" UniqueName="DeleteColumn" ImageUrl="Images\GridRowDelete.gif">
                                     </telerik:GridButtonColumn>
                                 </Columns>
                             </MasterTableView>
                             <ClientSettings AllowKeyboardNavigation="true">
                                 <ClientEvents OnBatchEditOpening="SetLabels" />
                             </ClientSettings>
                         </telerik:RadGrid>
                         <asp:Label ID="SavedChangesList" runat="server" Text="" ForeColor="Red" Font-Names="Calibri"></asp:Label>
                     </asp:TableCell>
                 </asp:TableRow>
             </asp:Table>
         </telerik:RadAjaxPanel>
 
          <asp:ObjectDataSource ID="objDataSourceIN" runat="server" TypeName="Notes"
                 SelectMethod="GetData" InsertMethod="Insert" UpdateMethod="Update" DeleteMethod="Delete" 
                 EnablePaging="false" EnableCaching="true">
                 <SelectParameters>
                     <asp:SessionParameter Name="user" SessionField="UserName" Type="String" />
                     <asp:SessionParameter Name="location" SessionField="Location" Type="String" />
                     <asp:QueryStringParameter Name="searchinvnuminvdbid" QueryStringField="InvNumInvDbId" Type="String" />
                     <asp:Parameter Name="searchdetailnum" Type="String" DefaultValue="" />
                 </SelectParameters>
                 <InsertParameters>
                     <asp:SessionParameter Name="user" SessionField="UserName" Type="String" />
                     <asp:SessionParameter Name="location" SessionField="Location" Type="String" />
                     <asp:QueryStringParameter Name="searchinvnuminvdbid" QueryStringField="InvNumInvDbId" Type="String" />
                 </InsertParameters>
                 <UpdateParameters>
                     <asp:SessionParameter Name="user" SessionField="UserName" Type="String" />
                     <asp:SessionParameter Name="location" SessionField="Location" Type="String" />
                 </UpdateParameters>
                 <DeleteParameters>
                     <asp:SessionParameter Name="user" SessionField="UserName" Type="String" />
                     <asp:SessionParameter Name="location" SessionField="Location" Type="String" />
                 </DeleteParameters>
             </asp:ObjectDataSource>
 </form>
 </body>
 </html>

Maria Ilieva
Telerik team
 answered on 31 Oct 2014
1 answer
87 views
I'm having trouble with the radGrids when upgrading our application from 2010.1.519.35 to the latest aspnet-ajax UI build. The grids show the correct number of rows and the columns that are links display the data correctly, however the data in the other columns are blank. The column headers are there, just no values. I'm not seeing anything in the demos that's different when defining grids. Any ideas what this might be?
Pavlina
Telerik team
 answered on 31 Oct 2014
3 answers
649 views
Hi All,

I am using radwindow.

When i open the radwindow it gives 4 option as 'Pin on' 'Refresh','Minimize','Maximize','Close'

I want to disable the 'Pin On' ,'Minimize','Maximize' option of radwindow.

Thanks
Marin Bratanov
Telerik team
 answered on 31 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?