i want to add item template ( edit & delete) in grid
if if press edit button the edit panel appear to edit the selected row
thanks
Is it possible to have a Horizontal scroll bar under the grid header as well as at the bottom of the grid?
I have attached a screenshot of my grid.
The two columns on the left are frozen.
Ideally I would like the scrollbar to only appear for the columns that are not frozen
Greetings, we're dynamically generating the columns and GridColumnGroups of a RadGrid in codebehind. At the point where we're adding a new column group to the MasterTableView of the RadGrid, we're establishing a specified GridColumnGroup HeaderText and Name (as a token). Then in the RadGrid ItemCreated event handler, we're detecting that the GridHeaderItem is being created...and then iterating over the TableCells in the GridHeaderItem to find the cell that starts with that token. . .and finally inserting a RadComboBox in the controls collection of that TableCell.
This worked flawlessly until the last Telerik update. Now all that is seen is the GridHeaderItem HeaderText/Name, instead of the RadComboBox. Any assistance would be greatly appreciated. Thanks!
I have a radButton and in the OnClick method in code behind I am using it to update a bunch of SQL rows.
When a user clicks the button I need to be able to display a pop-up message asking to Confirm Yes/No and if the user clicks No, the OnClick method with the SQL update is no longer fired, only if the user clicks Yes it should fire. Basically if no then stop the postback.
How can this be done?
Hello!
I was following the instructions in this old thread to make the whole header cell of a RADgrid clickable for sorting:
http://www.telerik.com/forums/make-entire-grid-heading-clickable-sortable
However I came across a problem: When I implemented the solution provided by Levi in the thread, while the functionality would work fine, the sort arrow button would always break into a new line like so, which is unnecessary and ugly (see attached picture). What I would like to know, is there a way to make the whole header cell clickable for sorting, but have the arrow button in the same line as the text?
Thanks for the Help,
Gábor
Hi,
I've visited this Demo
It looks fine, but I get confused by a little typo in the script. For example select a text in the editor and apply "redText" class. The console prints that
OnClientCommandExecuted is executed twice, actually the second one is OnClientCommandExecuting.
Can you fix that little typo in the scripts.js in the demo?
Regards,
M.Yankov
I have a Hierarchical grid with GridTemplateColumn containing a RadComboBox whose datasource is set to the source below. I need to be able to pass parameters to the Selecting StoredProcedure. The parameters will change each row. I would like them to come from the datacontainer or datakeynames, both of which contain the values. How do I configure the SelectParameters to achieve this?
<asp:SqlDataSource ID="sqlProduct" runat="server" ConnectionString="<%$ ConnectionStrings:XRMConnectionString %>"
SelectCommand="spDailyBalancing_ProductVolume_Select" SelectCommandType="StoredProcedure" OnSelecting="sqlProduct_Selecting">
<SelectParameters>
<asp:ControlParameter Name="UtilityId" ControlID="cboUtility" DefaultValue="0" PropertyName="SelectedValue" />
<asp:ControlParameter ControlID="grdList" PropertyName="DataItemContainer" Name="ReceiptPointId"></asp:ControlParameter>
<asp:ControlParameter ControlID="grdList" PropertyName="DataItemContainer" Name="BaseloadDate"></asp:ControlParameter>
</SelectParameters>
</asp:SqlDataSource>
hello
I am trying to a combo box stays fixed.
but when I'm resizing window, the combo box moved horizontally.
(you can see my situation in this url when resizing window. -> http://demos.telerik.com/aspnet-ajax/combobox/examples/overview/defaultcs.aspx)
how can I fix the combo box regardless of window?
thanks in advance.