Click here to Skip to main content
15,894,017 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
any one please help its important from i seach in googel last three days
Posted

Combogrid, like autocomplete, when added to an input field, enables users to quickly find and select from a pre-populated list of values as they type, but in a tabular and paginated manner.
Combogrid provides keyboard navigation support for selecting an item.

As the user types, it displays the list of possible results dynamically inside a paginated grid interface.

Refer: jQuery ComboGrid Plugin[^]
Improved Auto-Complete For Input Fields With jQuery: Combogrid[^]
 
Share this answer
 
Comments
Dheeraj Kumar Pentela 11-Jul-12 8:17am    
how to dovelo in asp.net
Dheeraj Kumar Pentela 11-Jul-12 8:17am    
how to develop in asp
Prasad_Kulkarni 11-Jul-12 8:40am    
Use the script in your project

<script>
$(document).ready(function(){
$( "#project" ).combogrid({
url: '/datasource-url',
colModel: [{'columnName':'value','width':'value','label':'value'}, ...],
select: function( event, ui ) {
$( "#project" ).val( ui.item.name );
return false;
}
});
});
</script>
<input id="project"/>
Dheeraj Kumar Pentela 11-Jul-12 8:43am    
can you explain url page
Dheeraj Kumar Pentela 11-Jul-12 8:46am    
url page in asp
Hello
I am Register in This Site.
I am Working for asp.net with c#
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900