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).
Related
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.
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
Does anybody knows, if there is an (free) IFRAME like ASP.NET server control ? It shoud behave like a container control, which adjust itself the width and height dependend on the browser resolution respectively the width/height of its parent control.
Background: I want to show/run a web-application inside a web-application.
Perhaps you should have a look at UFrame.
http://www.codeproject.com/KB/aspnet/uframe.aspx
Maybe the RadWindow by Telerik will suite you. You can open up 'Windows' on your page.
It has an extensive client API, so you can control the dimensions anyway you want.
http://demos.telerik.com/aspnet-ajax/window/examples/behaviors/defaultcs.aspx
I use it to open up an edit page(.aspx) that will load/save data and then close itself.
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
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.
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!)