Dual list drag drop control [closed] - asp.net

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Does anyone know of a good .Net2.0+ compatible dual listbox control that either offers dragging and dropping between lists, or simple buttons to move items between lists and also sort the items in a particulr list. This is for a web based app and I would prefer some nice javascript to make this one speedy.

I decided to write my own drag and drop list control for this one using JQuery and JQuery UI. You can try out a sample here: demo. The right side sort list will scroll down if the left list is too long thus making it easier to drag and drop. I still have more testing and a few bug fixes on this one, but it seems to be working pretty well.

Perhaps this answers your question?
From that post the infinity links to meadmiracle for a jQuery implementation and a demo. I personally don't like the horizontal layout of the buttons though although I'm sure that could be fixed pretty easily.
Also I've found this jQuery multi selection control interesting over on the UX Stack-Exchange.

Related

which is the best tool to show data from database table and apply update and delete on it [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
i have Xamarin.forms project which i am doing all the actions on Pcl i did my wcf rest client on pcl but i am showing them on grid. every thing is going like a charm but when debugging and showing results on the grid i am trying to select an item it doesnot allow to select , please lead me which is the best tool to show my datatable , i am thinking of listview and tableview, i am super new to xamarin
I'm sorry for the poor english
It depends at each case. If you need to show a collection of data within you want to interact, maybe a ListView is a good option.
Take a look in this article, this may clearify some things.
The best way to link your models to a view in this case is to use an ObservableCollection as the ItemSource of ListView. Thus, each selection at list items will provides the correspondent instance of YourType in this list.

Data grid written in pure JavaScript [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 months ago.
Improve this question
Is there any Data grid similar to ui-grid ( https://github.com/angular-ui/ui-grid ) written in jquery or pure JavaScript?
I need one with this set of functionality:
sort
search
horizontal and vertical scroll
grouping
inline editing
lazy load
column resizing
pinning
pagination
selection
https://jsgrids.statico.io/ is a list of JavaScript grid libraries that lets you filter. Using that site and given your requirements, the following libraries meet your specifications:
ag-Grid
Kendo UI Grid
FancyGrid
ParamQuery
I have used https://limegrid.co, vanilla javascript - has some themes looks a bit like excel.

Looking for a filtered dropdown list for ASP.NET [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have some DropDownList controls where the list is very large, so I would like to have a means for the user to filter the list, either based on other fields, e.g. region, or on the first letters typed in a textbox. How can I achieve this in ASP.NET? Is the an open source control out there that will help me?
Don't think in terms of a filtered control - think in terms of filtering the data.
Consider using SqlDataSource or one of the other data source controls as the source for your dropdown. You can then use other controls for filtering.
I use the JQueryUI autocomplete widget along with an ajax call to a local web service. It works quite well.
http://jqueryui.com/demos/autocomplete/
How about the Cascading Drop Down, or the List Search Extender within the Ajax Control Toolkit
http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/CascadingDropDown/CascadingDropDown.aspx
http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/ListSearch/ListSearch.aspx
Have a look at some client script combo boxes like the one's in the answer for this question

Open Source Alternative to ASP.NET Commercial Uber-Grids [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
The company I work for uses an ASP.NET grid component from a commercial vendor, but won't upgrade the buggy old version we have to a newer version because of cost. Are there open-source alternatives to these Uber-Grids that we could take advantage of?
I'm specifically looking for hierarchical drill-down capabilities. I know there are some Javascript library plugins (stuff for jquery UI, etc) that could be used, but I would prefer a server-side control given the current coding conventions at my employer (server-side controls whenever possible, javascript when nothing else will work :-P )
Grid Wrapper Control using ExtJS http://www.codeplex.com/ExtJsExtenderControl
Check out the DEMO page for the grouping feature, not sure how many levels you can go in though.
Try this opensource project that extends ASP.NET GridView : http://johnsobrepena.blogspot.com/2010/01/coolgridview-new-release-resizable.html
Fixed column header, footer and
pager
Scrollable content
User-resizeable column widths (new!)
Maintains scroll position and column
widths after a postback or callback
(new!)

ASP.NET Tab Controls [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm currently attempting to create a tabbed interface in a web application, and based on my search, there aren't any 'built in' tab controls in ASP.NET. There are some in the ASP.NET AJAX downloadable toolkit, as well as a wealth of 'pay for use' third party Tab Controls.
My question is: What Tab control have you used for ASP.NET applications, and why do you use it?
You can use MultiView/Views and your own navigation to get tabs in ASP.NET.
I've used the AJAX TabControl in the past and I like it. It's pretty straight forward. It's easy enough to get to the active tab and its content.
I have used the Rad TabStrip control by Telerik and it is one of the best to work with in my opinion.
We use multiviews most of the time, or, in some cases, we build our own tab controls out of a combination of link buttons and overlapping panels and swap their visibilities based on what link button has been pressed (this may seem primative, but it works well).

Resources