asp.net datagrid - asp.net

I want a asp.net datagrid with client side selection and dockable in pages and custom rightclick support.
cau anyone help me?

You will need to add javascript in case to make the table interactive with user actions
i prefer to use jQuery plugins to able you to do that. just create css classes and assign them in the datagrid columns then use jQuery to add the right click support and dockable rows.

If you have the budget Telerik RadGrid can do what you want and more. (You will also need RadDock for docking - they all are part of RadControls.)

Related

asp.net formview inside gridview row

I need a gridview such that when I click on a row to edit it, the data shows in a formview within that row. The user can then make updates within the formview. I am not able to find a suitable example that can do something like this. Can somebody please point me to an appropriate example that does this.
Note that I am using ASP.NET.
Thank you.
Here is an example from Kendo , You can download and use their tools for free with limited support.
Kendo Inline Editing Grid for ASP.Net

ASP.NET drag and drop between 2 listboxes

I have two listboxes on my webpage each containing values of a database.
I want to drag one item from listbox1 to listbox2, and then the program should save the new values of listbox2 in the database.
I have no idea how to do that... any help is welcome!
How should I start? I'd like to do it using jQuery...
maybe with using the jQuery UI Droppable plugin?
Has anybody a decent tutorial is how to do this?
Thanks in advance!
You could use Telerik's controls for ASP.NET MVC.
They have a treeview control with built-in support for drag and drop. If you want a flat list, don't introduce any children for the treeview. A demo can be found here:
http://demos.telerik.com/aspnet-mvc/treeview/draganddrop
They use jQuery behind the scenes.
If you want to create it yourself, please check out the following video by Chris Pels:
http://msdn.microsoft.com/en-us/scriptjunkie/ff698290
He explains how to build drag & drop functionality using the jQuery and jQueryUI libraries. This should get you started.

Is it possible to have dropdownmenu in place of dropdownlist in asp.net? whenever user moves mouse over that control it should display items in it

i have dropdownlists in my asp.net web site, now i want to switch them into something like menu and its items should look like menu items, at mouseover event items in that control should be displayed, is it possible to achieve? how?
It is very well possible using javascript/jquery and setting the css to give it the placing and affects you feel like. You will many such examples googling it out....one such is: http://www.queness.com/post/1047/easy-to-style-jquery-drop-down-menu-tutorial
If you like to convert an existin dropDownList to a menou like I know the the Linkselect jQuery plug-in but also I know a similar from Yahoo User Interface Library
jQuery or other library is strongly suggested for a complex conversion like that, at least the examples I know use a library.

Drop down List Filter with ASPX , AJAX controls,or JQuery?

I am looking for a filtering mechanism, as the user types in the drop down box I want to filter the list to the list items that match what the user is typing. Is there any premade control for this or does anyone know the best way to achieve this feature?
Thanks
Well, that's the simple solution. The Ajax Control Toolkit AutoComplete Extender comes in handy if you wish to accomplish this. You may also have to implement a small Service.
Check it out and you will tell us.
The Ajax Control Toolkit has an auto complete extender (http://www.asp.net/ajaxlibrary/act_AutoComplete.ashx).
JQuery has an auto complete feature in the UI core (http://jqueryui.com/demos/autocomplete/).
Others built into third party tools.
HTH.

Draggable Columns in ASP.NET GridView

Is there any open source that extends ASP.NET GridView, which allows Column order to be changed after it's rendered, raises a server side event when a Column is Dragged & Dopped ? I should be able to do this myself. I am wondering If there's any already.
Also, am just curious How long would it take for you to get this feature implemented.Just to know where I stand.
The GridView in .NET 3.0+ supports this feature, are you tied to an earlier release?
Component Art's grid has this functionality, but it s not open source
try jquery based flexigrid

Resources