CodeCharge Studio
search Register Login  

Visual Web Reporting

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> CodeCharge Studio -> PHP

 ARTTISTER, THE AUTOCOMPLETE

Print topic Send  topic

Author Message
Francisco3945

Posts: 28
Posted: 01/10/2017, 4:33 AM

GOOD MORNING.
WHEN I APPLY THE STYLE OF THE ARTTISTER, THE AUTOCOMPLETE IS TRANSPARENT. WHAT TO DO? CAN SOMEONE HELP ME?
View profile  Send private message
Leszek

Posts: 1
Posted: 01/27/2017, 1:02 PM

Francisco3945
Pass in figure of code example after side customer or server with what question state for you problem.
Because you can always use generally accessible library: jQuery UI
And to write np. something like this:

<link rel="stylesheet" type="text/css" href="css/cjquery-ui-x.y.z.custom.css"> //add
<head>
<script src="js/ui/jquery-ui-x.y.z.custom.min.js" type="text/javascript"></script> //add
<script type="text/javascript">
$(document).ready(function() {
$( "#businessID" ).autocomplete({

source: function( request, response ) {
$.ajax( {
url: "services/business.php",
type: "GET",
dataType: "json",
data: {id: $("#businessID").val(), code: $("#businessCode").val()},

success: function(data) {

response(data);
}
});
},
minLength: 1,

select: function( event, ui ) {
$("#businessID").val(ui.item.ID);
$("#businessCode").val(ui.item.code);
$("#businessName").val(ui.item.name);


}
} ).data( "ui-autocomplete" )._renderItem = function( ul, item ) {
return $( "<li>" )
.append( "<a>" + item.name + "</a>" )
.appendTo( ul );
};

</head>
View profile  Send private message
Francisco3945

Posts: 28
Posted: 02/03/2017, 5:28 AM

Ok. Fucionou
View profile  Send private message

Add new topic Subscribe to topic   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

MS Access to Web

Convert MS Access to Web.
Join thousands of Web developers who build Web applications with minimal coding.

CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.