If you have ever used SQL reporting services, there are some dropdown lists that pop down with a checkbox list in it. It allows a user to select multi items very nicely. Does anyone know a free User control or an example of this implemented. Ok, so I know I can do this with some elbow grease and html, was just trying to see if there was already something out there. I’m using ASP.NET C#.
Thanks,
Joe
Check this out.
http://www.metabuilders.com/Tools/CheckedListBox.aspx
http://forums.asp.net/t/1040242.aspx
Ok, posted here to soon. I use infragistics and found a possibe solution.
Thanks!
http://forums.infragistics.com/forums/t/3962.aspx
Related
In an web application using MVC4, c# and Razor, there is a cool searchbox functionality that I need to implement.
It has 3 stages:
type 3 characters and search for result
select result from autocomplete list
present result as a funny removable object
Here are images:
I know I can implement steps 1 and 2 by using jquery autocomplete:
http://jqueryui.com/autocomplete/#remote
However, I have no idea on how to do step 3.
The web application is in my possession, but since the code is not commented nor is it properly refactored, I have no idea on how to replicate this functionality, nor do I know where to look for it in the code.
Can someone help me?
After checking on ChrFin's suggestion I made a search on my own and found select2:
http://plugins.jquery.com/select2/
The project is currently using this, so I am going to keep it and give it a whirl.
In the meantime, ChrFin's suggestion should also be mentioned:
http://demos.telerik.com/kendo-ui/multiselect/serverfiltering
Thanks for the help!
When someone starts typing in the search-textbox, there must popup a ''dropbox'' below the textbox with the found items. Like Google.
I need this for an ASP.NET (aspx) site, can anyone suggest me something like this?
I really don't know where to begin with this.
Thanks.
jQuery Autocomplete: http://jqueryui.com/autocomplete/
You'll need to know how to set up/work with a web service, but after that it's pretty darned simple.
I would like to include into my project a lookup control. Example of this control here :
But I'm a simple student, and so I'm very poor :)
So do you know a free control like this for my mvc3 project ? Thanks in advance !
Google! Many sites embeds external search engines.
If you're looking to add a search engine to your web site, there are three things you need to thing about:
The index, which holds the search results. Lucene, Solr and Sphinx are examples of this.
The crawler, which gathers the results and puts them into the index
The ui to get the results back from the index.
The control you linked to seems to provide all three. For a free replacement, maybe have a look at something like http://www.searchblox.com/
One option is the jQuery UI "Autocomplete" plugin:
http://jqueryui.com/demos/autocomplete/
This doesn't integrate with MVC out of the box; you'd need to write a server side method to provide the content for the completion drop down.
I have googled around for this but cannot find an answer. Does anyone know if there is any support for selecting multiple rows at once (by clicking shift/control as opposed to using tick boxes)?
I use RadControls for ASP.NET AJAX, but I imagine it is similar to MVC -- is there not a property in your RadGrid tag called "AllowMultiRowSelection"?
I think this will help you or others that come accross this question: http://www.telerik.com/community/forums/aspnet-mvc/grid/grid-row-selector.aspx#1163538
It is for an older version, but should still be good! It is not the same as in RadControls in ASP.NET AJAX in MVC it is not supported out of the box.
I am trying to add a rich text editor in my web page where users can write reviews and format what they have written...something similar to the editor in which we write our posts on this site...
can anyone point me to the right direction regarding this...any tutorial that would help me build such a component...
Also i want a free product....(Forgot to mention earlier...)
Something in the likes of TinyMCE or FCKeditor, perhaps.
They're quite complete, and customisable.
The editor used on Stack Overflow is the WMD Editor.
The current version used on the site has been updated by Jeff Attwood and other site users and you can read about it here and get a copy of the code for your own site.
I think you'd be better off using (and perhaps modifying) an existing component rather than writing your own from scratch.
I've been using the Telerik r.a.d Editor, and been very happy with it.
after much research here is what i did...
i needed a control that was free and easy to use..all the editors that i went through came with a licence so i decided to make my own control!!!!
well..i couldnt do that on my own so i used the help of a few sites....
javascript Rich Text Editors
http://aspalliance.com/1092_Rich_Text_Editor_Part_I
http://ws.aspalliance.com/1092_Rich_Text_Editor_Part_II and a few others too...
so the best option for me was to build my own control so that i could customize it according to my needs....
http://freetextbox.com/
here is yet another one: NicEdit